- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 5
- Posts with Downvotes
- 3
- Downvoting Members
- 5
I am me.
- Interests
- PROGRAMMING!
- PC Specs
- 3.6 gh 1 gb RAM 250 gb HD CD-RW/DVD-RW Combo Drive Radeon 9800 graphics card
145 Posted Topics
| |
Hi Everone, How do I remotely access my computer - I want to be able to control the mouse and keyboard and view the screen in real time. I wanted to do this in Java, but the experts sent me here because Java is not platform dependent and C++ is. … | |
Re: stupidenator, PLEASE DO NOT SEND THE CODE! | |
Hi Everybody, I was wondering if there was a way to find the most common letter/number/special symbol in a string. Thanks!! Thanks again in advanced, C++ | |
Hi, i'm new 2 C#, so my question may seem stupid... but, what is the code to exit an application. I know in java it is: [CODE]System.exit(0);[/CODE] Thanx in advanced, C++ | |
Hi, Is it possible to create a Java compiler? Could you make a Notepad-like application, save the code as a .java file, compile it into a .class file, and run it? Basically, I want to combine Notepad and Command Prompt. I just need help on the compiling part (and listing … | |
Hi guys! I've been using PHP for fun for a while, and now I'm interested in playing with some scraping. I know regex is the way to go. So I'm trying to scrape a page of 4chan. I want to grab the images and the title of the thread of … ![]() | |
| |
When using C++, how do you find the REMAINDER of two numbers and store it in an integer. I think the answer is: [B]X % Y = Int Z;[/B] :idea: Please help. Thanks :lol: , C++ | |
Ahh I posted something similar in the PHP forum, but this location might be more applicable. Sorry for the double post! I need one user to be able to pay another user, and I get a % of the transaction. What's the best system to use? Thanks! | |
Re: i think static has to do w/ how its accessed | |
Hi Everyone! It's been a while since I've posted! Anyway, I'm building a website and I need one user to be able to pay another user, while a percentage of that money goes to me. Here's an example: Two Users: User A User B User A pays User B $100 … | |
Is it documented? Or have you heard anything? just curious... thanks :) | |
Hi, I'm running my server on localhost. I'm trying to make a forum database program in php, but I can't get mysql to work! whenever I try to add a table, it says there isn't any database. How do I add a database to localhost? Thanks in advanced for your … | |
Hi: I just wanted to see the capabilities of java. Can you please post your favorite project (that you've made). If you want, please also post the source code. Thanx, C++ | |
Hi, I'm trying to fully automate my website, and I'm trying to delete a line from a file that matches the line in a given String. For example, I have a txt file named toApprove.txt containing a list of names such as: [CODE] John Joe George Jake [/CODE] The file … | |
Hi Everybody, Is there a way to have a picture of the 3 or 4 sq. pixels you're mouse is hovering over appear in the bottom of the screen? Thanx. | |
Hi everybody: I want to make a java application, but I can't think of anything to make. Any ideas would be appreciated. Thanx, C++ | |
Hi, I'm trying to run my program in command prompt, but i get this error: [CODE] Exception in thread "main" java.lang.NoClassDefFoundError: Invaders [/CODE] Can anybody tell me what this error means? Thanx. | |
Hi Everybody, I was wondering how to make a java image editing application. Basically, I really want to make a program that allows the user to drag and stretch images. I don't want the code. I'm only in search of a decent tutorial. Thanks in advanced for your help. | |
Hi, I was wondering if there was a way to compare two images for similarity (i.e. checking to see if signature is same as signature on a credit card). Thankx in advanced. -- C++ | |
I have this code: [CODE]try { robot = new Robot(); robot.mouseMove(0,900); robot.mousePress(InputEvent.BUTTON1_DOWN_MASK); robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK); }catch(Exception e){}[/CODE] And I want it to click the "Start" button on Windows computers. The mouse moves to the correct location, but does not click. Advice? | |
Hi, Is there a way to create voice recognition software in java??? Thanks! | |
The source of my COPYRIGHTED tictactoe java game. It shows how to use multiple classes, methods, etc. | |
Hi: I was wondering if anybody knew anything about creating your own programming language. Thanx | |
Hi everybody; is there a way to find system info (current time, date, processor speed, processor's RPM, Fan1's RPM, Fan2's RPM, etc)? I am making a program that gives you information about your computer. Thanx in advanced, C++ | |
Hi, I was wondering if there's a tutorial on making a website that offers free hosting. I know how to upload files with PHP, so I posted this topic here. Thanx. | |
I need to open a .txt file from a website. I tried this code: [CODE] int len = 0; FileReader fr = new FileReader("http://www.cinndev.com/testFile.txt"); BufferedReader br = new BufferedReader(fr); String str = ""; while ((str = br.readLine()) != null) { System.out.println(str); len++; }[/CODE] but the program froze on me. What … | |
Hi Everyone, I'm webmaster of two sites I've submitted << snipped >> to google >100 times, and it still isn't listed! I submmitted through this site: [url="http://www.google.com/addurl/?continue=/addurl"]http://www.google.com/addurl/?continue=/addurl[/url] Do you have any advice? Should I purchase an SEO like TrafficBlazer and if so, which one? For my second site, I've submitted … | |
Hi, I was wondering how many posts you need to post before you move to the next "rank" - for example: Junior Poster, Posting Whiz, Guru Poster, etc. Thanx. | |
Re: 1 - Counter Strike 2 - Counter Strike: Source 3 - Halo 4 - Halo 2 5 - Halflife: Source | |
Re: hi, I'm only 13 and I've taken the exam twice (and failed). The first time I got a 22% and the second time I got 44%. A really good tool is called Transcender Practice Exam at transcender.com. It is basically 3 different versions of the Java test. It has actual … | |
| |
Re: Right away, I see that your main function is the first function. Try running the program with the main function last. -- C++ | |
Hi, I am trying to create a simon-says type game, where there are four icons of different colors. One icon lights up. The user clicks it. Next, a new icon lights up. The user clicks the sequence... etc, etc, etc. Right now, the first round works. Unfortunately, the icons do … | |
Re: basically, they're different. Java is made by SUN, and J# is made by SUN's rival company Microsoft. Java is better :) | |
Re: in a word processor: Ctrl + i = italics Ctrl + b = bold Ctrl + u = underline Ctrl + a = select all In any program: Ctrl + f = Find | |
Hi, I am making tic tac toe, and I basically have it all working, except the GUI has a few bugs. Right now, I am not using a layout. I am using "setBounds" instead. When a player wins, an image saying "you win" should be displayed over the title image … | |
Is there a way to browse the internet using the PSP??? Any help would be appreciated. Thanks in advanced for your help, C++ | |
Re: If you have a gmail account, PLEASE invite me. My email adddress is [email]Rocket0201@aol.com[/email] Thanks, C++ ![]() | |
Re: that basically sums it up. | |
Hi everybody! I want to create my own OS. I already know: Java C++ HTML 3D Game Design C# Pascal I was wondering if any of what I know might come in use. Is there a tutorial on making your own OS i could follow??? Thanx in advanced for your … | |
Hi Everybody: I've attempted at getting Java Sun certified twice (failing both times). My first score was a 22% and my second score was a 44% (big improvement :D ). I was wondering if anybody had any help or tips for taking the exam. I really want to pass next … |
The End.