754 Posted Topics

Member Avatar for Black Knight

I think you need to look at the Observer class. I'm not entirely sure how to use it, but it sounds like thats what you need.

Member Avatar for Black Knight
0
169
Member Avatar for dsgnews

well if it works on localhost, then the code is fine. There's probably a problem with the server you're trying to connect to. What error do you get?

Member Avatar for DanceInstructor
0
115
Member Avatar for hbmarar
Member Avatar for Atomica

Visit [url="http://dbspot.com"]http://dbspot.com[/url] and email the guy that owns it. (Jimmy) The server is mainly for a few of us using DBP, but if you explain to him that you need a server with mysql support temporarily for a school project, he may set up an account for you.

Member Avatar for Phaelax
0
132
Member Avatar for corewizard

I'm not sure what this "contribute" thing is you're talking about, but cscgal mentioned a syntax highlighter. Here's one I've came across recently that I found very easy to use, and its open source. Geshi - [url="http://qbnz.com/highlighter/"]http://qbnz.com/highlighter/[/url]

Member Avatar for Phaelax
0
143
Member Avatar for costasgr43

We got some good game modelers over at these forums. [url="http://forum.thegamecreators.com/?m=forum"]http://forum.thegamecreators.com/?m=forum[/url] Those are the official forums of darkbasic, and we get quite a few young coders that request project help for their latest mmorpg. And so most often ppl asking for help get laughed at because they have nothing to …

Member Avatar for Phaelax
0
240
Member Avatar for buck_nakie

$count[0]=$count[0]+$newcount; $newcount isn't a number, its an sql result object and therefore you cannot add objects like that together. I'm not entirely sure what you're trying to do. Are you're trying to keep track of how many times a column is updated?

Member Avatar for Phaelax
0
86
Member Avatar for curiousdan
Member Avatar for ultimate_fusion

You've defined "mine" twice. char[] mine JButton mine which is it? [code] int count = 10 JButton[] guiButtons = JButton[count]; for(int i=0; i<count;i++) { guiButtons[i] = new JButton(); } [/code]

Member Avatar for server_crash
0
135
Member Avatar for paradox814

You may find this useful in creating your own. [url="http://www.evolt.org/article/PHP_Text_Marker_An_alternative/18/33857"]http://www.evolt.org/article/PHP_Text_Marker_An_alternative/18/33857[/url]

Member Avatar for paradox814
0
103
Member Avatar for vegaseat

I guess the modern QB would either be DarkBasic or BlitzBasic, both geared towards game development. Here's a brief overview of DarkBasic Professional [url="http://darkbasicpro.thegamecreators.com/?f=features"]http://darkbasicpro.thegamecreators.com/?f=features[/url] If I remember correctly, it's not an interpreted language, however DB classic (early version) was. If you have other questions about it, post on the forums …

Member Avatar for Puckdropper
0
154
Member Avatar for NSCelica

People too often assume that all programmers are familiar with these oddly named puzzles. Would you explain what the "non-attacking queens" problem is?

Member Avatar for NSCelica
0
113
Member Avatar for ivyharry
Member Avatar for jimbob8472

//initialize array with 100 empty Booking objects private Booking[] bookingList = new Booking[100]; I'd probably use a Vector or ArrayList to maintain the list of current bookings. When a new guest asks for a room, loop through your Hotel class to find an available room. When you find one, mark …

Member Avatar for Phaelax
0
95
Member Avatar for Dark_Omen

[url="http://id3.org/"]http://id3.org/[/url] Probably the best place to start. It explains the format of the different TAG versions, and has code implementing the stuff in serveral languages.

Member Avatar for Dark_Omen
0
195
Member Avatar for Decency

If you try to reset just the primary key, you'll run the risk of having repeated numbers unless the table is truncated and wiped out completely.

Member Avatar for Decency
0
110
Member Avatar for stupidenator

I started with BlueJ in school, and still use BlueJ because I'm used to it and it only does the very basics of an editor, which is all I want. Syntax highlighting in a notepad like environment and simple 1 click compile. Also has a debugger and some other little …

Member Avatar for freesoft_2000
0
295
Member Avatar for pacoo2454

Some integrated graphic cards do share ram with the system. Though I wouldn't know if its possible to do it with an agp card.

Member Avatar for Coconut Monkey
0
127
Member Avatar for hunter
Member Avatar for Phaelax

Working on an HP pavilion 4445. (celeron 333). Friend was having weird visual glitches when he plays freecell. Figured just a graphics problem or Windows98 needed updated. Did all that, still problems. Switched cables on the cdrom because that wasn't working. Reformated to install 98se instead, but the cdrom isn't …

Member Avatar for DMR
0
253
Member Avatar for chound

2.4GHz with only 128mb ram? My god man, what were you thinking?! Today, 1gb is probably standard, or close to it.

Member Avatar for belama
0
185
Member Avatar for LondonCSC
Member Avatar for Cyanide Bomber

When you start having that many problems, I think it's time to just reformat and start over.

Member Avatar for caperjack
0
154
Member Avatar for monkeyphobic14

Either a loose connection or your monitor is going out. I had a tv just do that this week on me.

Member Avatar for hollystyles
0
171
Member Avatar for ingeborgdot@yah

And unless the software you use was written with 64-bit architecture in mind, an Athlon64 probably won't offer you a real advantage. Curious, do you know if the naturally speaking software would take advantage of dual processors?

