home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 2003 August
/
VPR0308.ISO
/
ADOBEREADER60
/
Installer
/
Data1.cab
/
PPKLite.JPN
/
EXVW
/
20104
< prev
next >
Wrap
Text File
|
2003-05-21
|
1KB
|
30 lines
gMaxLabelWidth = max(
zstring_width(zstring: '$$$/Dialogs/Logon/path'),
zstring_width(zstring: '$$$/Dialogs/Logon/PwdText') );
gMaxButtonWidth = 25 + max(
zstring_width(zstring: '$$$/Dialogs/Logon/NewUserButton'),
zstring_width(zstring: '$$$/Dialogs/Logon/FindProfileButton') );
gMinEditWidth = max_char_width() * 10;
dialog(name: '$$$/Dialogs/Logon', target_id: 'Pwd ')
{
view(align_children: align_left, alignment: align_fill)
{
static_text(item_id: 'Note', alignment: align_fill, name: '$$$/Dialogs/Logon/Note');
view(align_children: align_row, alignment: align_fill)
{
static_text(item_id: 'PopT', name: '$$$/Dialogs/Logon/Path', width: gMaxLabelWidth, alignment: align_right);
popup(item_id: 'pop ', width: gMinEditWidth);
button(item_id: 'FndP', name: '$$$/Dialogs/Logon/FindProfileButton', width: gMaxButtonWidth);
}
view(align_children: align_row, alignment: align_fill)
{
static_text(item_id: 'PwdT', name: '$$$/Dialogs/Logon/PwdText', width: gMaxLabelWidth, alignment: align_right);
edit_text(item_id: 'Pwd ', password: true, alignment: align_fill);
button(item_id: 'NewP', name: '$$$/Dialogs/Logon/NewUserButton', width: gMaxButtonWidth);
}
gap( height: 5 );
ok_cancel();
}
}