help with Visual Basics please
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.
Re: help with Visual Basics please
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
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:
Re: help with Visual Basics please
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.
Re: help with Visual Basics please
why would they give u an assignment you couldn't do? is this a visual basic class?
Re: help with Visual Basics please
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.
Re: help with Visual Basics please
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
Code:
http://www.vb-links.com/code1.htm
You can also download VB api guide from here. Very Useful
Code:
http://www.mentalis.org/agnet/apiguide.shtml
Best Wishes to you
Re: help with Visual Basics please
ah yeah! that's what it was