- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
- Interests
- programming, music production
- PC Specs
- AMD FX-8350, Gygabyte Radeon HD 7970 GHz, 32GB PC3-12800
12 Posted Topics
I'm trying to write a mothod in C# that will find the value of a point by bicubic interpolation. basically I have an array of 16 (4x4) float values that are either 1.0f or 0.0f and i am trying to get the float value of a single point by interpolating … | |
I am writing a program that does one thing, it finds out the current link speed of the wifi connection and reports it to the user in real time. the problem I am having is that it does not seem to be able to find out the current link speed, … | |
Re: you will probably want to have each sound in a Sound object (you will have to write it) and include a method of running it in a seperate thread. import java.applet.AudioClip; class SoundPlayer extends Thread { AudioClip sound; public SoundPlayer (AudioClip sound) { this.sound = sound; } run () { … | |
Re: see this tutorial on how to get the words in from the file http://docs.oracle.com/javase/tutorial/essential/io/charstreams.html once you have all the words sorted into an array, select one at random using the random number method of your choice (Math.random () or java.util.Random) now break your word down into a char array char … | |
basically my program runs like this 1. open up configure GUI 2. get congiguration 3. close configure GUI 4. open up main GUI now when I am testing in netbeans, this works perfectly however, as soon as I compile and try to run the jar file outside of netbeans the … | |
I'm just starting out in C++ and want to use TextOut to print a character that is generated at runtime based on keyboard input but am having trouble converting TCHAR to LPCWSTR so that it can be used in the TextOut method. my code is [CODE] LRESULT CALLBACK WndProc(HWND hWnd, … | |
I am writing a program that needs to be able to respond to keyboard actions regardless of what application has the focus at the time but after hours of searching the internet I have found no way to do this. for example, the program needs to be able to respond … | |
Re: you need to directly access the systems event queue, opposite to what the Robot class does. for this to work, your keylogger must scan each event before the default system event handling gets to it. | |
Re: often when you try to mod a negative number, the results can be unexpected. try this [CODE] // to encrypt int numberOfCharacters = 256;//the number of chars in your alphabet int key; //the number of chars you want to shift by String clearText = "hello"; String encrypedText = ""; key … | |
Re: try having the action listener call a method that resizes the frame instead of resizing the frame directly | |
I want to create a new thread in a program that i'm working on but i cant get my new threads to start does anyone have some code that would allow me to create and start new threads | |
i'm writing a program that can tell me where my curser is and whether the bottons are being pressed |
The End.