199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for jamescumm

Hi, I am a technophobe in his last year of a business/computing degree. If someone gave me the db structure for my final year project interim report to be handed in tomorrow I will be forever grateful................ I am designing a website where people can search for spare car parts. …

Member Avatar for pclfw
0
140
Member Avatar for cali_dotcom

hi, i'm a newbie to php and i'm building a website right now. i giving the users the option to create and send news letters. i also want to give them the option of sending the newsletters at a later date i.e they can create the newsletters, choose a date …

Member Avatar for mschroeder
0
521
Member Avatar for pete08

Hi, I have picture box with some image int it. I want to draw a line on the image. But when code executes, line is there but image is gone. Here is the code: bitmap bmp=new bitmap(pb.width,pb.height); graphics g=new graphics.fromImage(bmp); pen p=new pen(color.black,5); g.drawLine(p,0,0,10,10); Line is there, but underlaying image …

Member Avatar for hieuuk
0
174
Member Avatar for mr.khurrams

i need a java script that should take pictures from a Folder and automatically play the slide show of these pictures when HTML page load......i need it urgently....plzzzzz help me

Member Avatar for bappaditya
0
233
Member Avatar for prashanth s j

Hi any one please tell me why the warning is generated when the address of pointer to a local variable is passed. [U]The following is the warning generated:[/U] Icore.c:228: warning: passing argument 3 of foo from incompatible pointer type [U]The function declaration is:[/U] int foo(void * , int , void**); …

Member Avatar for grumpier
0
145
Member Avatar for hm.ashruf

Hi All, I have an association table with 3 columns (primarykeyId, foreign key to Table1, foreign key to Table2). I am thinking to have a child table pointing to this association table. The association table will have additions and deletions for new associations. Now the new child table will also …

Member Avatar for pclfw
0
59
Member Avatar for kodingkarthik

Hi all, I am unable to write the code for EXIT button like displaying a message box for confirmation and if user clicks on OK then the application should be closed and if the user selects CANCEL then he should be in the same page.. I tried using Me.Close() but …

Member Avatar for kodingkarthik
0
3K
Member Avatar for kodingkarthik

Hi all, I am new to sql programming, How can we copy a database from a local system to server? Thanks in advance, karthik.

Member Avatar for pclfw
0
148
Member Avatar for Traicey

I am developing a website and am struggling to make sure that even if my web page is minimized a user can still see the entire content of the page without maximising the page, I believe thats achievable bcoz I have seen websites like that even this one, anyone knows …

Member Avatar for Traicey
0
89
Member Avatar for heimdhal

I've got an array of pointers to my class "Rule" Now I'm trying to access it from within a member function AddRule. But on the first line I keep getting "Memory Access Violation" Can anyone tell what's wrong? [code] class RuleSet { private: public: Rule *Rules[200]; int RuleNum; void AddRule(Rule); …

Member Avatar for heimdhal
0
105
Member Avatar for am_valentin

Hello, I am having a diploma project about building a LAN Monitor, in wich I need to capture the traffic from network card at low level layer. More like Data-Link layer. Can anyone help me with a suggestion of a function or a method to substract bit packets directly via …

Member Avatar for am_valentin
0
68
Member Avatar for cVz

Hey there, ok i finally get my list of directories from my server , but these look like this -x 10 test mail 4096 Dec 1 12:01 users -x 10 test mail 4096 Dec 1 12:01 admin etc etc... basically i only need "users", or in the second string "admin" …

Member Avatar for cVz
0
148
Member Avatar for Alishaikh

I have attached the file with the sorts. I have to show 2 sorts insertion, and selection sorts demonstration in bars. I should show the position of the bars after each run. How do i go on about doing that?

Member Avatar for javaAddict
0
136
Member Avatar for FTProtocol

I need need it to update my ListView before continueing [code] if (chars.Length > 0) { string log = string.Format("{0}:{1}", acc.Username, acc.Password); UpdateListView(); sWorking += log + "\r\n"; foreach (IJJIAccount.GunZCharacter gc in chars) { log = string.Format("\t{0} - Level {1}", gc.CharName, gc.Level); sWorking += log + "\r\n"; } } [/code] …

Member Avatar for LizR
0
149
Member Avatar for Luckymeera

Hello everyone, I've been learning python since the past few days. I have tried several ways but nothing seems to work!! All I want to do is, randomly generate some moving ovals after some regular or irregular interval of time. I have tried canvas.after but it didn’t worked. The ovals …

Member Avatar for Luckymeera
0
112
Member Avatar for Phil++

Hey, I want to create a new project in c++ that allows me to retrieve the files stored at college at home. What would be the best way to do this? Thank you :)

Member Avatar for ithelp
0
90
Member Avatar for thesaintbug

hi, I am new to Cold fusion... I have defined a session level variable in one page1.cfm as follows <cfset session.testing = "test"> and when I am trying to access it on another page page2.cfm (browser window is not closed meanwhile) it gives an error that "testing" is undefined at …

Member Avatar for thesaintbug
0
109
Member Avatar for arun_lisieux