Member Avatar for Phaelax
0
82
Member Avatar for nizzy1115
Member Avatar for Phaelax
0
112
Member Avatar for Decency
Member Avatar for jengels
Member Avatar for ranxston
Member Avatar for tom_oxygen

It could be either actually. The fact you say it only happens while playing games leads me to believe is the card. If you have another monitor, use that for a day to see. You could try updating your video drivers. Could also be a loose connection somewhere, possibly a …

Member Avatar for Thong_Ispector
0
185
Member Avatar for haria_kishore

customer_id and account_number seem a little redundant to me. SELECT sum(amount) FROM transaction_table WHERE acc_num = "2323"; I think you might need a GROUP BY clause in there as well. Though that won't give you the answer you need, maybe it'll help. I only basic SQL myself. I haven't quite …

Member Avatar for haria_kishore
0
109
Member Avatar for Dounia

I think you're making things too hard for yourself. select std_name, gpa from student_p where total_credits = max(totale_credits); student_p has the "total_credits" field in it, so you don't even need to calculate the credit total yourself by searching through course_p.(which you'd need to use enrollment_p as well) Hopefully the code …

Member Avatar for Phaelax
0
60
Member Avatar for endusto

I believe there's a php command to get a user's IP address. Store that in a variable and compare it to all the values in the database where you have blocked IP's stored. Something like this in PHP I think would do it. [php] $isBlocked = false; $result = mysql_db_query("$database", …

Member Avatar for Phaelax
0
86
Member Avatar for c_s_m_o_s

Thought I don't quite understand why you're doing this: [code] [color=#0000ff]for (int i = 0; i < 3; i++) { variableValue = Double.parseDouble(next);[/color] [color=red] jim [i]= variableValue;[/color] } [/code] but that code is inside the [b]while[/b] loop which goes through each token, or in this case number. So for every …

Member Avatar for c_s_m_o_s
0
154
Member Avatar for Ghost

[QUOTE=C++]I was wondering if anybody had any cool projects ideas. Please post them. Thanx, C++[/QUOTE] Here's an idea that should keep you busy for quite awhile. Make a visual that reacts to music, like Sonique or iTunes visuals. I'm making an iTunes clone myself, and just about got the structure …

Member Avatar for Phaelax
0
81
Member Avatar for gschoser

A radio button has two parts basically. A different button for each option you want, and a group to know which set of radio buttons work together. The ButtonGroup takes care of making sure only 1 button is selected. About half way down the page it mentions radio buttons. [url="http://java.sun.com/docs/books/tutorial/uiswing/components/button.html"]http://java.sun.com/docs/books/tutorial/uiswing/components/button.html[/url]

Member Avatar for Phaelax
0
152
Member Avatar for rorydelonge

ASPIENUM.VXD has to do with your cdrom (aspi stuff) no idea what SA64CHK.DLL is though. I suggest you reinstall your cdrom drivers. By any chance, had you recently installed any cd burning software?

Member Avatar for Phaelax
0
127
Member Avatar for james_hartt

If you overclock the bus, i suppose it may be possible. Never heard of that though, usually its the processor that goes. I was never so scared in my life when I started to smell the silicon melting on my dual athlon system. I tore that power cable from the …

Member Avatar for Phaelax
0
132
Member Avatar for Morgoth
Member Avatar for Phaelax
0
108
Member Avatar for Phaelax

Running Win2kpro with mysql server 4.1. I installed the service "mysqld-max-nt.exe", but it won't run. It's set for automatic, but even if I try to activate it manually, it won't. I checked the event viewer and it shows only this: "[size=1]The mysql41 service terminated unexpectedly"[/size] [size=1][size=2]Could there be a problem …

0
77
Member Avatar for George2

it'll support .au, but i think javasound is needed for wavs. for mp3's, theres: MP3SPI, which needs javasound tritonus There's another good one that I've used, but I can't remember what it was called.

Member Avatar for George2
0
127
Member Avatar for jladika

just a guess, but i think perhaps something has gotten integrated into the browser. You can check to see what's been installed into the browser by searching through the registry.

Member Avatar for Phaelax
0
62
Member Avatar for kendallniall

File file = new File("c:\\"); Look up File class and go from there. Here's a hint, use a recursive method to check inside subfolders.

Member Avatar for Phaelax
0
139
Member Avatar for themetalmozart

If you just browse through the swing classes in the help file, most of them will have a link to one of Sun's tutorials on the class. Very useful.

Member Avatar for Phaelax
0
148
Member Avatar for rusti

that image would be a number. RND(x) would give a number bewtween 0 and X. INT isn't necessary. R = 100*RND(X) + 1 So why is a teacher with no QB knowledge teaching a class on it?

Member Avatar for rusti
0
165
Member Avatar for Redshift

Hmm, 1983? That's my birth date. I'm kinda old, kinda young. That was amusing, thx.

Member Avatar for moderate_rock48
0
578
Member Avatar for cdt1983

IE6 is just slow and likes taking its time. I stayed with IE5 for a long time because of this, but I was forced to upgrade to keep safe from security flaws.

Member Avatar for DMR
0
167
Member Avatar for MrScruff

You type in the filename and path from the console when you run th code. Isn't that what System.in is? I don't know I've never used it.

Member Avatar for jwenting
0
108
Member Avatar for bright2000
Member Avatar for Jackie001

The End.