Ok, I have several questions regarding VB with M$ Visual Basic Studio 6.0 installed as my vb tool.
-Firstly, how do you take a program you created and turn it into a stand-alone program? For example, if I were to create a calculator, it is saved as "Calculator.frm" - How could I turn this into an .exe so I could run it on windows without turning on Visual Basic.
-Second, How do you edit apps that were originally created in vb? Example - I have an friend's app edited in vb that is a .exe.(if you look at the icon, its a little vb rectangle with the teal title bar tilted to the left)
-Third, I'm trying to create a average calculator where the user enters numbers in several text boxes, then hits calculate. I wrote it, but deleted it after it failed. So I'll write it real quick here:
dim avg as double
avg=(text1.text + text2.text + text3.text) / 3
Label1.Caption="The average is " & avg
Whenever I hit "Calculate," all of the text boxes with the numbers turn to 0 and the average is 0......
Help would me much appreciated =)
Thanks in advance
-eta378