Trying to learn coding.....

raxor30

Distinguished
Aug 10, 2012
58
0
18,530
I've tried to get back into coding since my high school days. It's really hard to understand for some reason. The lines of coding kind of confuse me.....because I am not seeing visual output. Maybe it is because I started coding in high school with a program called "Karel++". This was basically similar to Pascal and provided a introduction into C++ and Java. It was very fun and I loved every minute of it. Does anyone here know of any program like Karel++ but for modern coding?
 
Solution
I'd suggest you start with VB.NET.
https://www.visualstudio.com/products/free-developer-offers-vs

Once you install visual studio start a new windows forms project. you will have to select a name for the project, call it raxor30add. It will ask you what directory to put it in. Choose what ever makes sense to you. Once the form is displayed add three text boxes, name them txtTop, txtBottom and txtTotal. Then add a button with the caption "Add" name this control btnAdd.

Now double click on the button. It will bring up something similar to btnAdd_OnClick. Now write code to add the values of txtTop with txtBottom. Then set the value of txtTotal with the result.

I'd suggest you start with VB.NET.
https://www.visualstudio.com/products/free-developer-offers-vs

Once you install visual studio start a new windows forms project. you will have to select a name for the project, call it raxor30add. It will ask you what directory to put it in. Choose what ever makes sense to you. Once the form is displayed add three text boxes, name them txtTop, txtBottom and txtTotal. Then add a button with the caption "Add" name this control btnAdd.

Now double click on the button. It will bring up something similar to btnAdd_OnClick. Now write code to add the values of txtTop with txtBottom. Then set the value of txtTotal with the result.

 
Solution

TRENDING THREADS