|
97 Как сделать штуку типа MessageBox, но с TEdit-ом?
1 способ
TFormWithEdit* FormWithEdit = 0;
try
{
FormWithEdit = new TFormWithEdit(this);
if ( FormWithEdit->ShowModal() == mrOK )
{
m_MyVar = FormWithEdit->m_PublicVar
}
}
__finally
{
delete FormWithEdit;
}
Alexander Nemtsov 2:5036/41.23
2 способ
Самое пpостое - InputBox. Вот пpимеp.
#include <Dialogs.hpp>
void __fastcall TForm1::Button1Click(TObject *Sender)
{
AnsiString InputString = InputBox("Input Box", "Prompt", "Default string");
}
Stas Shkodkin 2:6023/1.91
Предыдущий вопрос
|
|
Следующий вопрос
источник
by jenyok
|
|
|