View Single Post
Old 10-02-2004, 11:17 PM   #2 (permalink)
Mavric98
Tilted
 
Location: I am not living.
A vb program does not need to have a form in it. All you need is module with a sub main function in it. To have your program boot from the sub main funtion click on project then select <project> properties. A window will open and in the genereal tab there will be something that says startup object. Set that to be sub main.

This may sound confusing, but I don't know an esay way to explain it. In your book look into modules and the sub main function. With understanding of those things you can program in vb like it was just some structured language.
__________________
"Hope is for people that don't stand a chance."
Mavric98 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76