gambas-source-code/app/examples/Database/MySQLExample/.src/CreateObjects/FNewTrigger.form
Benoît Minisini c6a9cd69c2 [EXAMPLES]
* NEW: Add examples again. I hope correctly this time.


git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-12 19:58:52 +00:00

64 lines
1.2 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,73,55)
Text = ("Create Trigger")
Icon = Picture["icons/16/Trigger.png"]
Resizable = False
{ lblTitle Label
MoveScaled(1,1,71,5)
Font = Font["+4"]
Background = Color.LightBackground
Text = ("Create Trigger")
Alignment = Align.Center
Border = Border.Sunken
}
{ lblName Label
MoveScaled(1,8,11,3)
Font = Font["+1"]
Text = ("Name:")
}
{ txtName TextBox
MoveScaled(13,8,59,3)
}
{ lblTime Label
MoveScaled(1,13,11,3)
Font = Font["+1"]
Text = ("Time:")
}
{ cmbTime ComboBox
MoveScaled(13,13,15,3)
ReadOnly = True
List = []
}
{ lblEvent Label
MoveScaled(30,13,11,3)
Font = Font["+1"]
Text = ("Event:")
}
{ cmbEvent ComboBox
MoveScaled(42,13,15,3)
ReadOnly = True
List = []
}
{ btnClue Button
MoveScaled(1,50,5,4)
ToolTip = ("Show a clue")
Picture = Picture["icon:/22/help"]
}
{ tbnOK Button
MoveScaled(44,50,13,4)
Text = ("&Ok")
Picture = Picture["icon:/16/ok"]
Default = True
}
{ btnCancel Button
MoveScaled(59,50,13,4)
Text = ("&Cancel")
Picture = Picture["icon:/16/cancel"]
Cancel = True
}
{ txtData TextArea
MoveScaled(1,17,71,32)
}
}