I wonder if you could help.
The event handler code below, will allow the user to change the phone number
and write it on a label of a message box. I want to replace the message box
with a dialog box.
Can anybody help me replace the message box below to a dialog box. In other
words. I want to write the new phone number on a label (named "labe1")of a
dialog box (named "dialog2),instead of writing the new phone number on the
label of a message box.
private: System::Void dialogBtnItem_Click(System::Object * sender,
System::EventArgs * e)
{
// Create the dialog
MyDialog* box = new MyDialog();
//Fill in the initial data
box->Phone = S"(650)123-3456)"; // <------ This is the phone number to be
changed
//Show dialog
if (box->ShowDialog() == DialogResult::OK)
{
MessageBox::Show(box->Phone); //<-----I tried to change this line
}
}formw
G Himangi - 02 May 2007 05:24 GMT
SImply intiailize the label in the dialog box and then show it as follows :
OtherDialog* other= new OtherDialog();
other->label = box->Phone;
other->ShowDialog();
---------
- G Himangi, Sky Software http://www.ssware.com
Shell MegaPack : GUI Controls For Drop-In Windows Explorer like Shell
Browsing Functionality For Your App (.Net & ActiveX Editions).
EZNamespaceExtensions.Net : Develop namespace extensions rapidly in .Net
EZShellExtensions.Net : Develop all shell extensions,explorer bars and BHOs
rapidly in .Net
---------
>I wonder if you could help.
>
[quoted text clipped - 32 lines]
>
> }formw