Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~60.3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Tags

20 Posted Topics

Member Avatar for samaru
Member Avatar for Java John needs

Could you post the sources of the class where you instanciate Student and call the methods?

Member Avatar for mikeNIkesT
0
549
Member Avatar for Juls

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

Member Avatar for Sp!ke
0
1K
Member Avatar for aparnesh

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 …

Member Avatar for aparnesh
0
141
Member Avatar for jime0726

[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

Member Avatar for jime0726
0
226
Member Avatar for sparkette

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 …

Member Avatar for sparkette
0
117
Member Avatar for hisrichness

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, …

Member Avatar for jwenting
0
130
Member Avatar for bennetjosem

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? …

Member Avatar for bennetjosem
0
177
Member Avatar for murschech

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; …

Member Avatar for Dave Sinkula
0
229
Member Avatar for DotNetUser

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

Member Avatar for darklordsatan
0
250
Member Avatar for forgotteneagle

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 …

Member Avatar for darklordsatan
0
148
Member Avatar for cpopham

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

Member Avatar for darklordsatan
0
138
Member Avatar for BooGiE_MaN

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 …

Member Avatar for darklordsatan
0
163
Member Avatar for PhoenixDown

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 …

Member Avatar for darklordsatan
0
125
Member Avatar for grajeshmsc

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 …

Member Avatar for grajeshmsc
0
336
Member Avatar for symoore22

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 …

Member Avatar for darklordsatan
0
148
Member Avatar for Mahen

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 …

Member Avatar for Mahen
0
555
Member Avatar for stupidenator

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. …

Member Avatar for server_crash
0
231
Member Avatar for thandermax

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 …

Member Avatar for darklordsatan
0
192
Member Avatar for jr_coder

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 …

Member Avatar for darklordsatan
0
165

The End.