SCHOOL PROJECT 
Author Message
 SCHOOL PROJECT

I am starting a school project and I have to make a progrma with a
programming language and I am going to use Visual Basic 5 (learning
edition)
it doesnt have to be too fancy does anyone have any tips for me. I have the
visual basic in 21 days book  but I need some tips of so people that have
had hands on experience
thanks heaps
Kris!



Mon, 24 Jul 2000 03:00:00 GMT  
 SCHOOL PROJECT

Maybe a simple database-app for storing the adresses and phonenumbers of
your friends?

Andre'

Quote:

>I am starting a school project and I have to make a progrma with a
>programming language and I am going to use Visual basic 5 (learning
>edition)
>it doesnt have to be too fancy does anyone have any tips for me. I have the
>visual basic in 21 days book  but I need some tips of so people that have
>had hands on experience
>thanks heaps
>Kris!



Mon, 24 Jul 2000 03:00:00 GMT  
 SCHOOL PROJECT

You have the right book.  All the SAMS books are pretty good, especially if you
are just starting.  I would also suggest that you do something related to a
database.  It is not difficult and VB 5 handles it with ease.

Quote:

> I am starting a school project and I have to make a progrma with a
> programming language and I am going to use Visual basic 5 (learning
> edition)
> it doesnt have to be too fancy does anyone have any tips for me. I have the
> visual basic in 21 days book  but I need some tips of so people that have
> had hands on experience
> thanks heaps
> Kris!



Mon, 24 Jul 2000 03:00:00 GMT  
 SCHOOL PROJECT

What is your assignment?  Will you have to create EXEs or merely the
source code.  If you have to compile code (turn it into EXEs) be careful
when working with the learning edition.  It does not allow you to
compile code with CreateDatabase and it may not allow you to compile code
that directly accesses database (I think that you have to go through the
database control).  You can get around this by creating the database
(with empty tables) with MS Access and then merely adding or removing
records.  
If you
        1) plan on doing considerable programming in VB in the future
        2) are going to be a student for many years
        2) purchased the learning edition
        3) can return it for a refund

then you should consider returning the learning edition and
purchasing the Student Edition.  It cost significantly more (about
$100) and it is not upgradable, but it has all the features of VB5Pro and
some come bundled with Windows NT4.

: You have the right book.  All the SAMS books are pretty good, especially if you
: are just starting.  I would also suggest that you do something related to a
: database.  It is not difficult and VB 5 handles it with ease.

: > I am starting a school project and I have to make a progrma with a
: > programming language and I am going to use Visual basic 5 (learning
: > edition)
: > it doesnt have to be too fancy does anyone have any tips for me. I have the
: > visual basic in 21 days book  but I need some tips of so people that have
: > had hands on experience
: > thanks heaps
: > Kris!

--
---=====-----=====-----=====-----=====-----======-----=====-----=====-----===

                |  http://www.sas.upenn.edu/~dholzer/  |
                |      University of Pennsylvania      |
                |______________________________________|



Mon, 24 Jul 2000 03:00:00 GMT  
 SCHOOL PROJECT

The following web sites have lots of tips and tutorials as
well as links to tons of other VB-related sites:

   http://pi1438.kub.nl:2080/VisualBasicSource/

   http://users.aol.com/vb4uandme/index.htm

The first is in the Netherlands but has a English version.  It is
operated by a frequent respondent to this and other VB
newgroups

The second is not as heavy-duty, but has good stuff for newbies.
Good tips and tutorials written in understandable terms.  VB4U and ME
also has a good message board for posting questions like yours.

Hth,

Bob Walsh

Quote:

> > I am starting a school project and I have to make a progrma with a
> > programming language and I am going to use Visual basic 5 (learning
> > edition)
> > it doesnt have to be too fancy does anyone have any tips for me. I have
the
> > visual basic in 21 days book  but I need some tips of so people that
have
> > had hands on experience
> > thanks heaps
> > Kris!



Mon, 24 Jul 2000 03:00:00 GMT  
 SCHOOL PROJECT

Quote:

