Results 1 to 7 of 7

Thread: help with Visual Basics please

  1. #1
    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.

  2. Software & Hardware   -   #2
    thedazman's Avatar WaReZeR
    Join Date
    Apr 2005
    Location
    UK
    Age
    39
    Posts
    56
    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
    Last edited by thedazman; 04-19-2005 at 05:33 PM.

  3. Software & Hardware   -   #3
    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.

  4. Software & Hardware   -   #4
    backlash's Avatar usenet lover
    Join Date
    Aug 2003
    Location
    in your dreams
    Posts
    1,579
    why would they give u an assignment you couldn't do? is this a visual basic class?

  5. Software & Hardware   -   #5
    lightshow's Avatar Asleep at the wheel
    Join Date
    Mar 2003
    Age
    39
    Posts
    902
    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.
    I miss the days of random nut '03
    Click for more activation options, then activate by telephone. Run the keygen.
    if I call them, aren't they going to get me? (you know, down there)

  6. Software & Hardware   -   #6
    nelliboi
    Guest
    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

  7. Software & Hardware   -   #7
    lightshow's Avatar Asleep at the wheel
    Join Date
    Mar 2003
    Age
    39
    Posts
    902
    ah yeah! that's what it was
    I miss the days of random nut '03
    Click for more activation options, then activate by telephone. Run the keygen.
    if I call them, aren't they going to get me? (you know, down there)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •