F
fiot
ни кто не знает,
не коректно отображается битмап ?
Код:
CheckListBox := TNewCheckListBox.Create(Page);
CheckListBox.Width := Page.SurfaceWidth;
CheckListBox.Height := Page.SurfaceHeight;
CheckListBox.Flat := True;
CheckListBox.Parent := Page.Surface;
CheckListBox.AddCheckBox('GUI', '', 0, True, True, False, True, nil);
CheckListBox.AddCheckBox(' Windows Explorer', '', 1, False, True, False, True, nil);
CheckListBox.AddCheckBox(' Outlook', '', 1, True, True, False, True, nil);
CheckListBox.AddCheckBox(' Web Interface', '', 1, True, True, False, True, nil);
CheckListBox.AddCheckBox('Server', '', 0, True, True, False, True, nil);
CheckListBox.AddCheckBox('cFolders', '', 1, False, True, False, True, nil);
CheckListBox.AddCheckBox('DMS', '', 1, True, True, False, True, nil);
CheckListBox.AddCheckBox('CRM', '', 1, True, True, False, True, nil);
webInterfaceName := ExpandConstant('{tmp}\web.interface.bmp');
ExtractTemporaryFile(ExtractFileName(webInterfaceName));
webInterface := TBitmapImage.Create(Page);
webInterface.AutoSize := True;
webInterface.Bitmap.LoadFromFile(webInterfaceName);
webInterface.Parent := MainForm;
webInterface.left := 42;
webInterface.top := 48;