thanks for the vid.. hmm i would like to ask, what if i want to make a mobile app?? what should I do to make it fit to the screen of the cellphone (for example corby II) I'm doing my thesis right now and im planning to make a mobile app using Java, Jframe.. but i dunno what to do.. can you help me please? thanks a Lot ^_^
@98CLG you can make a executable jar file that will run on just double-clicking without having to launch netbeans. Watch this video of mine - How to make JAR files from NetBeans IDE
@Rohanmakkar I think my point is, a verbal narrative would have put the icing on the cake, don't you think? Clearly you are a tech and can see the value in verbalizing what you are doing ay?
@RealityPoint i appreciate your advice and i have even tried voice narration on some of my vids but i am not good at english & i can't bear those stupid youtuber's comment about the accent
@RealityPoint I am sorry you feel that way. Maybe you just have to disable comments. Personally, I'd love a voice narrative on something like that, something I am trying to learn. It adds another dimension to the instruction that is very valuable.
@TheMrDclaws you have to the code under button's actionperformed event but you have written under jTextField3ActionPerformed(java.awt.event.ActionEvent evt)
just cut and paste it under jButton1ActionPerformed(java.awt.event.ActionEvent evt)
first of all nice tutorial, but i got a question, i want to create an applet which can be embedded into a website,so i need to start it as an applet, does netbeans 7.0 automaticly save it as an applet or do i have to use another form?
and could you make a tutorial on how to open a new window in the form, just the basic thing, i click on a button and a new window pops up in which i can enter new parameters and stuff :)
1 netbeans save it as a class file but it also creates a html for you which you can view through files>your applet>build>there will be a html file.
2 Just create 2 forms with your gui controls under a package. Add a button in form1. Under button's actionperformed event write - new form2().setVisible(true);
@Rohanmakkar ah ok, i got the managed to open the window, now 1 last question, how can i give out the stuff i enter into a text field in the console of netbeans?
@Rohanmakkar yeah, about the bottom part in which you can give out stuff with System,out.println("texttexttext") and in the window at the bottom it the says texttexttext
umm now i looked closer and figured out the problems most of them were my eyesight and i pimped it so it looks awesome ... HOW DO I EXPORT ?!?!?!?!?!?!?
hi could you show how to create a programme that enables you to order things, calculate total prices thanks :)
carmel1961 3 weeks ago
@carmel1961 have a look at this video of mine - "Working with Swing Controls in NetBeans IDE"
Rohanmakkar 3 weeks ago
upload some big app not starter app
mayank32arora 1 month ago
My NetBeans is not correcting me nor giving me options;can you please help me?
beatlesrockamilD 1 month ago
My NetBeans is not correcting me nor giving me options;can you please help me?
beatlesrockamilD 1 month ago
My NetBeans is not correcting me nor giving me options;can you please haelp me?
beatlesrockamilD 1 month ago
@beatlesrockamilD update your IDE. Try pressing ctrl + space for options.
Rohanmakkar 3 weeks ago
thanks for the vid.. hmm i would like to ask, what if i want to make a mobile app?? what should I do to make it fit to the screen of the cellphone (for example corby II) I'm doing my thesis right now and im planning to make a mobile app using Java, Jframe.. but i dunno what to do.. can you help me please? thanks a Lot ^_^
justineinahtan 1 month ago
Is there a way to make a launcher so you can launch it without having to go into netbeans?
98CLG 2 months ago
@98CLG you can make a executable jar file that will run on just double-clicking without having to launch netbeans. Watch this video of mine - How to make JAR files from NetBeans IDE
Rohanmakkar 2 months ago
Thanks a lot , you gave me a good idea about how to start working in netbeans
shreasy 3 months ago
I really wanted to watch this but the music put me to sleep.
RealityPoint 4 months ago
@RealityPoint youtube video player has a volume control that is still accessible
Rohanmakkar 4 months ago
@Rohanmakkar I think my point is, a verbal narrative would have put the icing on the cake, don't you think? Clearly you are a tech and can see the value in verbalizing what you are doing ay?
RealityPoint 4 months ago
@RealityPoint i appreciate your advice and i have even tried voice narration on some of my vids but i am not good at english & i can't bear those stupid youtuber's comment about the accent
Rohanmakkar 4 months ago
@Rohanmakkar Out of curiosity were are you from ?
ETHOB121 2 months ago
@RealityPoint I am sorry you feel that way. Maybe you just have to disable comments. Personally, I'd love a voice narrative on something like that, something I am trying to learn. It adds another dimension to the instruction that is very valuable.
RealityPoint 4 months ago
Thanks, this vids help me out a lot!
zeramino 4 months ago
thank's
nice project
akhileshgupta1993 5 months ago
thanks for the idea... im ready for our project like this...
sixdyingbottles 5 months ago
whats this song?
SuperGaming1000 5 months ago
@SuperGaming1000 title song of Windows XP
Rohanmakkar 5 months ago
One question.!! And do you know the key for "Finish the program"?? For End.. Please
xssamirrx 5 months ago
@xssamirrx For exiting the program:
Create a new button on the JFrame Form
Then under its actionPerformed event write-
System.exit(0);
Rohanmakkar 5 months ago
@Rohanmakkar thanks!
xssamirrx 5 months ago
Yeah.! It´s a good video.. Thanks..It´s my first class in java desktop..basic application
xssamirrx 5 months ago
Hey uhm the - does work but not the + can you help me :)?
TheMrDclaws 6 months ago
@TheMrDclaws what error are u getting or what goes wrong??
Rohanmakkar 6 months ago
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
int a,b,c;
a=Integer.parseInt(jTextField1.getText());
b=Integer.parseInt(jTextField2.getText());
c=a-b;
jTextField3.setText(""+c);
TheMrDclaws 6 months ago
@Rohanmakkar private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {
int a,b,c;
a=Integer.parseInt(jTextField1.getText());
b=Integer.parseInt(jTextField2.getText());
c=a+b;
jTextField3.setText(""+c);
TheMrDclaws 6 months ago
@TheMrDclaws you have to the code under button's actionperformed event but you have written under jTextField3ActionPerformed(java.awt.event.ActionEvent evt)
just cut and paste it under jButton1ActionPerformed(java.awt.event.ActionEvent evt)
Rohanmakkar 6 months ago
Is it anything that i did wrong?
TheMrDclaws 6 months ago
hey,
first of all nice tutorial, but i got a question, i want to create an applet which can be embedded into a website,so i need to start it as an applet, does netbeans 7.0 automaticly save it as an applet or do i have to use another form?
and could you make a tutorial on how to open a new window in the form, just the basic thing, i click on a button and a new window pops up in which i can enter new parameters and stuff :)
subbed you and hope for help :)
rediscapsshockey 7 months ago
@rediscapsshockey thnxx for subscribing!
1 netbeans save it as a class file but it also creates a html for you which you can view through files>your applet>build>there will be a html file.
2 Just create 2 forms with your gui controls under a package. Add a button in form1. Under button's actionperformed event write - new form2().setVisible(true);
i hope, you got what you were looking for!!
Rohanmakkar 7 months ago
@Rohanmakkar ah ok, got first one thx for that:)
to 2nd one, is there a difference to the properties in 7.0? cause i cant find the setting to set it to invisible :)
rediscapsshockey 6 months ago
@Rohanmakkar ah ok, i got the managed to open the window, now 1 last question, how can i give out the stuff i enter into a text field in the console of netbeans?
thanks so much for the help :)
rediscapsshockey 6 months ago
@rediscapsshockey i m glad i could help u till now but i am not able understand ur this problem.
are u talking about the output window in netbeans???
Rohanmakkar 6 months ago
@Rohanmakkar yeah, about the bottom part in which you can give out stuff with System,out.println("texttexttext") and in the window at the bottom it the says texttexttext
sorry, english isnt my first language:)
rediscapsshockey 6 months ago
@rediscapsshockey don't worry, english is also not my first language..
get the string from the textfield in a variable and then just print it ---
String txt=jTextField1.getText();
System.out.println(txt);
Rohanmakkar 6 months ago
@Rohanmakkar thank you very much,worked fine :)
rediscapsshockey 6 months ago
umm now i looked closer and figured out the problems most of them were my eyesight and i pimped it so it looks awesome ... HOW DO I EXPORT ?!?!?!?!?!?!?
ZombieCreeperStudio 7 months ago
@ZombieCreeperStudio great to hear that in the end it worked for you!
To export the file as .jar see my another video named "How to make jar files from netbeans ide"
Rohanmakkar 7 months ago
this wouldnt work for me it wont recognize what ** is
ZombieCreeperStudio 7 months ago
@ZombieCreeperStudio its not ** , it is ""
Rohanmakkar 7 months ago
thanks rohan
arslaanejaz1 7 months ago
nice 4 beginners
abdullahemreagcaa 11 months ago
Thanks a lot Rohan. This Video helped me a lot.
amitsinghsisodia 1 year ago 8