Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #3K
~8K People Reached
Interests
programming, music production
PC Specs
AMD FX-8350, Gygabyte Radeon HD 7970 GHz, 32GB PC3-12800
Favorite Forums
Favorite Tags

12 Posted Topics

Member Avatar for alastair1008

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 …

0
70
Member Avatar for alastair1008

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, …

0
167
Member Avatar for kedxu

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 () { …

Member Avatar for kedxu
0
390
Member Avatar for Consuela94

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 …

Member Avatar for Consuela94
0
5K
Member Avatar for alastair1008

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 …

Member Avatar for alastair1008
0
222
Member Avatar for alastair1008

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, …

Member Avatar for Ancient Dragon
0
272
Member Avatar for alastair1008

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 …

Member Avatar for ~s.o.s~
0
109
Member Avatar for harinath_2007

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.

Member Avatar for Nick Evan
0
312
Member Avatar for sariberri

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 …

Member Avatar for alastair1008
0
860
Member Avatar for anti_genius

try having the action listener call a method that resizes the frame instead of resizing the frame directly

Member Avatar for alastair1008
0
157
Member Avatar for alastair1008

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

Member Avatar for Taywin
0
137
Member Avatar for alastair1008

i'm writing a program that can tell me where my curser is and whether the bottons are being pressed

Member Avatar for kramerd
0
126

The End.