> You have the right book.  All the SAMS books are pretty good, especially if you
> are just starting.  I would also suggest that you do something related to a
> database.  It is not difficult and VB 5 handles it with ease.


> > I am starting a school project and I have to make a progrma with a
> > programming language and I am going to use Visual basic 5 (learning
> > edition)
> > it doesnt have to be too fancy does anyone have any tips for me. I have the
> > visual basic in 21 days book  but I need some tips of so people that have
> > had hands on experience
> > thanks heaps
> > Kris!

Learn about the data control, the grid control and about tables.
You can use Access to create the database. It can be done in hours.

Fox



Sun, 06 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

Quote:

>   i know this is stuppid and it is probably easy but could you help any ways

i am having problems with an if statements  ever time i try to run it and press
a button it says prorgram errors out ihave it wrote like this

if (m_TextEdit== True )

MessageBox (m_TextEdit);

else

MessageBox("Enter Text Here");




Tue, 08 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

Quote:

>   i know this is stuppid and it is probably easy but could you help any ways

i am having problems with an if statements  ever time i try to run it and press
a button it says prorgram errors out ihave it wrote like this

if (m_TextEdit== True )

MessageBox (m_TextEdit);

else

MessageBox("Enter Text Here");




Tue, 08 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

Quote:

>   i know this is stuppid and it is probably easy but could you help any ways

i am having problems with an if statements  ever time i try to run it and press
a button it says prorgram errors out ihave it wrote like this

if (m_TextEdit== True )

MessageBox (m_TextEdit);

else

MessageBox("Enter Text Here");




Tue, 08 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

Quote:

>   i know this is stuppid and it is probably easy but could you help any ways

i am having problems with an if statements  ever time i try to run it and press
a button it says prorgram errors out ihave it wrote like this

if (m_TextEdit== True )

MessageBox (m_TextEdit);

else

MessageBox("Enter Text Here");




Tue, 08 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

VB only uses one =

--
############################################
# Niels Andersen
# http://users.{*filter*}city.dk/~dko2897/

# to respond directly, remove NOSPAM
############################################



Wed, 09 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

Try this.  You need a space after m_TextEdit and also, your then statement
was missing.  I dont know if it will help.  What version of vb do you have.
I use 5.0, it is really sweet.
Bill

if (m_TextEdit == True ) then

    MessageBox (m_TextEdit);

else

    MessageBox("Enter Text Here");

Quote:


>>   i know this is stuppid and it is probably easy but could you help any
ways

>i am having problems with an if statements  ever time i try to run it and
press
>a button it says prorgram errors out ihave it wrote like this

>if (m_TextEdit== True )

>MessageBox (m_TextEdit);

>else

>MessageBox("Enter Text Here");





Wed, 09 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT

The correct BASIC syntax is

   IF (m_TextEdit= True ) then
     MessageBox  m_TextEdit
  ELSE
     MessageBox("Enter Text Here")
  END IF

Quote:


>>   i know this is stuppid and it is probably easy but could you help any
ways

>i am having problems with an if statements  ever time i try to run it and
press
>a button it says prorgram errors out ihave it wrote like this

>if (m_TextEdit== True )

>MessageBox (m_TextEdit);

>else

>MessageBox("Enter Text Here");





Wed, 09 Aug 2000 03:00:00 GMT  
 SCHOOL PROJECT



You are using Vb not C.
It should be:  if (m_TextEdit = True )
Assingment and comparisons both default to the single =  operator in
VB.

Cheers
Alex



Sat, 12 Aug 2000 03:00:00 GMT  
 
 [ 16 post ]  Go to page: [1] [2]

 Relevant Pages 

1. School project help in vb

2. school project need help now

3. Need Help on a school project

4. Pleeeeaaase Help... School Project Due

5. school project in VB6

6. SCHOOL PROJECT

7. Urgent Help needed for School Project!!

8. School project help in vb

9. school project ... help

10. Database App - School Project

11. project for school

12. Any ideas for a high school VB project which highlights the features of VB

 

 
Powered by phpBB® Forum Software