ID:185242
 
Does anyone on here know how to program in visual basic i am trying to learn but i am lost i hear that it can help u program in dm as well
<font size=5>Big Bump</font>
VB is extremely simple. Just go to the toolbar with all the objects, click/drag around the form to make new objects of those types (you have buttons, text fields, labels, radio buttons, macro boxes, etc., the whole bit). On the right side is a list of the object's variables so you can change them. Then, in the code, you can select an object and one of its functions to make something happen then.

For example, make two text fields on the form, one next to the other, then make a label next in row. Name them txtInput1, txtInput2 and lblOutput. Then make a button and name it btnAdd, and set its caption to "Add". In the code, do this.
Sub btnAdd_Click()
lblOutput.Caption = txtInput1.Text + txtInput2.Text
End Sub

You have a calculator with a single function, adding.
In response to Mxjerrett
If you must bump, please don't do it with BIG RED SHOUTING TEXT - it's a bit annoying. Thanks.
In response to Crispy
Red?
In response to Madow
He edited. Mx, it is still rude. Don't yell at us in big text.
In response to Kalzar
i dint mean to be rude i just always do that when i bump i do it because it takes up alot of space so i just say big bump
In response to Mxjerrett
http://www.visualbasicforum.com/

That is a good place to learn.