CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 1999
    Posts
    1

    checkbox question



    please give me the vb code that will make a checkbox called "resolve issue" set to true.

  2. #2
    Join Date
    May 1999
    Location
    Oxford UK
    Posts
    1,459

    Re: checkbox question



    Hi


    Add a check box to your form called check1 and try the following :


    With Check1

    .Caption = "Resolve Issue"

    .Value = vbChecked

    End With



    Is this what you meant ?


    Regards


    Chris Eastwood

    Software Engineer

    ACNielsen Ltd


    CodeGuru - the website for developers

    http://www.codeguru.com

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