No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
My main interest is to program videogames and expect to get into the the industry eventually.
I play the guitar, and I enjoy the sweet flavor of a unfiltered cigarette 24/7. Vodka is good too...
- Interests
- Videogame Programming
- PC Specs
- AMD Sempron 2800+ ATI Radeon 9200 128 Mb DDR 256 Mb Maxtor 40 Gb, Maxtor 80 Gb Plextor CD-RW 12x, LG-RW…
20 Posted Topics
Re: Could you post the sources of the class where you instanciate Student and call the methods? | |
Re: First of all, I might be drunk, but the header() functions redirects right away to the given location, so theres no need to call exit() and the include() below wont have any effect; you might wanna take that in account first | |
Re: This simply happens because of the way php is trying to connect to the mysql server... it has to do with the mysql module in php. Whats weird is that with the exact same configuration, you have it working on win98 (provided the mysql server version is THE SAME that … | |
Re: [QUOTE=jime0726]... but its giving him errors accessing this information...[/QUOTE] What kind of errors? And any more info on how hes trying to do it (maybe some tid bits of the php source) would be nice cheers | |
Re: Yep, they are necessary, basically, every time you make subclasses in Java, every one will have a separate file... For example, I made a JFontChooser identical to the one in windows, I get these files [code] JFontChooser$1.class JFontChooser$ButtonListener.class JFontChooser$ListListener.class JFontChooser.class [/code] As you can guess, I have 2 subclasses, one … | |
Re: Well, I really think its stupid if you *have to* do that program; there are more efficient ways to count the number of chars in a file, and better examples of using linked lists... First of all, you should know there is a Java class in the JDK called LinkedList, … | |
Re: The error is here [code] mysql_query($q,$connect); [/code] Try chaging the query to this [code] $q="Select authorid from authors where AuthorName='$author'"; [/code] Probably its because of the missing '' or simply, you´re not getting the POST variable authorname Try this [code] $author=$_POST["authorname"]; echo $author; [/code] Do you get what you expect? … | |
Re: Well, I have to tell you I suck at maths, so I dont get what you wanna do with the g(x,y) (mmm, I think I saw that in calculus 2 or 3 at collegue...) Anyway, is it something like this what you wanna accomplish? [code] #include <iostream> using namespace std; … | |
Re: C++ is a programming language C# is [U]another[/U] programming language Thus, C++ .Net is the replacement for VC++ 6.0 C# .NET is just a new platform, so It has nothing to do with VC++ 6.0 | |
Re: The question is, are you the webmaster of gaiaonline? If yes, what you wanna do is easier, if not, youll have to somehow make the script and put it into another server, then call it remotely from your signature. Creating images on the fly is accomplished through the GD library … | |
Re: I dont know how to do it with commands, all I know is that using [URL=http://www.mysql.com/products/administrator/]Mysql Administrator[/URL] (a win32 app) you can do it (its called "clone user") cheers | |
Re: Simple answer my friend, if you have a shell account, you could just log in and change stuff, but since you have a content management system (please, please tell me its not cPanel), then all you need to do is install in your webspace a web-based frontend for mysql. Try … | |
Re: Ok, two months later, but Im new so... OBviously you now have found the answer, but I explain it here for reference purposes SOAP is basically an XML based communication protocol used to send messages (transfer data) between a client and a server usually. The query is made by the … | |
Re: Im afraid my friend, you cant get the password, if you could, then thousands of "password recovery aka password stealing" apps in java would be floating around the internet... Windows password are stored in a file, cant recall the name, and they are encrypted, so you need 1. Read windows … | |
Re: Taken from [URL=http://www.w3schools.com/tags/tag_input.asp]W3Schools[/URL] [quote] For buttons, reset buttons and submit buttons: Defines the text on the button. For image buttons: Defines the symbolic result of the field passed to a script. For checkboxes and radio buttons: Defines the result of the input element when clicked. The result is sent to … | |
Re: First of all, the function has 3 return values: [code] SE_ERR_OOM - System out of memory (WinXP only IIRC) SE_ERR_FNF - File not Found SE_ERR_NOASSOC - The file type has no associated exe [/code] So, you could do something like this [code] int rValue=FindExecutable(argv[1], NULL, rgvalue); if(rValue==SE_ERR_OOM) printf("System out of … | |
Re: Theres an excellent open source app, called <a href="jsmooth.sf.net">JSmooth</a>. Basically, you create an exe outta your application, and you can bundle the JVM with it, and configure to use that bundled JVM. This way, you burn your application into a CD or a flash memory, and youre ready to go. … | |
Re: Theres no such thing as running php in "offline mode". All you do is changing some variables to the apache's conf file to be run in localhost... Basically, install apache on your machine, and then configure this directive ServerName 127.0.0.1 (And obviously, configure it to have support for php, google … | |
Re: I dont know what you mean by "overlay program". I assume because of the reply that you simply want to make a dos/bash shell like application, am I right? If then, I gotta tell you its complicated but not hard at all. You might need some experience working with some … |