Thread: a few questions

  1. #1
    Registered User
    Join Date
    Jan 2002
    Posts
    1

    Talking a few questions

    hey, ive just got a few simple questions for ya.
    Im looking at doing up a nice interface for an old program i have and im just wondering how do I?
    1. Reset a checkbox
    2. open up a new window from an existing one, ie/ when a user clicks on a button, open up say a window to input data

    I think thats bout all i got. thanx for ya help
    Sean

  2. #2
    Just one more wrong move. -KEN-'s Avatar
    Join Date
    Aug 2001
    Posts
    3,227
    1. I don't know, but I'm sure there's CheckBox.SetValue() or CheckBox.Value(), etc. which you could use. Look around the class.


    2.:
    Code:
    class Window : Form
    {
        ....
    }
    
    Button1_Click(...)
    {
        Application.Run(new Window())
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. questions....so many questions about random numbers....
    By face_master in forum C++ Programming
    Replies: 2
    Last Post: 07-30-2009, 08:47 AM
  2. A very long list of questions... maybe to long...
    By Ravens'sWrath in forum C Programming
    Replies: 16
    Last Post: 05-16-2007, 05:36 AM
  3. Several Questions, main one is about protected memory
    By Tron 9000 in forum C Programming
    Replies: 3
    Last Post: 06-02-2005, 07:42 AM
  4. Trivial questions - what to do?
    By Aerie in forum A Brief History of Cprogramming.com
    Replies: 23
    Last Post: 12-26-2004, 09:44 AM
  5. questions questions questions.....
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 1
    Last Post: 08-14-2001, 07:22 AM