Showing results 1 to 26 of 26
Search took 0.01 seconds.
Posts Made By: darklordsatan
Forum: Java Jul 8th, 2005
Replies: 3
Views: 3,686
Posted By darklordsatan
Re: JAVA program help (Student/Grades)

Could you post the sources of the class where you instanciate Student and call the methods?
Forum: PHP Jul 8th, 2005
Replies: 3
Views: 2,249
Posted By darklordsatan
Re: PHP-MySQL Conn Problem in Win XP

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...
Forum: Java Jul 1st, 2005
Replies: 5
Views: 2,363
Posted By darklordsatan
Re: Help: need feedback on my Java assignment about thread sleep. It's already coded.

Since those were meant to be 2 separate Threads, I think the idea of 2 subclasses was the best approach... so dont worry about the external files, I know they might seems "anthiestetic", but its was...
Forum: Java Jul 1st, 2005
Replies: 2
Views: 1,133
Posted By darklordsatan
Re: Please help

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...
Forum: MySQL Jun 30th, 2005
Replies: 2
Views: 2,118
Posted By darklordsatan
Re: Single cell query!

The error is here

mysql_query($q,$connect);


Try chaging the query to this

$q="Select authorid from authors where AuthorName='$author'";

Probably its because of the missing '' or simply, you´re...
Forum: Java Jun 30th, 2005
Replies: 5
Views: 2,363
Posted By darklordsatan
Re: Help: need feedback on my Java assignment about thread sleep. It's already coded.

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...
Forum: C++ Jun 30th, 2005
Replies: 3
Views: 2,829
Posted By darklordsatan
Re: Pointer to function as an argument

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...
Forum: C++ Jun 29th, 2005
Replies: 5
Views: 6,688
Posted By darklordsatan
Re: Difference between C#.NET and C++.NET

C++ is a programming language
C# is another 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
Forum: PHP Jun 28th, 2005
Replies: 7
Views: 4,503
Posted By darklordsatan
Solution Re: question about connecting odbc to sql through php script

Well, user authentication through windows is no a good idea. I dont know if through IIS server you can get account information from a windows domain, but, my guess is that like with anything else,...
Forum: PHP Jun 28th, 2005
Replies: 3
Views: 2,398
Posted By darklordsatan
Re: image help

Then you need to create an script in your own server, and with the use of GD, you can generate an image on the fly, probably the default thing here would be the nameplate, and the "artists name"...
Forum: MySQL Jun 28th, 2005
Replies: 1
Views: 2,783
Posted By darklordsatan
Re: create user copy priveleges

I dont know how to do it with commands, all I know is that using Mysql Administrator (http://www.mysql.com/products/administrator/) (a win32 app) you can do it (its called "clone user")

cheers
Forum: MySQL Jun 28th, 2005
Replies: 1
Views: 3,036
Posted By darklordsatan
Re: Accessing Online (remote) MySQL DB to modify it

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...
Forum: PHP Jun 28th, 2005
Replies: 3
Views: 2,398
Posted By darklordsatan
Re: image help

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...
Forum: RSS, Web Services and SOAP Jun 28th, 2005
Replies: 1
Views: 2,915
Posted By darklordsatan
Re: What exactly is soap?

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...
Forum: PHP Jun 28th, 2005
Replies: 7
Views: 4,503
Posted By darklordsatan
Re: question about connecting odbc to sql through php script

Ok, so let me get this straight since I dont get what you mean, sorry

You (or your boss, whatever) wanna be able to create a user account, so that this new user can log on into the database and get...
Forum: Java Jun 24th, 2005
Replies: 2
Views: 6,892
Posted By darklordsatan
Re: Getting windows authentication

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...
Forum: PHP Jun 24th, 2005
Replies: 2
Views: 1,271
Posted By darklordsatan
Re: help with javascript and forms

Taken from W3Schools (http://www.w3schools.com/tags/tag_input.asp)



Basically, the value field is only needed in 2 cases:
1. You wanna put a "default" value for a textfield
2. You are going to...
Forum: PHP Jun 24th, 2005
Replies: 7
Views: 4,503
Posted By darklordsatan
Re: question about connecting odbc to sql through php script

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
Forum: C Jun 24th, 2005
Replies: 4
Views: 2,469
Posted By darklordsatan
Re: Help with FindExecutable()

Uppppssss, my bad, I forgot HINSTANCE is a long, not an int...


int rValue=(int)FindExecutable(argv[1], NULL, rgvalue);

...

if(rValue==(int)SE_ERR_OOM)
printf("System out of...
Forum: C Jun 23rd, 2005
Replies: 4
Views: 2,469
Posted By darklordsatan
Solution Re: Help with FindExecutable()

First of all, the function has 3 return values:

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


So, you could...
Forum: Java Jun 19th, 2005
Replies: 4
Views: 7,316
Posted By darklordsatan
Re: Portable Java

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...
Forum: PHP Jun 19th, 2005
Replies: 2
Views: 2,441
Posted By darklordsatan
Re: How to test PHP code in offline in Linux + Apache 2

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...
Forum: Posting Games Jun 15th, 2005
Replies: 7,557
Views: 457,526
Posted By darklordsatan
Re: Word Association Game

monk -> loneliness

PD: In my last post I meant "chimpanzee" but I ended up with a 'c' and ate an 'e', hehe
Forum: PHP Jun 14th, 2005
Replies: 8
Views: 7,005
Posted By darklordsatan
Re: redirect doesn't redirect without refresh

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...
Forum: C Jun 14th, 2005
Replies: 2
Views: 1,665
Posted By darklordsatan
Re: win32

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...
Forum: Posting Games Jun 14th, 2005
Replies: 7,557
Views: 457,526
Posted By darklordsatan
Re: Word Association Game

bush -> chimpance
Showing results 1 to 26 of 26

 
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 6:30 pm.
Newsletter Archive - Sitemap - Privacy Statement - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC