Results 1 to 6 of 6

Thread: new to VB

  1. #1

    Thread Starter
    New Member
    Join Date
    Nov 2002
    Posts
    2

    new to VB

    hI! i'm a convert. i was programming java recently and i like to learn vb. can somebody help me try to find some ebook link on the internet, which is free to download.

  2. #2
    Hyperactive Member
    Join Date
    Sep 2001
    Location
    Europe
    Posts
    289
    Why would you convert to VB from Java. I'm trying to find time to do the reverse although I did do a lot of Java in the early days. Java pays better. Other than that, your best bet is to use the MSDN CD as there is a good tutorial on it.

  3. #3
    New Member
    Join Date
    Nov 2002
    Location
    Egypt, Africa, Earth, MilkyWay Galaxy
    Posts
    15
    try this book it's very good.
    Visual Basic 6 for MCSD Exams
    Download the file it's 10 MB, it's a Zip file use the classic WinZip to exract the pdf file.
    The book is very good it preapre you for the MCSD exam.
    MCSD is Microsoft Certified Solution Developer in case you don't know.
    May GOD give us the wisdom to know the right, The will to choose it and the strength to make it last....

    King Arthur of Camelot

  4. #4
    Junior Member
    Join Date
    Oct 2002
    Location
    Kansas
    Posts
    20

    Thumbs down

    I'd be careful with it though. I downloaded it and found errors in less than 5 minutes.

    You can use the ListImages Collection to loop through all the
    images in the list. If you wanted to display all the stored images in a
    PictureBox, one after another, you could use the code of Listing 4.1.
    LISTING 4.1
    LOOPING THROUGH THE IMAGES IN AN IMAGELIST
    CONTROL
    VB Code:
    1. Dim picImage as ListImage
    2. For Each picImage in ImageListImageList1.ListImages
    3. Picture1.Picture = picImage.Picture
    4. Next

    Then, after fixing it to this:
    VB Code:
    1. Dim picImage As ListImage
    2. For Each picImage In ImageList1.ListImages
    3. Picture1.Picture = picImage.Picture
    4. Next

    It still doesn't work.
    Last edited by IanL; Nov 23rd, 2002 at 06:11 PM.

  5. #5
    New Member
    Join Date
    Nov 2002
    Location
    Egypt, Africa, Earth, MilkyWay Galaxy
    Posts
    15

    WHAT IS THAT

    I want to know what is that all got to do with free books for Visual Basic......
    IanL, please explain

    Lanclot
    May GOD give us the wisdom to know the right, The will to choose it and the strength to make it last....

    King Arthur of Camelot

  6. #6
    Hyperactive Member Blinky Bill's Avatar
    Join Date
    Mar 2002
    Location
    Happily munching on the greenery in your garden
    Posts
    349
    He's saying be careful with the book because it contains mistakes in the code examples.
    We don't know what's wrong. . . So the best bet might be to remove something surgically.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width