gambas-source-code/app/examples/Networking/HTTPGet/.src/FHttpGet.form

66 lines
1.2 KiB
Text
Raw Normal View History

# Gambas Form File 3.0
{ Form Form
MoveScaled(30,14,96,73)
Resizable = False
{ Button1 Button
MoveScaled(1,6,14,4)
Text = ("GET!")
}
{ TextArea1 TextArea
MoveScaled(1,11,63,14)
}
{ Navigator TextEdit
MoveScaled(1,26,94,46)
ReadOnly = True
}
{ Label1 Label
MoveScaled(1,1,7,4)
Text = ("URL :")
}
{ TxtHost TextBox
MoveScaled(8,1,56,4)
Text = ("http://gambasdoc.org/help")
}
{ BtnStop Button
MoveScaled(16,6,14,4)
Text = ("Stop")
}
{ ChkPassword CheckBox
MoveScaled(66,6,29,4)
Text = ("Page needs authorization")
}
{ TxtUser TextBox
MoveScaled(66,16,29,4)
Enabled = False
Text = ("User")
}
{ TxtPassword TextBox
MoveScaled(66,21,29,4)
Enabled = False
Text = ("Password")
Password = True
}
{ CmbAuth ComboBox
MoveScaled(66,11,29,4)
Enabled = False
ReadOnly = True
List = [("Basic"), ("NTLM"), ("DIGEST"), ("GSS")]
Text = (" ")
}
{ MyHttp #HttpClient
#MoveScaled(27,36)
}
{ mnuOptions Button
MoveScaled(66,1,29,4)
Text = ("&Configuration...")
}
{ txtInfo Label
MoveScaled(32,6,32,4)
Font = Font["Bold"]
Background = Color.SelectedBackground
Foreground = &HFFFF00&
Padding = 8
}
}