Ignore:
Timestamp:
Oct 19, 2010, 7:19:53 AM (14 years ago)
Author:
george
Message:
  • 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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Transpascal/Forms/UMessagesForm.lfm

    r64 r69  
    88  ClientWidth = 320
    99  LCLVersion = '0.9.29'
    10   object ListBoxMessages: TListBox
     10  object ListView1: TListView
    1111    Left = 0
    1212    Height = 240
     
    1414    Width = 320
    1515    Align = alClient
    16     ItemHeight = 0
    17     OnSelectionChange = ListBoxMessagesSelectionChange
     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
    1832    TabOrder = 0
     33    ViewStyle = vsReport
     34    OnClick = ListView1Click
     35    OnData = ListView1Data
     36    OnSelectItem = ListView1SelectItem
    1937  end
    2038  object CoolDockClient1: TCoolDockClient
Note: See TracChangeset for help on using the changeset viewer.