754 Posted Topics

Member Avatar for wavyrebellion

So are we suppose to run your code and figure out what you haven't finished yet or what? You told us what the goal of the code is. But what does it do when you run it? What specifically do you need help with? We're not going to do your …

Member Avatar for Phaelax
0
163
Member Avatar for Dani
Member Avatar for arielsandara.mije
0
438
Member Avatar for George2
Member Avatar for stultuske
0
982
Member Avatar for sri_sep29

It might return an error if the result of the SELECT contained no rows, but I could be wrong. The code looks ok, I'm not sure what the problem could be.

Member Avatar for Starfox275
0
1K
Member Avatar for Arizona Web

After reading that, I think I'm just a humble designer, though the programmer in me is disagreeing. Though at least now I know why I prefer work alone when building webpages.

Member Avatar for Smohil
0
1K
Member Avatar for bo0ga

It's not really a matter which is better, but which one will land you the better job. You'll probably make more money as a JSP developer(which is what I used to do) than PHP, as I see more professional companies using Java over PHP. Companies still have a problem using …

Member Avatar for Mehmaan
0
302
Member Avatar for Ricky116

There are already many classes out there that can read the ID3 tag information. But as far as I'm aware, AVI files do not have 'ID3' tags as MP3s have but probably another form of metadata. Here's where I started when I wrote a library years ago for ID3. [url]http://www.id3.org/Developer_Information[/url]

Member Avatar for Phaelax
0
125
Member Avatar for hemanthjava

See if you can find a site which lists the challenges from the google code jam. I've done a few from their "practice" arena when it was available in 2005. I think the 2006 is going to start soon.

Member Avatar for stultuske
0
161
Member Avatar for Joncamp

use the tree model's insertNodeInto(), it should fire the appropriate events for updating the view.

Member Avatar for rocknroll60
0
238
Member Avatar for f575gtc

For a celeron chip, 350w will do you just fine. 400+ is often used by ppl who have dual cpu setups.

Member Avatar for benmar
0
382
Member Avatar for vbmore

I'm half tempted to just provided a bubble sort and let him submit that to his teacher not knowing any better..

Member Avatar for peter_budo
-1
242
Member Avatar for Phaelax

Can't seem to figure this out. [CODE] string *array; void addNodes(string names[]) { array = names; //how many elements in the array??? } [/CODE]

Member Avatar for Diego.Corso
0
27K
Member Avatar for tjgolf

Links on the web can't control what application they launch with, your OS and browser determines that. Why would you want to browse the web from one browser and launch the links in another?

Member Avatar for zaworko
0
2K
Member Avatar for yo123
Member Avatar for imagecraze
0
784
Member Avatar for himerus

There's a simple tutorial on "pagination" (results on multiple pages) on phpfreaks.com Using LIMIT makes this thing easy I think. Though thats coming from a guy who hasn't tried it yet.

Member Avatar for Ezzaral
0
2K
Member Avatar for Phaelax

My friend has a Gateway FX laptop or something with Vista. The right speaker stopped working (i checked all the balance settings). I've searched around for how to change the output from stereo to mono, but they all say the same thing; set it to mono (laptop output) in the …

Member Avatar for rreighe
0
526
Member Avatar for sam1

For starters, start your own thread and don't hijack someone else's thread. And read a tutorial on Socket classes. Sam, are you developing a Server part as well or just a client?

Member Avatar for stultuske
0
462
Member Avatar for webmasts

pow takes doubles. Is it really so hard to search for the "Math" class in the API docs? [URL="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Math.html"]http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Math.html[/URL]

Member Avatar for Donkerster
-1
1K
Member Avatar for Phaelax

I thought "JTree. setRootVisible(false)" would hide the root yet display its children, but it doesn't. I've even tried to expand its children but nothing shows when I hide the root. Here's the code if you need to see it. [code=java] DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Root"); JTree projectTree = new JTree(rootNode); …

Member Avatar for villadsen
0
5K
Member Avatar for anthonyjpv
Member Avatar for anthonyjpv
0
140
Member Avatar for Progr4mmer
Member Avatar for Progr4mmer
0
140
Member Avatar for hassan7

You could do what my school did, make an ecommerce website. Frankly, I was appalled at the idea of this being my senior project (especially since I was already doing it for work), but the entire class voted on it. I personally opted for the mars rover simulation.

Member Avatar for Phaelax
0
76
Member Avatar for Progr4mmer

If you're already comfortable using Eclipse, stick with that as it's more often used professionally than Netbeans. I, however, use Netbeans at home because I find it easier to use.

Member Avatar for Progr4mmer
0
137
Member Avatar for tfgd18

Nobody is going to be able to help you because you made absolutely no sense. If English isn't your native language, then writing in your native tongue and using Google to translate might make it more coherent for us. Do you have any errors? What are they? Show us the …

Member Avatar for Phaelax
0
85
Member Avatar for Phaelax

I'm looking for a way to learn RPG as used on the AS400. Is there any software to emulate the machine on Windows or Mac? What tools would I use to program in RPG?

Member Avatar for Rashakil Fol
0
154
Member Avatar for Phaelax

I'm writing an inventory program for my uncle's warehouse, which has never been counted in 20 years. (yea it's taking me a week so far and still counting parts) I want the program to be serverless and just run on his laptop (which I'm still fixing also). I thought of …

Member Avatar for Ezzaral
0
104
Member Avatar for Phaelax

It's an old system of mine I haven't used in a few years. It worked fine when I stuck in the closet, but now it's being weird. Sometimes I could make it into Windows but then it'd crash; BSOD. So I threw it back into the closet for another 6 …

