home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 September (Special)
/
Chip-Special_2004-09_Digitalni-Hudba.bin
/
servis
/
reader
/
Data1.cab
/
RdLang32.CZE
/
EXVW
/
10020
< prev
next >
Wrap
Text File
|
2003-07-19
|
845b
|
27 lines
gPasswordLabelWidth = zstring_width(zstring: '$$$avSecurityOpenPasswordLabel') + max_char_width() * 2;
gPasswordWidth = max_char_width() * 12;
gMsgWidth = gPasswordLabelWidth + gPasswordWidth + max_char_width() * 5;
dialog( name: '$$$/Dialogs/Password' )
{
group()
{
view( align_children: align_top )
{
picture(item_id: 'icon', width: 32, height: 32);
view( align_children: align_left )
{
static_text(item_id: 'msg ', width: gMsgWidth, alignment: align_fill);
static_text(item_id: 'msg2', width: gMsgWidth, alignment: align_fill);
view( align_children: align_row )
{
static_text(item_id : 'plbl', alignment: align_right, width: gPasswordLabelWidth);
edit_text(item_id: 'pswd', alignment: align_left, width: gPasswordWidth, password: true);
}
}
}
ok_cancel();
}
}