Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
7
Posts with Upvotes
6
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~16.9K People Reached
Interests
programming, web
Favorite Tags
Member Avatar for hannahaddad

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?

Member Avatar for Hector73
0
440
Member Avatar for Transcendent

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.

Member Avatar for harry_6
0
344
Member Avatar for hannahaddad

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 …

Member Avatar for hannahaddad
0
168
Member Avatar for firepower

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 …

Member Avatar for Taywin
0
163
Member Avatar for hannahaddad

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 …

Member Avatar for hannahaddad
0
192
Member Avatar for syasya

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 …

Member Avatar for jwenting
-1
599
Member Avatar for Wisnu_1

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 …

Member Avatar for hannahaddad
0
477
Member Avatar for syasya

http://www.daniweb.com/software-development/java/threads/477429/string-a-sms-message-or-string-a-new-string-sms-message-

Member Avatar for hannahaddad
-2
108
Member Avatar for hannahaddad

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 …

Member Avatar for Warrens80
0
593
Member Avatar for kristian.ssyn

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 …

Member Avatar for JamesCherrill
0
12K
Member Avatar for amir4g

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

Member Avatar for JamesCherrill
0
348
Member Avatar for Lia_2

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

Member Avatar for hannahaddad
0
302
Member Avatar for yasheela

i think that "System.out.println(pig);" in line 63 should be in the line 60, before the left brace.

Member Avatar for hannahaddad
0
136
Member Avatar for daniel1977

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 …

Member Avatar for hannahaddad
0
250
Member Avatar for Richa_2

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 …

Member Avatar for Richa_2
0
289