Ques: The prime factors of 13195 are 5, 7, 13 and 29. What is the largest prime factor of the number 600851475143 ? I came up with the following code. This did compile in VC++ Express Edition without any errors/warnings. But i only get a blank output screen. Someone plz …

Member Avatar for arun_lisieux
0
229
Member Avatar for acoxia

Hello i just started learning about python and am beginning a hangman program. I'm trying to read the word from the document then output _ for each letter in it. so far it runs but outputs nothing I'm not sure if I'm formatting it incorrectly or am forgetting something any …

Member Avatar for ashutosa
0
171
Member Avatar for mr.white

Hello, I'm making a phone book application (ASP.NET, C#). I store general information of people such as name etc on one table called "people", and I've another table called "relatedInformation" which has 5 columns (ID, Name, Info, PersonID, Type). In this table I store all other information regarding people, because …

Member Avatar for Ramy Mahrous
0
136
Member Avatar for revenge2

hello there, well im back;) with a few more questions that i would like clarification with. I have completed up to data structures in python and my next topic is 'object oriented programming':| . Just wanted to clear up some things first:) [CODE]guess=int (input ('enter a number:')) [/CODE] Q1. in …

Member Avatar for mn_kthompson
0
363
Member Avatar for RenFromPenn

Okay, so I have a menu and a linked list, but I have three problems. First of, if you select option one and enter a name it keeps prompting you to enter another and another. It won't accept any other prompt to do anything else like, for instance, exit the …

Member Avatar for Murtan
0
148
Member Avatar for ddanbe

When I want an array of integers with 4 rows and 2 columns I do [B]int[,] array = new int[4, 2];[/B] and then use [B]array[0, 0]=123;[/B] to set the first element. So for the matrix input usercontrol I'm working on I thought I need something like : [B]TextBox[,] elements = …

Member Avatar for Ramy Mahrous
0
117
Member Avatar for caps_lock

So i've downloaded netbeans, and had a play around. But I'm thinking is Java the wrong language to design a duplicate file scanner. The program if not obvious should hopefully atleast identify any files that exist on a computer more than once (copies). Im also going to try and make …

Member Avatar for jbennet
0
259
Member Avatar for Emerald214

I have 2 tables: Match and Team. Match(matchID is primary key, team1, team2, ...) Team(TeamID is primary key, ...) I mean how to force team1 and team2 is different from each other. Ex: We won't want to see: Brazil vs Brazil ^^ Any help is appreciated...

Member Avatar for jbennet
0
62
Member Avatar for axn

python script reading config file and then zipping files after X days from directories. dir contains dynamic files. i have specified the extension and the "startswith" in the config. problem i have is it [B]zips up everything[/B]. (if i can get this work will add a delete too). i also …

Member Avatar for woooee
0
207
Member Avatar for tomtetlaw

how would i be able to make pictures capable of animating like the attached picture?

Member Avatar for John A
0
98
Member Avatar for ryan311
Member Avatar for selvaganapathy
0
89
Member Avatar for mrnutty

hi, I started learning openGl yesterday. I made a simple program that supposed to create a triangle and a square, but its not working properly, any help please? [code] #include<iostream> #include<Gl/glut.h> #include<cstdlib> using namespace std; void handleKeyPress(unsigned char key, int x, int y) { if(key == 26) exit(1); } int …

Member Avatar for mrnutty
0
118
Member Avatar for scousey2008

Hi all, I seem to be having a problem. I get the above error when trying my login script. [CODE]<?php $dbhost = "localhost"; $dbname = "userlogin"; $dbuser = "adminuser"; $dbpass = "xxxxxxx"; $dbtable = "users"; mysql_connect ( $dbhost, $dbuser, $dbpass, $dbtable)or die("Could not connect: ".mysql_error()); mysql_select_db($dbname) or die(mysql_error()); session_start(); $username …

Member Avatar for SOB224
0
216
Member Avatar for guitarscn

I have forms already made that takes the user's name and input box for their comment, but I cannot figure out how to make it so that when the user clicks on Submit button, it will display on the same page in a certain style that I want (justified left …

Member Avatar for guitarscn
0
179
Member Avatar for ~gamer4life~

Hey people! I'v just registered here today and i was wanting to know how to make a text based game "FREE" Is it possible? Can u all help me to start off and know the basics... Please help!

Member Avatar for mrnutty
0
80
Member Avatar for marciano

Hello. I've tested sending emails to popular webmails like gmail and hotmail successfully. The problem is with yahoo. All mails are delivered to SPAM folder. These are some of my class.phpmailer vars where the mails are sent from [code=php]var $From = "admin@domain.com"; var $FromName = "ME"; var $Mailer = "sendmail"; …

Member Avatar for marciano
0
119
Member Avatar for onetwothree

