gambas-source-code/app/examples/Networking/WebBrowser/.src/FAuth.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

60 lines
1.1 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(0,0,54,26)
Text = ("Please authenticate")
Icon = Picture["icon:/small/unlock"]
Resizable = False
Arrangement = Arrange.Vertical
AutoResize = True
Spacing = True
Margin = True
{ HPanel1 HPanel
MoveScaled(1,1,52,18)
AutoResize = True
Spacing = True
{ lblRealm TextLabel
MoveScaled(2,1,22,4)
Expand = True
AutoResize = True
Text = ("")
}
{ Label1 Label
MoveScaled(2,6,13,3)
Text = ("User")
}
{ txtUser TextBox
MoveScaled(19,6,32,4)
Expand = True
Text = ("")
}
{ Label2 Label
MoveScaled(2,11,13,3)
Text = ("Password")
}
{ txtPassword TextBox
MoveScaled(19,11,32,4)
Expand = True
Text = ("")
Password = True
}
}
{ HBox1 HBox
MoveScaled(1,20,52,4)
Spacing = True
{ Panel1 Panel
MoveScaled(4,0,4,4)
Expand = True
}
{ btnOK Button
MoveScaled(17,0,16,4)
Text = ("OK")
Default = True
}
{ btnCancel Button
MoveScaled(34,0,16,4)
Text = ("Cancel")
Cancel = True
}
}
}