Member Avatar for jak0b
0
161
Member Avatar for sweety_sharma
Member Avatar for masijade
-2
176
Member Avatar for outbackandy

Is each data chunk given a certain amount of space to be written in and just filled in with blank spaces to pad a smaller value?

Member Avatar for masijade
0
172
Member Avatar for Viji

Try making your own thread saidus9, don't hijack another person's. Update to PHP5, unless you have very specific reasons for using PHP4. The following link will explain the issue: [URL="http://dev.mysql.com/doc/refman/5.0/en/old-client.html"]http://dev.mysql.com/doc/refman/5.0/en/old-client.html[/URL] @VioletSite, The error can't be related to his DB name or location because this is an authentication error. He has …

Member Avatar for kwesiaryee
0
701
Member Avatar for BT5150

You might have knocked the cpu loose. I'd open it back up and check every connection. Also, if that heat sink isn't sitting properly on the cpu, it could overheat very quickly.

Member Avatar for Problem Solwer
0
251
Member Avatar for judgemental

You can just override the paint method and call Graphics.drawImage(). This site discusses multiple methods for drawing images as backgrounds: [URL="http://stackoverflow.com/questions/299495/java-swing-how-to-add-an-image-to-a-jpanel"]http://stackoverflow.com/questions/299495/java-swing-how-to-add-an-image-to-a-jpanel[/URL]

Member Avatar for JamesCherrill
0
122
Member Avatar for rasputinj

[QUOTE]check out what i do, string tokenizer is used to break up a string by sub strings[/QUOTE] StringTokenizer has been deprecated for years now, you should use String.split()

Member Avatar for abcd1220
0
2K
Member Avatar for datta.saru@gmai
Member Avatar for yasuodancez
0
329
Member Avatar for castro1688

I'm currently working on my CIS, in my last year. I chose CIS because the people from the school I talked with said it involved the most programming courses, which is all I wanted to do. Of course, after I started and found out how little math I'm required to …

Member Avatar for Rashakil Fol
0
2K
Member Avatar for MonkeyCode

You'll get that error if it doesn't connect to the DB, has nothing to do with not finding the Driver. This is all I have to connect to my DB: Class.forName("com.mysql.jdbc.Driver").newInstance(); String url = "jdbc:mysql://"+host; connection = DriverManager.getConnection(url, user, password);

Member Avatar for peter_budo
0
850
Member Avatar for amrita111

depends on your project and which platform you're more comfortable using. Why did you post this in the Java forum?

Member Avatar for Phaelax
0
101
Member Avatar for arh

These are some of the most well-known tutorials for indy game developers who are just starting out with OGL. [URL]http://nehe.gamedev.net/default.asp[/URL] Aside from fundamentals strictly related to game design, I can't help you much more. I do all my game coding on Windows with DX. (although I really need to start …

Member Avatar for Nick Evan
0
253
Member Avatar for coolvision

[QUOTE]Please send the new form so only any one replay this quickly[/QUOTE] That makes no sense at all. Check out xamp: [URL]http://www.apachefriends.org/en/xampp-windows.html[/URL] It's really the easiest way to get PHP and mysql running together on your machine for you to play around with. If you have a little programming background, …

Member Avatar for ogollah
-3
244
Member Avatar for haribo83

SELECT * FROM details Or, if for some reason you have to specify 'otype': SELECT * FROM detail WHERE otype = '$listoptionA' OR otype = '$listoptionB'

Member Avatar for rajarajan2017
0
66
Member Avatar for idane
Member Avatar for ryy705

Unless you explicitly set CSS to control how the control is displayed, the browser renders it its own way by default. You can set the borders, padding, and background image of a text field just as you would any other web component. Here's a nice example: [url]http://ryanfait.com/resources/custom-checkboxes-and-radio-buttons/[/url]

Member Avatar for diafol
0
259
Member Avatar for nizuya
Member Avatar for SAMSEIED

Trust me, there's still plenty need for web designers. I've worked on a large ecommerce site and I've never seen a template that would have satisfied our needs. Not too mention keeping with the company color scheme and all the behind-the-scenes work it takes to make the layout functional. It …

Member Avatar for SAMSEIED
0
155
Member Avatar for justbboying

convert html to php: (pointless) <? echo "html file's code here"; ?> If all those different scripts could be converted to each other perfectly, then there wouldn't be so many different types.

Member Avatar for takachistar
0
412
Member Avatar for RucGwl

I don't really play with flash, but it sounds like that Shockwave file is trying to access data on another domain. The crossdomain.xml file can possibly take care of this, (uploaded into your root directory) which it doesn't appear you have one. Give these links a read, should help out. …

Member Avatar for rajarajan2017
0
170
Member Avatar for bsunkel

From Windows, usually hitting TAB will change focus between components. If you must use the arrow keys, you could add a KeyListener which changes the focus to the button components. I would probably make a new class and extend the JOptionPane

Member Avatar for viniciusmss
0
650
Member Avatar for wraph

it would be too slow with basic anyway. Its a combination of C, assembly/machine code.

Member Avatar for jwenting
0
635
Member Avatar for George2
Member Avatar for mayne
0
569
Member Avatar for Phaelax

I need to make my popup class observable and the main frame class observer. When the user clicks the ok button on the popup, I need the string from the popup's textfield returned to my main program. Main fram class. [CODE] import javax.swing.*; import java.util.*; import java.awt.*; import java.awt.event.*; public …

Member Avatar for masijade
0
471

The End.