CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: CHECK BOXES

  1. #1
    Join Date
    Jan 2000
    Posts
    6

    CHECK BOXES

    I'M NEW TO VISUAL BASIC, I HAVE A FORM WITH 12 CHECK BOXES NUMBERED 1 - 12 I NEED A RESULT BOX TO DISPLAY WHICH NUMBERS I HAVE CLICKED AND A WAY TO STORE THESE RESULTS CAN SOMEONE HELP ME


  2. #2
    Join Date
    Dec 1999
    Posts
    20

    Re: CHECK BOXES

    if the check box name is check1, then check1.value =1 meanse it is checked.
    check1.value = 0 means it is not checked.

    build your logic, based on this.



  3. #3
    Join Date
    Jun 1999
    Location
    Atlanta, GA USA
    Posts
    344

    Re: CHECK BOXES

    I've moved this thread to the VB forum. Please direct your VB questions here.

    Cheers,
    Tom Archer
    Web Master - CodeGuru

    ------
    Tom Archer, Archer Consulting Group Inc.
    Author - Inside C#, Visual C++.NET Bible, Extending MFC Apps with .NET
    http://www.ArcherConsultingGroup.com
    Consulting * Training * Custom Development * Enterprise Solutions

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured