- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
11 Posted Topics
Re: 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. | |
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. | |
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 … | |
Re: 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 … ![]() | |
Re: 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 … | |
Re: 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. | |
Re: 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 = … | |
Re: Firstly, there're less women in programming and computing worls. Secondly, OOP does better than structure programming, especially when your application grow big. | |
Re: 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. | |
Re: Well, I used to use this following command: java -cp . <your_class> Or, of course you can set your classpath. | |
Hi everybody, I'm a computer science student and I'm frantically interested in IT. |
The End.