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