source: branches/Transpascal/Forms/UMessagesForm.lfm@ 71

Last change on this file since 71 was 69, checked in by george, 15 years ago
  • Modified: Error messsage window reworked to use TListView instead of ListBox.
  • Fixed: Focusing caret to position of error message source in code.
  • Fixed: Loading other units during parsing.
File size: 906 bytes
Line 
1object MessagesForm: TMessagesForm
2 Left = 530
3 Height = 240
4 Top = 231
5 Width = 320
6 Caption = 'Messages'
7 ClientHeight = 240
8 ClientWidth = 320
9 LCLVersion = '0.9.29'
10 object ListView1: TListView
11 Left = 0
12 Height = 240
13 Top = 0
14 Width = 320
15 Align = alClient
16 Columns = <
17 item
18 Caption = 'File'
19 Width = 80
20 end
21 item
22 Caption = 'Position'
23 end
24 item
25 Caption = 'Message'
26 Width = 500
27 end>
28 ItemIndex = -1
29 OwnerData = True
30 ReadOnly = True
31 RowSelect = True
32 TabOrder = 0
33 ViewStyle = vsReport
34 OnClick = ListView1Click
35 OnData = ListView1Data
36 OnSelectItem = ListView1SelectItem
37 end
38 object CoolDockClient1: TCoolDockClient
39 Floatable = False
40 Master = MainForm.CoolDockMaster1
41 left = 76
42 top = 71
43 end
44end
Note: See TracBrowser for help on using the repository browser.