Forum: C# May 13th, 2009 |
| Replies: 3 Views: 659 Well, I don't really manage to fix that problem, seems like the components is not compatible with Visual Studio 2008 (added in 2003 would be fine), so I just make my own component that suits the... |
Forum: C# Feb 19th, 2009 |
| Replies: 3 Views: 659 oh, ya, this is the runtime error that occurs :
"File or assembly name 'OpenNETCF.Windows.Forms, Version=2.1.0.0, Culture=neutral, PublicKeyToken=E60DBEA84BB431B7', or one of its dependencies, was... |
Forum: C# Feb 19th, 2009 |
| Replies: 3 Views: 659 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,... |
Forum: C# Feb 3rd, 2009 |
| Replies: 0 Views: 746 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... |
Forum: Java Mar 16th, 2008 |
| Replies: 7 Views: 822 Also you got one staetment that causes your program to loop infinitely
it would be the x = 5;
public static int fact(int x)
{
x = 5; //this part will set x to value 5
... |
Forum: Java Mar 16th, 2008 |
| Replies: 2 Views: 596 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... |
Forum: Java Mar 9th, 2008 |
| Replies: 3 Views: 1,525 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. |
Forum: Java Mar 8th, 2008 |
| Replies: 10 Views: 16,854 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,... |
Forum: Java Mar 8th, 2008 |
| Replies: 4 Views: 3,045 There are several forms of a recursive function, here are some :
recurveFunc(<param>) {
<type> result;
if (<terminate condition>) {
return... |
Forum: Java Feb 26th, 2008 |
| Replies: 2 Views: 2,413 Well, I used to use this following command:
java -cp . <your_class>
Or, of course you can set your classpath. |
Forum: IT Professionals' Lounge Feb 26th, 2008 |
| Replies: 37 Views: 4,248 Firstly, there're less women in programming and computing worls.
Secondly, OOP does better than structure programming, especially when your application grow big. |
Forum: Java Feb 26th, 2008 |
| Replies: 11 Views: 2,344 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... |
Forum: Community Introductions Feb 18th, 2008 |
| Replies: 5 Views: 506 Hi everybody, I'm a computer science student and I'm frantically interested in IT. |