PDA

View Full Version : help with Visual Basics please



scott_pd
04-19-2005, 10:22 AM
im using Visual Basics 6.0

currently at college i am trying to create a programme that allows a user to order pizza's online (the programme doesnt have to be online thats just what the programme was meant for) and this is my first VB project. so i was wondering if i could get some coding help.

i need to learn about variables and linking, and 1 problem that is bugging me alot is i have a command button that i need to use that cleans the whole programme (i have 43 check boxes and when i press this button it dis-selects all of them) but i dont know how to code it. i would apreciate any help thank you.

thedazman
04-19-2005, 05:31 PM
to be honest, i dont think many of the users here are programmers, but i could be wrong coz im new here myself.

try asking your question here (http://www.vbforums.com/)


Anyway, its not good practice getting others to do college work for you, as you wont learn. You should post some of the code you have already written, and then people could help you with what you already have. That way youre learning as well.

And sorry i cant help any more as i know nothing bout programming :wacko:

scott_pd
04-20-2005, 08:25 AM
i wouldnt of asked if i could do it myself, and all im asking is for a little help...it is what the internets for afterall.

backlash
04-21-2005, 06:18 PM
why would they give u an assignment you couldn't do? is this a visual basic class?

lightshow
04-21-2005, 10:59 PM
O man, I know VB, did it about 4 years ago. Hmm.

Go to planetsourcecode.com and either use their forums in the VB section, or look for an application that is similiar, so you can look at their code.

I know its simple. It has something to do with declaring the check box "unchecked" but I don't remember the exact terminiology for that function.

nelliboi
04-24-2005, 08:37 PM
If u r having too many checkboxes u may create checkboxes in control array.
Else the code will be like this

Private Sub Command1_Click()
Check1.Value = Unchecked
Check2.Value = Unchecked
Check3.Value = Unchecked
Check4.Value = Unchecked
End Sub

Check this site. Here u will get lot of VB Links

http://www.vb-links.com/code1.htm

You can also download VB api guide from here. Very Useful

http://www.mentalis.org/agnet/apiguide.shtml

Best Wishes to you

lightshow
04-27-2005, 01:28 AM
ah yeah! that's what it was