gambas-source-code/app/examples/Networking/HTTPPost/.src/FHttpPost.form
Benoît Minisini 3c8efd56e9 [CONFIGURATION]
* NEW: Update chinese translations.

[EXAMPLES]
* NEW: Add screenshots, switch to 1.0 version, and publish.

[INTERPRETER]
* NEW: Allow WAIT to raise errors.

[GB.DESKTOP]
* NEW: DesktopWindow.Geometry is a new property that returns the geometry 
  of the window inside as a rectangle.
* NEW: DesktopWindow.Frame is a new property that returns the geometry 
  of the window outside (with the frame) as a rectangle.
* NEW: DesktopWindow.GetScreenshot() is a new method that returns a 
  screenshot of a window, with or without the frame.
* BUG: DesktopWindow X, Y, Width and Height properties return the window
  geometry without the frame.

[GB.GTK]
* NEW: Raise an error if WAIT is called during a keyboard event.

[GB.GTK3]
* NEW: Raise an error if WAIT is called during a keyboard event.

[GB.QT4]
* NEW: Raise an error if WAIT is called during a keyboard event.


git-svn-id: svn://localhost/gambas/trunk@6746 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2014-12-16 22:15:59 +00:00

85 lines
1.7 KiB
Text

# Gambas Form File 3.0
{ Form Form
MoveScaled(38.1429,12.7143,95,85)
Text = ("Internet Calculator")
Resizable = False
{ Button1 Button
MoveScaled(37,18,14.7143,4)
Text = ("Post")
}
{ TextArea1 TextArea
MoveScaled(1,56,93,28)
}
{ TextArea2 TextArea
MoveScaled(1,35,93,16)
}
{ Label1 Label
MoveScaled(1,31,89.1429,4)
Font = Font["Bold"]
Text = ("HTTP Headers")
}
{ Label2 Label
MoveScaled(1,52,90.7143,4)
Font = Font["Bold"]
Text = ("HTTP Data")
}
{ Label3 Label
MoveScaled(4,8,32,4)
Text = ("Write Here a Number :")
}
{ Label4 Label
MoveScaled(4,13,32,4)
Text = ("Write Here Another Number :")
}
{ TextBox1 TextBox
MoveScaled(37,8,14.7143,4)
Text = ("5")
}
{ TextBox2 TextBox
MoveScaled(37,13,14.7143,4)
Text = ("5")
}
{ Label5 Label
MoveScaled(4,18,32,4)
Text = ("Finally press the Post button >>>")
}
{ TextLabel1 TextLabel
MoveScaled(0,0,96,6)
Font = Font["Bold"]
Background = &H101A9E&
Foreground = &HF7F02A&
Text = ("Using the power of internet to have a minimal calculator machine!")
Alignment = Align.Center
}
{ Label6 Label
MoveScaled(60,8,34,5)
Font = Font["12,Bold"]
Background = &H092773&
Foreground = &HFFFFFF&
Padding = 4
}
{ Label7 Label
MoveScaled(60,14,34,5)
Font = Font["12,Bold"]
Background = &H092773&
Foreground = &HFFFFFF&
Padding = 4
}
{ LblInfo Label
MoveScaled(60,20,34,4)
Font = Font["Bold"]
Background = &H003DB6&
Foreground = &HFFFF00&
Padding = 4
}
{ ChkProxy CheckBox
MoveScaled(1,26,18.7143,4)
Text = ("Use Proxy")
}
{ TxtProxy TextBox
MoveScaled(18,26,77,4)
Enabled = False
Text = ("127.0.0.1:3128")
}
}