Nov 8, 2009

Beginning Visual Basic

free web hosting
Open Discussion > MODERATED AREA > Computers > Programming Languages > VB Programming

Beginning Visual Basic

lowfatcheeze
CAn anyone give me a guide on VB? I've decided to learn it and I need something to work with....


thanks

Comment/Reply (w/o sign-up)

Galahad
Well, in my opinion, the best way to learn some programming language, is to think of a project you want to make, and start from there... Trying to learn something, without any specific way to learn, is very hard...

Start with something easy, like telephone book, or a simple text editor, and then add features slowly, as you learn more and more of the language... I tried it like that, and in a while, you will be able to create more and more advanced software...

Comment/Reply (w/o sign-up)

ghostrider
If you are going to do what Galahad said, you need to make sure you start out VERY simple and have very small goals, if you do not, you'll just get frustrated. All of the programming I know I taught myself, and I made that mistake. If you have any VB questions you can ask me. I've been writing with it for close to 11 years now. Good luck smile.gif.

Comment/Reply (w/o sign-up)

saga
Their right. First write some simple code. This codes could also be your familiarization of the whole language. VB is an object oriented and event driven language. Most of its procedure runs becuase of an event.

You could also visit www.planet-source-code.com and read some codes ranging from beginner to expert level of coding. But before you do that grab some electronic book or print book about visual basic in its simpliest form. Study and understand first its syntax and the basic structures. Visual basic is a little bit different from other hihg level programming languages when it comes to syntax.

I guess you will really enjoy learning VB because its a tool for rapid software development programming language. With basic knowledge in functins, variables, conditional statement and operators you can already build a simple windows based software that is very useful.

Comment/Reply (w/o sign-up)

hitmanblood
OK I suggest you to use Visual Basic 2005 Step by Step by Microsoft press. It is really great book and I am just reading it also it includes some informations about .net package and so on and it involves visual studio also so all exercises are based on the visual studio and you will be working in it.

Also I would tell you that you should find some nice thing to develop and to work on it while you are writing your codes and learning the language I am just developing card game which includes a lot of graphical user interface design but it is nice to code as it has many neat things which you would need to code out.

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : beggining, visual, basic

  1. Mysql In Visual Basic
    Mysql in visual basic (8)
  2. My Guidewriter
    Simple Visual Basic program to aid in making guides (3)
    I wrote this about 3 months ago for a different forum (Runescape Forums, one I'm currently a
    G-Mod of. ) and I figured I'd share it with you. All it is, is a text editor with built in
    buttons and menus for adding BBCodes. For example, if you wanted to make something bold, you type
    what you want, highlight it, find bold in the text menu and click it. The nicest thing is, you
    can save, and you don't have to worry about a forum failing after taking hours to write a guide.
    I highly suggest you try it if you write guides often, the members on RsForums really lo....
  3. Some Visual Basic 6.0 Uncompleted Projects
    (2)
    hi friends, i have some good complete and incomplete projects in visual basic 6.0. and now i
    want to sale them for some credit points. 100 credit points only....
  4. Visual Basic And Internet Transmission
    is it possible to encrypt a http request? (2)
    I've used VB before which is why im asking this in the VB forum and not any other forum because
    i know with any other language other than PHP i have no chance so i dont actually know if this is
    possible with VB WHat i want to do is change a HTTP request that is sent to a server so that a web
    filter cannot understand it and block the request. Before anyone says that i shouldnt do that its
    hacking etc...its not...im only doing it to see if it can be done. if i wanted to get around a
    filter i wouldnt bother making my own tool I'd use someone else (skript kiddy-ish ....
  5. Visual Basic 6
    (5)
    Well currently I have the working model edition for Visual Basic 6.0 which won't allow me to
    make .exe files. I was looking into buying the Learning Edition but I can't find it cheap or in
    stock anywhere. I want to try and find it for under $100 used or new. If anyone has it, and would
    like to make the .exe file for me if I send you the files that would be great, or if anyone could
    help me find it for cheap.....
  6. Visual Basic Express Edition Beta
    How does it work? (2)
    Hey, I'm using (sorta) Visual Basic Express Edition Beta 2 (long name, eh?), but I can't
    find any good tutorials on it; all of them are for visual basic.net... Is this the same thing? I
    don't think so, and if I'm right, where can I go to get help for it?....
  7. Visual Basic 6.0 Help Needed
    Adding lines to a textbox without delete (18)
    I need help with Visual Basic 6.0 and adding lines to a textbox without deleting any previous
    lines.. I've gotten as far as finding a way to add the lines, but it deletes the prevous entree.
    Help is appreciated!....
  8. Free Copy Of Visual Studio.net Pro
    STUDENTS ONLY (11)
    Visit THE SPOKE for your free copy of Visual Studio.NET.....
  9. [tutorial] Visual Basic 6 Minimize To Tray
    Minimize to Tray (9)
    This example will "minimize" your program to the system tray when you click on a button, and restore
    it when you click the system tray icon. For this example you'll need: 1 Form - Form1 1 button -
    Command1 Add a Module to your project, and ad this code: CODE ' Create an Icon in System
    Tray Needs Public Type NOTIFYICONDATA cbSize As Long hwnd As Long uId As Long uFlags As Long
    uCallBackMessage As Long hIcon As Long szTip As String * 64 End Type Public Const NIM_ADD = &H0
    Public Const NIM_MODIFY = &H1 Public Const NIM_DELETE = &H2 Public Const WM_MOUSEMOVE ....
  10. [tutorial] Visual Basic 6 Removing List Duplicates
    Removing List Duplicates (3)
    Removing duplicates from lists is something that you'll have to put up with if you're, say,
    parsing names off Outwar. Many delete-duplicate for...next loops are very slow, especially when you
    have thousands of names to loop through several thousand times for each name on the list. This
    function that I made is, in my opinion, the best and quickest way to do it without too many annoying
    and slow for loops (good for lists 1k +). It compares lstA to lstB. Anything that is in both lists
    is added to lstC. To change it so that anything that isn't in both lists is ....
  11. [tutorial] Visual Basic 6 Downloading Images From A Webpage
    Downloading Images from a webpage (2)
    Here's how to grab an image off the internet easily. You'll need an Inet on your form to do
    this. You can always get rid of your string variables and substitute the actual strings: Code:
    CODE Dim localFile As String Dim remoteFile As String Dim fNum As Long Dim b() As Byte
    remoteFile = "http://www.site.com/image.jpg" localFile = "C:\image.jpg"       fNum = FreeFile b()
    = Inet1.OpenURL(remoteFile, icByteArray) Open localFile For Binary As #fNum Put #fNum, , b() Close
    #fNum MsgBox "Done" Hope this helps. added code bbcode ....

    1. Looking for beggining, visual, basic

Searching Video's for beggining, visual, basic
See Also,
advertisement


Beginning Visual Basic

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com