hello is there a way to stop a page refreshing in a browser? (wish i'd separated my sql from my displayed results and used a redirect, but i didn't and am just wondering if there is a quick way around preventing refreshing of a page, so as the sql doesn't …

Member Avatar for buddylee17
0
166
Member Avatar for ucza

I made some simple mistake (conversion?) in my program.. I will be gratefull if anyone has an idea what's wrong with it;) The problem is not with the algorithm itself so I am not explaining it - the problem is: why the condition placed in the code between // HERE …

Member Avatar for ucza
0
131
Member Avatar for Kostas Theof

Hello to everyone and Happy New Year. Is it possible to execute external files via event handlers?? I want from an HTML (including JavaScript) web page to execute external files via event handlers. What I actually want to do is to execute in the background some php files (and do …

Member Avatar for Kostas Theof
0
135
Member Avatar for cVz

Hello fellow super coder people i am rtying to list all the files in a certain directory (eg. "TestDir") in a combobox [CODE] try { m_ftp.Server = txtftpServerName.Text; m_ftp.Username = txtftpUserName.Text; m_ftp.Password = txtftpPassword.Text; m_ftp.Login(); string[] The_File = m_ftp.GetFileList("TestDir"); foreach (string FILE in The_File) { cboFindFile.Items.Add(FILE); Console.Write(FILE); } m_ftp.Close(); } …

Member Avatar for LizR
0
217
Member Avatar for dthree

hi folks, I'm writing a program for a punch press that displays the pattern to be punched. I have learned how to retrieve the data from a spreadsheet calculate the hole angles and draw them on my form [code] { Using g As Graphics = Me.CreateGraphics Dim pn As New …

Member Avatar for dthree
0
122
Member Avatar for clutchkiller

For the 2 parameters lpClassName and lpWindowName in FindWindow, what do i throw in there to hide all open windows? Is this possible? MSDN makes it sound like if both parameters are null, that will do the trick, but before i test it, i want to make sure that works …

Member Avatar for clutchkiller
0
206
Member Avatar for mn_kthompson

I've written some code that will download a web page and extract all the links from that page into a list. Then I want to make a second pass down the list and repeat the process for each on the links found on the first page. But for some reason, …

Member Avatar for Gribouillis
0
299
Member Avatar for rmlopes

Hello all, I am using VS2008 and I have a solution with 3 projects. One is the Loki library, another one is a library designed by me and the other is a small application that uses a part of my library. The Loki project is a static library. Mine is …

0
93
Member Avatar for Troy

[url="http://www.tgreer.com/class_http_php.html"][b][url="http://www.tgreer.com/class_http_php.html"]http://www.tgreer.com/class_http_php.html[/url][/b][/url] I've written what I think is a high-quality PHP class for screen-scraping external (or internal) web content. The class includes features to cache scraped content for any number of seconds. So for example, if you want to show stock market data on your site that you scrape from a …

Member Avatar for WebSnail
0
778
Member Avatar for jeffrey16

hi, i am new in this forum and i cannot find a free downloadable activeX button, i want to make my design beautiful, can anyone here pls help me where to find cool buttons for free. im using VB6..

Member Avatar for johnkeartson
0
230
Member Avatar for aznlover

K, well, I'm kind of screwed right now, I am supposed to make a game by using java, and this is all like minor stuff. The code so far, and I have little idea of what I'm doing. I want to make it so that when you click in a …

Member Avatar for puneetkay
0
227
Member Avatar for kiddo39

This code from Vegasseat worked when I made my own bitmap image to count red pixels. I now want to count green pixels so I changed the code. Again, when I make my own bitmap it will count the green pixels but why won't it count them in an image …

Member Avatar for kiddo39
0
343
Member Avatar for bigbadowl

Hi All I am using the code below to get ACL information from files on Windows (in this case Vista). I need to know wether or not a trustee is a group or a user but when I loop through each trustee they all say "TRUSTEE_IS_UNKNOWN". Am I getting something …

Member Avatar for marco93
0
228
Member Avatar for vinoth_python

Hi, I'm new to this forum. I need a python test script to open 100 client connections for a web server, say "www.example.com/test/test" without invoking browser. I am trying out this for load testing to create 100 virtual connections to a web server. I have tried with urllib.urlopen(). It fetches …

Member Avatar for mn_kthompson
0
89
Member Avatar for StarZ

This is a basic Mash program assignment I have to do but I have a few problems, and I don't know how to edit it. It is suppose to look like this: [url]http://i43.tinypic.com/inv0gj.jpg[/url] but mine look slightly different: (copy and paste the code to ur python to check if you …

Member Avatar for sneekula
0
595
Member Avatar for srs_grp

Hi!! I want to insert byte array in database schema as follows: table message { msgid number(5), messagevalue BLOB }; I have done this in following way But I am getting NULL pointer exception. //byte[] msgval .. contains byte values like 49 50 53 etc. Blob msg; msg.setBytes(1,msgval); // for …

Member Avatar for ~s.o.s~
0
129
Member Avatar for lisan28

Hello everyone! I was trying to follow along with this tutorial: [url]http://www.sitepoint.com/article/watermark-images-php/[/url] and everything worked fine until the end. Basically I'm trying to write a script that both resizes and watermarks images for a couple of websites I'm working on, so that I don't have to go through and do …

Member Avatar for lisan28
0
115

The End.