754 Posted Topics
Re: 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. | |
Re: 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? | |
Re: I'd help, but I have no clue what you just said. | |
Re: 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. | |
Re: 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] | |
Re: 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 … | |
Re: $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? | |
Re: 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] | |
Re: 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] | |
Re: 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 … | |
Re: People too often assume that all programmers are familiar with these oddly named puzzles. Would you explain what the "non-attacking queens" problem is? | |
Re: Do the folders have web sharing turned on? | |
Re: //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 … | |
Re: [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. | |
Re: 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. | |
Re: 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 … | |
Re: 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. | |
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 … | |
Re: 2.4GHz with only 128mb ram? My god man, what were you thinking?! Today, 1gb is probably standard, or close to it. | |
Re: When you start having that many problems, I think it's time to just reformat and start over. | |
Re: Either a loose connection or your monitor is going out. I had a tv just do that this week on me. | |
![]() | Re: 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? |
Re: I've been interested with what Intel has on their minds with the dual core. | |
Re: make a new page and link to it | |
Re: Use StringTokenizer and String.equals() | |
Re: Got enough memory? Could also be a fragmented drive possibly. | |
Re: 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 … | |
Re: 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 … | |
Re: 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 … | |
Re: 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", … | |
Re: 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 … | |
Re: [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 … | |
Re: 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] | |
Re: 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? | |
Re: 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 … | |
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 … | |
Re: 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. | |
Re: 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. | |
Re: 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. | |
Re: 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. | |
Re: 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? | |
Re: Hmm, 1983? That's my birth date. I'm kinda old, kinda young. That was amusing, thx. | |
Re: 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. | |
Re: 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. | |
Re: didn't you post this on javaboutique as well? i posted an answer on there. | |
The End.