gambas-source-code/comp/src/gb.form.dialog/.src/FInputDate.form
Benoît Minisini 49d9bfa7b0 [DEVELOPMENT ENVIRONMENT]
* NEW: Copying tables between different database connections is now 
  possible.
* BUG: Fix the layout of some dialogs.

[GB.DB.FORM]
* BUG: Use the new GridView.UnselectAll() method now.

[GB.FORM.DIALOG]
* BUG: Fix dialogs layout.


git-svn-id: svn://localhost/gambas/trunk@3661 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2011-03-19 01:06:29 +00:00

37 lines
677 B
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,59,43)
Arrangement = Arrange.Vertical
Spacing = True
Margin = True
{ lblMessage TextLabel
MoveScaled(1,1,48,4)
Visible = False
Font = Font["+1"]
AutoResize = True
Alignment = Align.Center
}
{ dlgDate DateChooser
MoveScaled(1,6,48,31)
Expand = True
}
{ HBox1 HBox
MoveScaled(1,38,48,4)
Spacing = True
{ Panel1 Panel
MoveScaled(7,0,2,4)
Expand = True
}
{ btnOK Button
MoveScaled(15,0,16,4)
Text = ("OK")
Default = True
}
{ btnCancel Button
MoveScaled(32,0,16,4)
Text = ("Cancel")
Cancel = True
}
}
}