Need VB6 self-study advice 
Author Message
 Need VB6 self-study advice

Any recommendations for a self-paced VB6 program? On-line or CD would be
great!  Mike


Mon, 01 Apr 2002 03:00:00 GMT  
 Need VB6 self-study advice

Quote:

>Any recommendations for a self-paced VB6 program? On-line or CD would be
>great!  Mike

Yes, I have one question for you--"How do you get to Carnegie Hall?"
The answer is the solution to your question--"Practice!"  You learn
VB6 by *doing* VB6.  Open up the Help and start going through it, step
by step.  Start writing simple programs.  Do stuff like

        1.  Create a new form.  Create a text box on the form (click
        on the control that looks like a white box with "ab" the
        middle of it, then position the cursor somewhere over the
        form, click and drag to draw the textbox into the shape
        and size you desire).,
        2.  Double click the Form--this takes you to the "Code page"
        (the place where you enter code which is attached to the
        form).  Depending on *where* on the form you double-clicked,
        you will either see "Form_Load()" or "Text1_Change()".  If
        you're NOT in "Form_Load()", look at the two combo boxes
        at the top of the code window (the one on the left is called
        the Object combo box, the on on the right is called the
        "Procedures" combo box); click on the left combo box and
        select the "Form" object, then press TAB to go to the
        Procedure combo box and select the "Load" procedure.
    3.  Type the following in the Form_Load procedure (don't type
        in the first or third lines):

       Private Sub Form_Load()
           Text1 = "This is a test"                    
       End Sub
    4. Run the program by pressing F5.  You'll see a text box
       appear on the form with the init9ial value of "This is
       a test".  Congratulations, you've just finished your
       first VB6 program.

There are literally *dozens* of VB programming books at your local
bookstore.  To learn the basics of VB6, I'd recomment either a VB5  or
VB6 programming book.  To learn the basics of Windows programming with
Visual Basic, you can get a book as "far back" as VB 3.0.  

HTH

--- ICQ: 40164792 ----------------------------------------------------

:)             aka Jack Voltz            :)  Web: www.ovnet.com/~voltz
:)      M  A  R  A  N  A  T  H  A  !     :)  Prolife: ./prolife.htm
:)    S i e m p r e  P o r   V i d a !   :)  Music: ./music.htm
;)         Pour la Vie, toujours !       ;)  Y2K: ./y2klinks.htm



Mon, 01 Apr 2002 03:00:00 GMT  
 Need VB6 self-study advice
Thanks for the "heads up" Jack. You're right, there is no substitute for
just doing it. Mike


Quote:


> >Any recommendations for a self-paced VB6 program? On-line or CD would be
> >great!  Mike

> Yes, I have one question for you--"How do you get to Carnegie Hall?"
> The answer is the solution to your question--"Practice!"  You learn
> VB6 by *doing* VB6.  Open up the Help and start going through it, step
> by step.  Start writing simple programs.  Do stuff like

>         1.  Create a new form.  Create a text box on the form (click
>         on the control that looks like a white box with "ab" the
>         middle of it, then position the cursor somewhere over the
>         form, click and drag to draw the textbox into the shape
>         and size you desire).,
>         2.  Double click the Form--this takes you to the "Code page"
>         (the place where you enter code which is attached to the
>         form).  Depending on *where* on the form you double-clicked,
>         you will either see "Form_Load()" or "Text1_Change()".  If
>         you're NOT in "Form_Load()", look at the two combo boxes
>         at the top of the code window (the one on the left is called
>         the Object combo box, the on on the right is called the
>         "Procedures" combo box); click on the left combo box and
>         select the "Form" object, then press TAB to go to the
>         Procedure combo box and select the "Load" procedure.
>     3.  Type the following in the Form_Load procedure (don't type
>         in the first or third lines):

>        Private Sub Form_Load()
>            Text1 = "This is a test"
>        End Sub
>     4. Run the program by pressing F5.  You'll see a text box
>        appear on the form with the init9ial value of "This is
>        a test".  Congratulations, you've just finished your
>        first VB6 program.

> There are literally *dozens* of VB programming books at your local
> bookstore.  To learn the basics of VB6, I'd recomment either a VB5  or
> VB6 programming book.  To learn the basics of Windows programming with
> Visual Basic, you can get a book as "far back" as VB 3.0.

> HTH

> --- ICQ: 40164792 ----------------------------------------------------

> :)             aka Jack Voltz            :)  Web: www.ovnet.com/~voltz
> :)      M  A  R  A  N  A  T  H  A  !     :)  Prolife: ./prolife.htm
> :)    S i e m p r e  P o r   V i d a !   :)  Music: ./music.htm
> ;)         Pour la Vie, toujours !       ;)  Y2K: ./y2klinks.htm



Tue, 02 Apr 2002 03:00:00 GMT  
 Need VB6 self-study advice
But, if you need guidance in doing it, Course Technology puts out a good
textbook that can be used for self paced learning.

---

gnarly



Quote:
> Thanks for the "heads up" Jack. You're right, there is no substitute
for
> just doing it. Mike




> > >Any recommendations for a self-paced VB6 program? On-line or CD
would be
> > >great!  Mike

> > Yes, I have one question for you--"How do you get to Carnegie Hall?"
> > The answer is the solution to your question--"Practice!"  You learn
> > VB6 by *doing* VB6.  Open up the Help and start going through it,
step
> > by step.  Start writing simple programs.  Do stuff like

