You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7887 8e941d3f-bd1b-0410-a28a-d453659cc2b4
205 lines
4.3 KiB
Plaintext
205 lines
4.3 KiB
Plaintext
object TFItemForm: TTFItemForm
|
|
Left = 210
|
|
Height = 501
|
|
Top = 113
|
|
Width = 627
|
|
Caption = 'True-False Item Development'
|
|
ClientHeight = 501
|
|
ClientWidth = 627
|
|
OnShow = FormShow
|
|
LCLVersion = '0.9.30'
|
|
object Memo1: TMemo
|
|
Left = 16
|
|
Height = 117
|
|
Top = 11
|
|
Width = 592
|
|
Lines.Strings = (
|
|
'Directions: To create a True or False item, you will need to enter the number of an item code which contains'
|
|
'both a major code and a minor code. It is suggested you print all item codes from the options menu on the'
|
|
'main procedure page of the item banking program. You can however, browse the item codes from this form.'
|
|
'After you have selected an item code number, enter the item stem in the space provided. Your item can also'
|
|
'include a jpeg picture prior to the presentation of the item on a test. To find the image, click the jpeg browse'
|
|
'button until you see the image you wish to include. When that item is shown, click the Select button to save'
|
|
'the name of the image file.'
|
|
)
|
|
TabOrder = 0
|
|
end
|
|
object TFItemNoLabel: TLabel
|
|
Left = 7
|
|
Height = 16
|
|
Top = 179
|
|
Width = 96
|
|
Caption = 'T-F Item Number:'
|
|
ParentColor = False
|
|
end
|
|
object TFItemNoEdit: TEdit
|
|
Left = 112
|
|
Height = 23
|
|
Top = 172
|
|
Width = 44
|
|
TabOrder = 1
|
|
Text = '1'
|
|
end
|
|
object ItemCodeLabel: TLabel
|
|
Left = 176
|
|
Height = 16
|
|
Top = 179
|
|
Width = 93
|
|
Caption = 'Item Major Code:'
|
|
ParentColor = False
|
|
end
|
|
object MajorCodeEdit: TEdit
|
|
Left = 280
|
|
Height = 23
|
|
Top = 172
|
|
Width = 41
|
|
TabOrder = 2
|
|
Text = '1'
|
|
end
|
|
object MinorCodeLabel: TLabel
|
|
Left = 336
|
|
Height = 16
|
|
Top = 177
|
|
Width = 94
|
|
Caption = 'Item Minor Code:'
|
|
ParentColor = False
|
|
end
|
|
object MinorCodeEdit: TEdit
|
|
Left = 440
|
|
Height = 23
|
|
Top = 172
|
|
Width = 45
|
|
TabOrder = 3
|
|
Text = '0'
|
|
end
|
|
object CodeBrowseBtn: TButton
|
|
Left = 506
|
|
Height = 28
|
|
Top = 168
|
|
Width = 106
|
|
Caption = 'Browse Items'
|
|
OnClick = CodeBrowseBtnClick
|
|
TabOrder = 4
|
|
end
|
|
object ItemStemLabel: TLabel
|
|
Left = 8
|
|
Height = 16
|
|
Top = 220
|
|
Width = 58
|
|
Caption = 'Item Stem:'
|
|
ParentColor = False
|
|
end
|
|
object ItemStemEdit: TEdit
|
|
Left = 73
|
|
Height = 23
|
|
Top = 213
|
|
Width = 539
|
|
TabOrder = 5
|
|
Text = 'ItemStemEdit'
|
|
end
|
|
object AnswerLabel: TLabel
|
|
Left = 8
|
|
Height = 16
|
|
Top = 256
|
|
Width = 84
|
|
Caption = 'Answer (T or F):'
|
|
ParentColor = False
|
|
end
|
|
object AnswerEdit: TEdit
|
|
Left = 96
|
|
Height = 23
|
|
Top = 249
|
|
Width = 29
|
|
TabOrder = 6
|
|
end
|
|
object jpeglabel: TLabel
|
|
Left = 10
|
|
Height = 16
|
|
Top = 299
|
|
Width = 225
|
|
Caption = 'jpeg photo to display prior to item (if any):'
|
|
ParentColor = False
|
|
end
|
|
object jpegnameEdit: TEdit
|
|
Left = 240
|
|
Height = 23
|
|
Top = 292
|
|
Width = 372
|
|
TabOrder = 7
|
|
Text = 'jpegnameEdit'
|
|
end
|
|
object jpegBrowseBtn: TButton
|
|
Left = 7
|
|
Height = 30
|
|
Top = 337
|
|
Width = 118
|
|
Caption = 'Browse jpeg Images'
|
|
OnClick = jpegBrowseBtnClick
|
|
TabOrder = 8
|
|
end
|
|
object Image1: TImage
|
|
Left = 138
|
|
Height = 151
|
|
Top = 337
|
|
Width = 211
|
|
end
|
|
object SelectImageBtn: TButton
|
|
Left = 10
|
|
Height = 26
|
|
Top = 408
|
|
Width = 112
|
|
Caption = 'Select Shown Image'
|
|
OnClick = SelectImageBtnClick
|
|
TabOrder = 9
|
|
end
|
|
object ItemSaveBtn: TButton
|
|
Left = 368
|
|
Height = 33
|
|
Top = 336
|
|
Width = 111
|
|
Caption = 'Save this item'
|
|
OnClick = ItemSaveBtnClick
|
|
TabOrder = 10
|
|
end
|
|
object StartNewBtn: TButton
|
|
Left = 498
|
|
Height = 30
|
|
Top = 392
|
|
Width = 111
|
|
Caption = 'Start a new item'
|
|
OnClick = StartNewBtnClick
|
|
TabOrder = 11
|
|
end
|
|
object ReturnBtn: TButton
|
|
Left = 432
|
|
Height = 30
|
|
Top = 456
|
|
Width = 111
|
|
Caption = 'Return'
|
|
OnClick = ReturnBtnClick
|
|
TabOrder = 12
|
|
end
|
|
object PreviousBtn: TButton
|
|
Left = 498
|
|
Height = 32
|
|
Top = 337
|
|
Width = 110
|
|
Caption = 'Show Previous Item'
|
|
OnClick = PreviousBtnClick
|
|
TabOrder = 13
|
|
end
|
|
object ShowNextBtn: TButton
|
|
Left = 369
|
|
Height = 30
|
|
Top = 392
|
|
Width = 109
|
|
Caption = 'Show Next Item'
|
|
OnClick = ShowNextBtnClick
|
|
TabOrder = 14
|
|
end
|
|
object OpenPictureDialog1: TOpenPictureDialog
|
|
left = 384
|
|
top = 448
|
|
end
|
|
end
|