- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 7
- Posts with Upvotes
- 6
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- programming, web
Hi, i was working on corba project using java, now i want to do it on c++. but i don't know how to compile the idl file in c++. I'm using dev-c++ for c++. So what software should i have do compile the idl file? | |
Re: Hi, Like all said you need to know JAVA before you start. I started in Android Development with this book ( http://it-ebooks.info/book/1564/ , http://www.vogella.com/tutorials/android.html) using eclipe+SDK as IDE. but now I'm working on android studio and you can find some tutorials on youtube. | |
I have a gmail account, and i registered to many websites using that email. I want to know if there is any way to know what sites are registered with this email. (for example i can sign to facebook, daniweb, twitter using that email and also to other websites, so … | |
Re: hello, i see that your code is missing: 1) you need to add the main public static void main(String [] arg) { new picture(); } 2) you added the key listener on the ball which is label, and i don't think it will work. so i advice you to add … | |
Hello. I'm developping a project about the decision tree in Java. My project idea is about animals, but it's gonna be a big database and i don't have too much time to complete. So my question is: Can anyone help me to found a complete database about animals or about … | |
Re: String a=new String("SMS Message"); this line means that you reserved a memory pointed by a and has the value "SMS Message". So when you say if(a==b), you are comparing the addres of the memory (like JamesCherrill said). But what you want to do is to compare the value of this … | |
Re: Hi. the last month, i had a chatRoom project in college. I built the chatRoom application on java, using the rmi method. my requirement were: - 2 laptops (windows 7) - eclipse kelper for programming - a cable to connect the two computers and now my project is to redevelop … | |
Re: http://www.daniweb.com/software-development/java/threads/477429/string-a-sms-message-or-string-a-new-string-sms-message- | |
Hello, I'm new to daniweb community and it's very exiting and useful place to share idea and problems. but i have this problem. every time i login i get a message about invalid combination password. and i'm sure that it's my valid mail with my valid password. so every time … | |
Re: I always stuck in these situation about resizing buttons. so i will suggest you my solutions and if you find a better one please share: 1)the BoxLayout, instead of using gridLayout at line 67 you can use this oakpane.setLayout( new BoxLayout(oakpane, BoxLayout.X_AXIS) ); 2)a FlowLayout panel into the oakpane, create … | |
Re: u have a interface name Shape, next you created an abstract class named Shape2 that implement the interface, next you created 4 classes (Square, Triangle, Octagon,Circle) that should extends the abstract class, so this is the first error i think, you should replace "class Square" with "class Square extends Shape2" … | |
Re: at line 21 you misspelled the fib4() (lowercase f) method. and fib4(i), i is long but it should be integer. I hope this help | |
Re: i think that "System.out.println(pig);" in line 63 should be in the line 60, before the left brace. | |
Re: 1- when you enter your number from the keyboard, you should press enter to commit the value entered. 2- your code is 100% correct: while (condition is true) { do something here } so while the number!= -1, you keep entering new number, when the number you entered is equal … | |
Re: First you cannot define method in the static void main() method, so method1 and method2 should be in the class Salry but not into main. Second method1 and method2 should return an interger which you didn't in your exemple, so you need to add a return statement or to change … |