gambas-source-code/app/src/gambas-database-manager/FServer.form
Benoît Minisini ba19f3c1dd * Copy https://gambas.svn.sourceforge.net/svnroot/gambas/2.0 to https://gambas.svn.sourceforge.net/svnroot/gambas/gambas
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2007-12-30 16:41:49 +00:00

70 lines
1.4 KiB
Text

# Gambas Form File 2.0
{ Form Form
MoveScaled(43.7143,26.4286,43,31.1429)
Text = ("New connection")
Icon = Picture["img/16/host.png"]
Border = Window.Fixed
{ lblTitle Label
MoveScaled(1,1,32,5)
Font = Font["16,Bold"]
Text = ("New server")
}
{ Image1 PictureBox
MoveScaled(36,1,6,6)
Picture = Picture["img/32/server.png"]
Stretch = True
}
{ Label1 Label
MoveScaled(2,9,15,3)
Text = ("Type")
}
{ txtHost TextBox
MoveScaled(18,13,24,3)
Text = ("")
}
{ btnPath Button
MoveScaled(28,17,14,3)
Visible = False
Text = ("Choose...")
}
{ panIdent Panel
MoveScaled(2,17,40,8)
{ Label3 Label
MoveScaled(0,0,14,3)
Text = ("User")
}
{ Label4 Label
MoveScaled(0,4,14,3)
Text = ("Password")
}
{ txtUser TextBox
MoveScaled(16,0,24,3)
Text = ("")
}
{ txtPassword TextBox
MoveScaled(16,4,24,3)
Text = ("")
Password = True
}
}
{ btnOK Button
MoveScaled(17,27,12,3)
Text = ("OK")
Default = True
}
{ cmbType ComboBox
MoveScaled(18,9,24,3)
Text = (" ")
List = [("postgresql"), ("mysql"), ("sqlite"), ("sqlite2"), ("sqlite3"), ("odbc")]
}
{ btnCancel Button
MoveScaled(30,27,12,3)
Text = ("Cancel")
Cancel = True
}
{ lblHost Label
MoveScaled(2,13,15,3)
Text = ("Host")
}
}