> >         1.  Create a new form.  Create a text box on the form (click
> >         on the control that looks like a white box with "ab" the
> >         middle of it, then position the cursor somewhere over the
> >         form, click and drag to draw the textbox into the shape
> >         and size you desire).,
> >         2.  Double click the Form--this takes you to the "Code page"
> >         (the place where you enter code which is attached to the
> >         form).  Depending on *where* on the form you double-clicked,
> >         you will either see "Form_Load()" or "Text1_Change()".  If
> >         you're NOT in "Form_Load()", look at the two combo boxes
> >         at the top of the code window (the one on the left is called
> >         the Object combo box, the on on the right is called the
> >         "Procedures" combo box); click on the left combo box and
> >         select the "Form" object, then press TAB to go to the
> >         Procedure combo box and select the "Load" procedure.
> >     3.  Type the following in the Form_Load procedure (don't type
> >         in the first or third lines):

> >        Private Sub Form_Load()
> >            Text1 = "This is a test"
> >        End Sub
> >     4. Run the program by pressing F5.  You'll see a text box
> >        appear on the form with the init9ial value of "This is
> >        a test".  Congratulations, you've just finished your
> >        first VB6 program.

> > There are literally *dozens* of VB programming books at your local
> > bookstore.  To learn the basics of VB6, I'd recomment either a VB5
or
> > VB6 programming book.  To learn the basics of Windows programming
with
> > Visual Basic, you can get a book as "far back" as VB 3.0.

> > HTH

> > --- ICQ: 40164792

----------------------------------------------------
Quote:

> > :)             aka Jack Voltz            :)  Web:

www.ovnet.com/~voltz

Quote:
> > :)      M  A  R  A  N  A  T  H  A  !     :)  Prolife: ./prolife.htm
> > :)    S i e m p r e  P o r   V i d a !   :)  Music: ./music.htm
> > ;)         Pour la Vie, toujours !       ;)  Y2K: ./y2klinks.htm

--
Gnarly

Sent via Deja.com http://www.deja.com/
Before you buy.



Wed, 03 Apr 2002 03:00:00 GMT  
 Need VB6 self-study advice
also, www.mcp.com has a personal bookshelf with some vb6 books in it.
Quote:

> But, if you need guidance in doing it, Course Technology puts out a good
> textbook that can be used for self paced learning.

> ---

> gnarly



> > Thanks for the "heads up" Jack. You're right, there is no substitute
> for
> > just doing it. Mike




> > > >Any recommendations for a self-paced VB6 program? On-line or CD
> would be
> > > >great!  Mike

> > > Yes, I have one question for you--"How do you get to Carnegie Hall?"
> > > The answer is the solution to your question--"Practice!"  You learn
> > > VB6 by *doing* VB6.  Open up the Help and start going through it,
> step
> > > by step.  Start writing simple programs.  Do stuff like

> > >         1.  Create a new form.  Create a text box on the form (click
> > >         on the control that looks like a white box with "ab" the
> > >         middle of it, then position the cursor somewhere over the
> > >         form, click and drag to draw the textbox into the shape
> > >         and size you desire).,
> > >         2.  Double click the Form--this takes you to the "Code page"
> > >         (the place where you enter code which is attached to the
> > >         form).  Depending on *where* on the form you double-clicked,
> > >         you will either see "Form_Load()" or "Text1_Change()".  If
> > >         you're NOT in "Form_Load()", look at the two combo boxes
> > >         at the top of the code window (the one on the left is called
> > >         the Object combo box, the on on the right is called the
> > >         "Procedures" combo box); click on the left combo box and
> > >         select the "Form" object, then press TAB to go to the
> > >         Procedure combo box and select the "Load" procedure.
> > >     3.  Type the following in the Form_Load procedure (don't type
> > >         in the first or third lines):

> > >        Private Sub Form_Load()
> > >            Text1 = "This is a test"
> > >        End Sub
> > >     4. Run the program by pressing F5.  You'll see a text box
> > >        appear on the form with the init9ial value of "This is
> > >        a test".  Congratulations, you've just finished your
> > >        first VB6 program.

> > > There are literally *dozens* of VB programming books at your local
> > > bookstore.  To learn the basics of VB6, I'd recomment either a VB5
> or
> > > VB6 programming book.  To learn the basics of Windows programming
> with
> > > Visual Basic, you can get a book as "far back" as VB 3.0.

> > > HTH

> > > --- ICQ: 40164792
> ----------------------------------------------------

> > > :)             aka Jack Voltz            :)  Web:
> www.ovnet.com/~voltz
> > > :)      M  A  R  A  N  A  T  H  A  !     :)  Prolife: ./prolife.htm
> > > :)    S i e m p r e  P o r   V i d a !   :)  Music: ./music.htm
> > > ;)         Pour la Vie, toujours !       ;)  Y2K: ./y2klinks.htm

> --
> Gnarly

> Sent via Deja.com http://www.deja.com/
> Before you buy.



Sun, 14 Apr 2002 03:00:00 GMT  
 
 [ 5 post ] 

 Relevant Pages 

1. Self Study or Classes???

2. MCSD Self study kits

3. WTB: SELF-STUDY KITS for Vbasic 5.0

4. What book is best for VB5 self-study?

5. MCSD prep: self-study vendors??

6. Microsoft Certified Solution Developer Study Guide Advice

7. VB6 MCSD Advice needed..

8. Please help...Need advice how to do a screensaver with VB6

9. *** New to VB6, need some advice. ***

10. OPC 2.0 in VB6 - advice needed

11. Need advice on Security - VB6 ADO 2.5 - jet 4

12. need advice on reporting tools for VB6

 

 
Powered by phpBB® Forum Software