|
-
Apr 15th, 2000, 03:55 PM
#1
-
Apr 15th, 2000, 04:06 PM
#2
transcendental analytic
OK, will help you with this one:
Code:
Private Sub Form_Load()
Dim i as integer
For i = 1 To 10
MsgBox "Hello World!"
Next i
End Sub
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Apr 15th, 2000, 04:12 PM
#3
-
Apr 15th, 2000, 04:19 PM
#4
Why doesn't this work?
Why doesn't this work?
Code:
Nonprivate Ship Sea_Cutter(I Am As If Smart)
Massage For I And For U
Say "NEXT!!!"
Start_A_New Ship
HEEEEEEEEELP!!!
-
Apr 15th, 2000, 05:07 PM
#5
I suggest you take a course. Nobody here can teach you vb from scratch over the internet.
-
Apr 15th, 2000, 05:37 PM
#6
-
Apr 15th, 2000, 05:41 PM
#7
Answer me please...
My good friend Aaron Young told me that I can post any VB question I have on this forum and I will definitely get an answer from all you experts!
I guess you aren't like that
-
Apr 15th, 2000, 06:03 PM
#8
If you have any specific question, I am glad to help. But with questions like
Does anybody here know HOW to build an application in VB?
I can only say, Yes I do know how to build an application in VB. It's my job for almost 2 years now.
About the Dim Guide as Internet question:
With Dim you dimension a variable as a specific type.
This type can be native to VB, or one specified in an object library connected to your application. To connect an object library to your application, you can select it with: Project --> References
eg If you add a reference to the Microsoft Internet Controls library your able to use Dim Guide As InternetExplorer
So if there is an object library with an Internet object, and you have added a reference to it, you can use Dim Guide As Internet.
-
Apr 15th, 2000, 06:14 PM
#9
How dare you?!?
-
Apr 15th, 2000, 09:15 PM
#10
Just incase your not B.S. us all.....
First get a copy of VB for dummies to start off with. This will help you immensely.
The forms are your main item in VB. The form holds controls, such as buttons labels pictureboxs and all the other "Tools" in VB. VB is also a event driven language, unlike Basic which is a inline language. To write your first VB app do the following.
Load the standard project.
Add one command button on to the form.
Double click on the command button. This will bring up the code section for the command button. You should see something like this
Code:
Private Sub Command1_Click()
End Sub
In here you will add the code to make the button do what you want it to.
Code:
Private Sub Command1_Click()
msgbox "Hello World"
End Sub
The code that I added will bring up a message box that says "Hello World" when you run the program and click on the command button.
This is the very bare bones basics of VB programming. I would suggest to you to look at the sample programs in VB and to read the "Getting Started" section of the online books in VB.
Good luck,
Roger
[Edited by RvA on 04-16-2000 at 10:23 AM]
-
Apr 15th, 2000, 11:49 PM
#11
transcendental analytic
Ok, I think you should start with Qbasic, to learn the language, then you could use VB
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Apr 16th, 2000, 12:52 AM
#12
Fanatic Member
You will get it !
Dont worry friend VB is not at all tough. just Download some tutorials from vbworld.com and you will learn everything in VB. Also don't forget to view threads daily and post if you dont know anything. Uwas also like you a few month back and at present I know major part of Vb. I have written my own program too of 768 lines !!
-
Apr 16th, 2000, 03:40 AM
#13
Hyperactive Member
Are you anonymoshe trying to pull our legs???
-
Apr 16th, 2000, 05:01 AM
#14
Frenzied Member
By the sound of things you're going from C++ tyo VB, in VB you have to do F*** All, you don't need to build an App, just press F5 and the program will run, If you want to compile the App so you can put it on your HD and run it without using VB you can use Make Project 1 from the file menu.
Hope this helps.
-
Apr 18th, 2000, 05:11 AM
#15
Junior Member
Hi, if you want me to teach you vb from scratch i will be glad to. Just e-mail me at: [email protected] and we can start a course of free by e-mail. K. C-Ya Soon bye...
Rember to visit my website at www.c-interactive.co.uk
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|