Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #4K
~4K People Reached
Favorite Tags
java x 8
c# x 4

11 Posted Topics

Member Avatar for AQWst

I' not sure guys, but I don't think there's TOP or BOTTOM constant in FlowLayout or BorderLayout, for FlowLayout, there're only LEFT, RIGHT, and CENTER. For BorderLayout, there're CENTER, SOUTH, NORTH, WEST, and EAST.

Member Avatar for stultuske
0
421
Member Avatar for shinnxennosagga

Anybody ever use InkX or RichInk from OpenNETCF? Im having difficulties adding it on my windows mobile form, building the application is no problem, but when deploying it, a strange error pop up, saying something like missing Assembly. Btw, Im using Visual Studio 2008 as my editor.

Member Avatar for shinnxennosagga
0
144
Member Avatar for shinnxennosagga

I got a problem in designing (may be not design, more like code one) UI for my chat application. here's the problem : I want to make a chat box on mobile device using C#, and I want to be able insert smiley. The problem is, by using textbox or …

0
75
Member Avatar for StephNicolaou

Also you got one staetment that causes your program to loop infinitely it would be the [i]x = 5;[/i] [code] public static int fact(int x) { x = 5; //this part will set x to value 5 if(x==1 || x==0) return x; //so, because x is always 5, this conditional …

Member Avatar for Dukane
0
202
Member Avatar for amitahlawat20

I think these numbers (0x0f , 0x0f1 , 0x0ff) are not binaries, they're hexadecimal. but to convert binary to hexadecimal you can use table that convert 4 digits binary, like : 0000 -> 0 0001 -> 1 0010 -> 2 0011 -> 3 0100 -> 4 0101 -> 5 0110 …

Member Avatar for Phaelax
0
65
Member Avatar for the juice

I don't really get the idea of multithreading bubble sort, but Masijade is right. You might want to pass variable t1 - t5 to Sort1 so that they'r recognized in the class.

Member Avatar for the juice
0
2K
Member Avatar for bops

There are several forms of a recursive function, here are some : [code] recurveFunc(<param>) { <type> result; if (<terminate condition>) { return <value_returned_when_the_function_ends>; } else { result = recurveFunc(<param>-1); } return result; } [/code] [code] recurveFunc(<param>) { <type> result; for(int i = 0; i < <param>; i++) { result = …

Member Avatar for shinnxennosagga
0
217
Member Avatar for piers

Firstly, there're less women in programming and computing worls. Secondly, OOP does better than structure programming, especially when your application grow big.

Member Avatar for neocoder
0
349
Member Avatar for piers

If you need a Rectangle class, then you can just inherit it from TwoDShape and code it all over again, or you may inherit it from Triangle class and override method calculateArea(), but the latter is not suggested.

Member Avatar for piers
0
800
Member Avatar for sebe

Well, I used to use this following command: java -cp . <your_class> Or, of course you can set your classpath.

Member Avatar for shinnxennosagga
0
69
Member Avatar for shinnxennosagga

Hi everybody, I'm a computer science student and I'm frantically interested in IT.

Member Avatar for zandiago
0
43

The End.