by using windows builder feature you made the coding easier as one can get some GUI interfaces without coding themselves...but for learning purpose we should try coding the whole thing ourselves....
Thanks sir for the video...I m a beginner and searching for the video in this coronavirus pandemic...and this becomes my first application after learning java...thanks a lot once again...nd also I subscribed to ur channel
Convert it to an executable file (exe file) which is a computer file that contains an encoded sequence of instructions that the system can execute directly when the user clicks the file icon
hi thanks for you to help us make things .But why you didnt show us the other things like C and delete button.. you said im going to edit everything when you get wrong size with -/+ you cut it what is the code
From where did u got the codes for backspace, dot etc. Probably i need to understand it well if we have to do it by our self for any other project. Btw great job, Thankyou!!
Yes you can or click on the links below. Remember to subscribe to the channel. How to Create Calculator in Java NetBeans Full Tutorial ruclips.net/video/Ggy8IuIQEsA/видео.html Java NetBeans Tutorial How to Create a Calculator ruclips.net/video/78PCIp2bSEk/видео.html
Dear Sir, I was trying to develop the Calculator app using Eclipse 2020-3 . But when I try to make the WindowBuilder wizard it is not showing the WindowBuilder wizard. In this version why it is not showing the WindowBuilder ? How to make the app using the Eclipse 2020-3 version. Please tell me . Thanking you
Thank you very much for your reply Sir. I thought the WindowsBuilder is in the Eclipse by default. I didn't know that it has to be installed separately, hence the doubt came. Now I have installed it. Thank you Sir.
@@DJOamen no thanks sir, Ive fixed it already. Thank you so much to your wonderdul tutorial sir, I enjoyed it alot. your channel deserves a lot of subscribers . your new subscriber here from Philippines.
Hi man i know you're really popular and stuff so you probably won't have time to even read this, let alone answer it, I'm trying to learn how to code in Java and Javascript, following it up with Python. Im not very good at all at the moment, im wondering, when i eventually do go for an entry level job in programing or testing or debugging, what kind of stuff will be expected of me? Because I'm kind of freaked out here, I'm watching guys creating snake and flappy bird and brick breaker in 6 minutes amd guys who just seem to know how to do everything without having to look up references... also, can you tell me roughly what i could expect fir basic pay as a new entry level programmer? Thanks so much
The average salary for an Entry-Level Software Developer is £28746. See link below www.payscale.com/research/UK/Job=Software_Developer/Salary/17ff2dd9/Entry-Level
For newer versions of eclipse, you will need to go into the eclipse marketplace & search for WindowBuilder then install it-reboot Eclipse & then you will be able to use it
Without your help its not possible.....you provide us a pure knowledge which is a need of every student....thanks alot sir much love❤️
It's my pleasure
You details and explanation is just the best, please if you are in UK, London I will love to meet you one on one, you are the best
Hi Grace, maybe one of these days
by using windows builder feature you made the coding easier as one can get some GUI interfaces without coding themselves...but for learning purpose we should try coding the whole thing ourselves....
Yes you can
your voice is so calm and you are a great teacher.. you get my sub and like on every vid!!!!!
Welcome aboard!
Thanks sir for the video...I m a beginner and searching for the video in this coronavirus pandemic...and this becomes my first application after learning java...thanks a lot once again...nd also I subscribed to ur channel
Well done, Stay safe👍
Thanks sir I was very worry .. but u cleared me.. I am from Bharat..
All the best👍
Thanks DJ Oamen, I made my first calculator.
Well done!
Thank you! Really helping me with college, covid makes everything so much harder!!!
Great to hear!
You just created the calculator. How can you use it as an application on your pc desktop?
Thank you very much for your answer!
Convert it to an executable file (exe file) which is a computer file that contains an encoded sequence of instructions that the system can execute directly when the user clicks the file icon
@@DJOamen Thank you very much.
Great course. Thank you 👍🔥🎉☀️☀️
Glad you enjoyed it!
hi thanks for you to help us make things .But why you didnt show us the other things like C and delete button.. you said im going to edit everything when you get wrong size with -/+ you cut it what is the code
Clear:
txtDisplay.setText(null);
Delete:
String backspace=null;
if(txtDisplay.getText().length() > 0){
StringBuilder strB = new StringBuilder(txtDisplay.getText());
strB.deleteCharAt(txtDisplay.getText().length() - 1);
backspace = strB.toString();
txtDisplay.setText(backspace);
}
Wow, is so amazing, helped me too much
Glad to hear that!
From where did u got the codes for backspace, dot etc. Probably i need to understand it well if we have to do it by our self for any other project. Btw great job, Thankyou!!
I made it
do you need ecclipse for this to work
No, you can use Java NetBeans as well, just copy and paste the codes
Thank u for this video 😊
Please upload more java tutorials.
Sure I will
Thank you! So much
You're welcome!
Tku good video👍
Thanks
Thanks Sir.
Most welcome
Thanks! Amazing video!
Glad you liked it!
Sir how did textfield change to txtdisplay?
Change the object name on the property
That's amazing. Thanks
You're welcome!
@@DJOamen does this calculator work with more numbers. For example not only with 2 Numbers (5+7) but 5+7+8 for instance.
Good night💤😴😴😘
Good night
Can I do the same thing but in NetBeans?
Yes you can or click on the links below. Remember to subscribe to the channel.
How to Create Calculator in Java NetBeans Full Tutorial
ruclips.net/video/Ggy8IuIQEsA/видео.html
Java NetBeans Tutorial How to Create a Calculator
ruclips.net/video/78PCIp2bSEk/видео.html
@@DJOamen thank you(づ ̄ ³ ̄)づ
Thanks a lot
Most welcome
شكرا
مرحباً بك
Thank you so much.
Thank you
sir i am not able to get the window builder option......can u plz help me out sir ..plz
Re-install your Window Builder, click on the link below to see how to re-install the window building back. ruclips.net/video/ndhFmgzi6io/видео.html
Dear Sir, I was trying to develop the Calculator app using Eclipse 2020-3 . But when I try to make the WindowBuilder wizard it is not showing the WindowBuilder wizard. In this version why it is not showing the WindowBuilder ? How to make the app using the Eclipse 2020-3 version. Please tell me . Thanking you
How to Install Window Builder in Eclipse or Re-Install Window Builder in Eclipse
ruclips.net/video/ndhFmgzi6io/видео.html
Thank you very much for your reply Sir. I thought the WindowsBuilder is in the Eclipse by default. I didn't know that it has to be installed separately, hence the doubt came. Now I have installed it. Thank you Sir.
❤
👍
Sir, i have one doubt how to insert dot(.) only one time.
Watch this video:
ruclips.net/video/1gNKbYIh5g0/видео.html
OR
ruclips.net/video/X2JZK6xt98E/видео.html
@@DJOamen ok thanks a lot!! 😊
My eclipse is not showing the folder called windows builder. Please how do i go about it
Reinstall windows builder, search for a tutorial on how to install windows builder on RUclips. Good luck
txtDisplay isnt recognizable. i am using CDC1.1/Foundation 1.1
Change the txtDisplay to how you name component in CDC1.1/Foundation 1.1
@@DJOamen Where can I get that please and thanks for helping and I am using normal eclipse, will that matter?
No, just try it and see the result. Good luck
Can i use System.out.print instead of txt.display
Yes
my eclipse does not have window builder
Search for how to install WindowBuilder on Eclipse in RUclips. There are a lot of tutorials to help you. Good Luck
download.eclipse.org/windowbuilder/latest/
My eclipse too.
why i didnt have windowsbuilder in my eclipse ide?
Re-install Eclipse Window Builder, see link below.
ruclips.net/video/ndhFmgzi6io/видео.html
@@DJOamen no thanks sir, Ive fixed it already. Thank you so much to your wonderdul tutorial sir, I enjoyed it alot. your channel deserves a lot of subscribers . your new subscriber here from Philippines.
kindly tell me where is the division operator ?????????
28:07 minutes. Check it out
@@DJOamen Thank you so much
Nice work man
Thanks
Can I make this project at intelij
Yes you can
@@DJOamen thank u sir
Nice Codding i got it
Thank you
Can you tell me the source code of the calculator
thank you
👍👍
How to download this code? Plz reply
Check out the description area
in 28:08 can we use switch case
Yes you can
Yeah I don't have the window builder.
See the link below to install the window builder. ruclips.net/user/videondhFmgzi6io
Hi man i know you're really popular and stuff so you probably won't have time to even read this, let alone answer it, I'm trying to learn how to code in Java and Javascript, following it up with Python. Im not very good at all at the moment, im wondering, when i eventually do go for an entry level job in programing or testing or debugging, what kind of stuff will be expected of me? Because I'm kind of freaked out here, I'm watching guys creating snake and flappy bird and brick breaker in 6 minutes amd guys who just seem to know how to do everything without having to look up references... also, can you tell me roughly what i could expect fir basic pay as a new entry level programmer? Thanks so much
The average salary for an Entry-Level Software Developer is £28746. See link below
www.payscale.com/research/UK/Job=Software_Developer/Salary/17ff2dd9/Entry-Level
I don't have a window builder
Search for " how to re-install window builder in eclipse" on RUclips
@@DJOamen thank you
I haven´t window buidler :((.
There are tutorials on RUclips that will show you how to re-install window builder✔
For newer versions of eclipse, you will need to go into the eclipse marketplace & search for WindowBuilder then install it-reboot Eclipse & then you will be able to use it
:) Cool.
👍
Thanks a lot.
No worries!