- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
20 Posted Topics
Re: Agree with previous post. Basically: -Create an int array lengthed 5 that has the values from 0 to 4 -use for loop: [CODE] for(int a=0; 0<arrayName.length(); a++) { if(count==9) { count=0; System.out.println(""); } count++; System.out.print(arrayName[a]); } if(count==9) { count=0; System.out.println(""); } count++; System.out.print("0"); for(int a=4; 0=<a; a--) { if(count==9) { … | |
Re: I am also interested in the code =). Please do share it =)! Thank you in advance. | |
Hello guys, I need help to divert an application's traffic to a different IP (localhost for example). I heard that this can be added by making the application support sock5? maybe am wrong.. but I just need to divert an application's traffic to my local proxy server. Scheme: iExplorer -> … | |
Hello, I would like to create a p2p application; File sharing / chat / etc.. and I am looking for a proper API, tutorial and documentation. I've been googling here and there for the past 6 hours trying different API's but failing.... I stumbled upon JXTA / JNMP2P ... but … | |
Re: Show your code, and we'll help. There are ways to make it live after function call. one was is not to make it a local variable to that function call. Again show your code, and you'll get better replies. | |
Re: If you would like us to help you; as javaAddict said, use code tags. And have a clear question that you need help with exactly, your not expecting us to do your homework for you, are you? | |
Hello, I am having trouble converting my "MySQL" statement to a prepared statement. here is the part of the code that i need help with. How Do I make below statement a prepared statement and can actually read the result afterwards. this way everything works perfectly, except that its not … | |
Re: I have a hunch it is a read error. As cam875 said, we cannot help you with what you gave us. Please provide us with more information, and also post the Customers.txt file so we'd confirm that it is not a read error. | |
Re: Exception in thread "main" java.lang.NoClassDefFoundError: test2.class at gnu.java.lang.MainThread.run(libgcj.so.90) Caused by: java.lang.ClassNotFoundException:[COLOR="Red"] test2.class not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:./], [/COLOR]parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}} at java.net.URLClassLoader.findClass(libgcj.so.90) at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.90) at java.lang.ClassLoader.loadClass(libgcj.so.90) at java.lang.ClassLoader.loadClass(libgcj.so.90) at gnu.java.lang.MainThread.run(libgcj.so.90) I believe its simply a matter of configuration, its not finding the .class (which gets created when you compile the .java) it's … | |
Hello guys, first of all.. am gonna say that i googled and searched the forum alot.. nothing to be found.. So my question is.. 1- Where does my actual manual written code go in C# + GUI (WindowsFormsApplication not the console one.) Does it go in the Program.cs or Form.cs? … | |
Re: your post was very not helpful as to what you need. Too many variables left out. tell us about your project, tell us what you need to do and what exactly are you looking for. PLUS; What exactly is your question. | |
Re: I can honestly say, that I have never been unsure in my life. I read your post like twice, to find what the question is. What do you need help with exactly? and what are you facing a problem with? and if you show us the actual method of DisplayIntroMessage(); … | |
Re: Hello, I have no experience in maps loading/saving. But, what you can have a look at is the output and input stream. lets assume its a text file, or a any file of some sort. You could save it to a location in your hard disk or next to where … | |
Re: homework help? You need to show some kind of effort first. Post what you have so far of code. The idea of it is, you could use Arrays or to retype each letter with the correct statements. Show some code before we start helping and tag your code please. | |
Re: I am not sure why this is happening. But what you could try is. [CODE] if (rs.next()) { if (rs.getInt("RecordCount") > 0) { isMemberAlive = true; } }[/CODE] Change it to [CODE] boolean statement = rs.next(); if (statement) { if (rs.getInt("RecordCount") > 0) { isMemberAlive = true; } }[/CODE] a … | |
Re: What Vernon Said would work, but if you need your methods to return String from some reason; there is an alternative. As he also mentioned, you could also do... Instead of changing your methods, just keep your methods the same and instead of writing: [CODE] theTime.displayStandardTime(); theTime.displayMilitaryTime(); [/CODE] Change them … | |
Hello, I don't even if memlocs/offsets are the correct terms for such thing. but I'll try to explain as much as I can. What am trying to figure is; is there a possible way that I could read information off other applications running? For example, I want to make a … | |
Re: show us your code, so we can help =). If you don't want to share code, try reseting your auto-numbering before you add data again. | |
Re: I think all you need to do is rowNumber*2-3 then keep decreasing 2spaces for every row. i.e.: row 6 is the one on top, row 1 is the one in the buttom. the nth equation is: row 6.. row*2 - 3 = 9 spaces row 5.. row*2 - 3 = … | |
Re: Please put your code in between a code wrapper. so we can help you more and not struggle while we try to read your code. Thank you =)! |