CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 2010
    Posts
    3

    After a Simple VS GUI tutorial

    Im using Visual C++ 2005.

    I have finished a 6 month java course and about to start a 6 month c++ course.

    To get a head start on GUI, im after an example/tutorial for a simple gui that has:

    1. window
    2. input box
    3. botton
    4. label

    I will also need an example of an event handler to handle what ever is typed into the inputbox to be displayed in the label when the button is clicked.

    So far i have found very little on the net. What i have found relates to visual 6.0 and qt. Both of which i have no use for.

    Again im using Visual C++ 2005, so im not interested in non VS C++ products or compliers.

    Thanks in Advnace.

    PS: this isnt for homework either.

  2. #2
    Join Date
    Jul 2010
    Posts
    3

    Re: After a Simple VS GUI tutorial

    Solved

    I just jumped in. started a CLR forms project and started draging and dropping controls onto a form.

    I then double clicked on the button and took a punt and typed this line:

    label1->Text = textBox1->Text

    Compiled then run debug. It worked.

    However, i wouldnt mind URL's to CLR Win Form tutorials. Ive spent days searching form them and only found a clickcounter which wasnt that helpful.

  3. #3
    Join Date
    Feb 2003
    Location
    Iasi - Romania
    Posts
    8,244

    Re: After a Simple VS GUI tutorial

    [ Moved thread ]

  4. #4
    Join Date
    Aug 2010
    Posts
    51

    Smile Re: After a Simple VS GUI tutorial

    hi,

    i wouldnt mind URL's to CLR Win Form tutorials. Ive spent days searching form them and only found a clickcounter which wasnt that helpful.



    regards,
    phe9oxis,
    http://www.guidebuddha.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