Click here to Skip to main content
15,915,160 members
Home / Discussions / Windows Forms
   

Windows Forms

 
AnswerRe: Round Corner Shaped Form? Pin
BAGYIPHONEGYI21-Sep-08 1:03
BAGYIPHONEGYI21-Sep-08 1:03 
Questionhow to get virtual ip address in c# Pin
gargagan18-Sep-08 18:32
gargagan18-Sep-08 18:32 
AnswerRe: how to get virtual ip address in c# Pin
Paul Conrad21-Sep-08 7:34
professionalPaul Conrad21-Sep-08 7:34 
QuestionFunction IIF in VB.net Pin
tungcan5diop17-Sep-08 21:57
tungcan5diop17-Sep-08 21:57 
AnswerRe: Function IIF in VB.net Pin
Mycroft Holmes17-Sep-08 22:32
professionalMycroft Holmes17-Sep-08 22:32 
AnswerRe: Function IIF in VB.net Pin
Paul Conrad18-Sep-08 6:44
professionalPaul Conrad18-Sep-08 6:44 
JokeRe: Function IIF in VB.net Pin
AlexeiXX319-Sep-08 8:00
AlexeiXX319-Sep-08 8:00 
GeneralRe: Function IIF in VB.net Pin
Paul Conrad19-Sep-08 8:37
professionalPaul Conrad19-Sep-08 8:37 
GeneralRe: Function IIF in VB.net Pin
AlexeiXX319-Sep-08 10:27
AlexeiXX319-Sep-08 10:27 
GeneralRe: Function IIF in VB.net Pin
Gideon Engelberth23-Sep-08 3:34
Gideon Engelberth23-Sep-08 3:34 
GeneralRe: Function IIF in VB.net Pin
AlexeiXX323-Sep-08 7:54
AlexeiXX323-Sep-08 7:54 
AnswerRe: Function IIF in VB.net Pin
AlexeiXX319-Sep-08 10:30
AlexeiXX319-Sep-08 10:30 
GeneralRe: Function IIF in VB.net Pin
tungcan5diop22-Sep-08 22:15
tungcan5diop22-Sep-08 22:15 
QuestionDataGrid likes delphi's TDBCTRLGRID Pin
Mr.LMC17-Sep-08 21:01
Mr.LMC17-Sep-08 21:01 
AnswerRe: DataGrid likes delphi's TDBCTRLGRID Pin
boodi_8112-Oct-09 3:25
boodi_8112-Oct-09 3:25 
QuestionRecommendations for a good syntax coloring text box? Pin
Mike Ellison17-Sep-08 5:54
Mike Ellison17-Sep-08 5:54 
AnswerRe: Recommendations for a good syntax coloring text box? Pin
Aflava21-Sep-08 6:17
Aflava21-Sep-08 6:17 
QuestionDataGridView Header Pin
Kit Fisto16-Sep-08 7:04
Kit Fisto16-Sep-08 7:04 
AnswerRe: DataGridView Header Pin
John_Adams17-Sep-08 8:38
John_Adams17-Sep-08 8:38 
QuestionMouse Tracking Problems Pin
frappydan14-Sep-08 20:25
frappydan14-Sep-08 20:25 
Questionwindows forms in general Pin
toprogramminguy14-Sep-08 6:45
toprogramminguy14-Sep-08 6:45 
AnswerRe: windows forms in general Pin
Ajay.k_Singh14-Sep-08 23:01
Ajay.k_Singh14-Sep-08 23:01 
Form1.h represents your Form1 (which is a class Form1 derived from System::Windows::Forms::Form), and contains code related to it. We can declare out objects and controls here.

Just to give you an idea, following is a small code snippet which takes number from two textboxes (which are already on form1) and after adding these numbers, shows sum in a message box. –
-------------------------------------
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {

int i;


i=System::Convert::ToInt32( this->textBox1->Text);

i +=System::Convert::ToInt32( this->textBox1->Text) ;

System::Windows::Forms::MessageBox::Show("Sum : "+i.ToString() );

}
-----------------------------------------

As you want to get books on Visual C++, I would advice you to search on google.

-Dave.

------------------------------------
http://www.componentone.com
------------------------------------

GeneralRe: windows forms in general Pin
toprogramminguy16-Sep-08 8:56
toprogramminguy16-Sep-08 8:56 
GeneralRe: windows forms in general Pin
Ajay.k_Singh16-Sep-08 20:24
Ajay.k_Singh16-Sep-08 20:24 
GeneralRe: windows forms in general Pin
toprogramminguy17-Sep-08 10:25
toprogramminguy17-Sep-08 10:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.