Visual Basic

Moderators: None (Apply to moderate this forum)
Number of threads: 18011
Number of posts: 55384

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
A pleasant greetings to all te programmers,,,, Posted by yamamiko07 on 14 Feb 2007 at 7:39 AM
I just want to know about vb, can any one pls tell me about the basic topic of a vb or can you show me a sample program of it, even just a simple hello word

thank's to all,,,
Report
Re: A pleasant greetings to all te programmers,,,, Posted by BitByBit_Thor on 14 Feb 2007 at 8:53 AM
: I just want to know about vb, can any one pls tell me about the basic topic of a vb or can you show me a sample program of it, even just a simple hello word
:
: thank's to all,,,
:

Imagine a windows form, empty, but for one button in the center with the caption "Click me".

Private Sub Command1_Click()
  Dim sInput As String

  MsgBox "Omg! You clicked me..."
  sInput = InputBox("Please input the proper greeting:", _
    "Proper Greeting")
  If LCase$(sInput) = "Hello world" Then
     Me.BackColor = vbRed
     MsgBox "Yay!", vbExclamation
  End If
End Sub


The button will turn throw a messagebox you see more often and that web pages sometimes use (you know those 'don't click me' things, where all kinds of messages appear, that's a messagebox).
Then you can input a text and if you input the right text then the background color of the window turns red and a box with "Yay!" pops up.

Best Regards,
Richard

The way I see it... Well, it's all pretty blurry

Report
Re: A pleasant greetings to all te programmers,,,, Posted by Termc1224 on 15 Feb 2007 at 1:30 AM
: I just want to know about vb, can any one pls tell me about the basic topic of a vb or can you show me a sample program of it, even just a simple hello word
:
: thank's to all,,,
:
try this site http://triscanete.tripod.com/id1.html
I'm the best there is,
the best there was,
and the best there ever will be.
hahahahaha lolz :)




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.