File: FHttpPost.form

package info (click to toggle)
gambas3 3.20.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 77,208 kB
  • sloc: ansic: 197,232; cpp: 124,273; sh: 18,999; javascript: 7,761; sql: 5,399; makefile: 2,358; perl: 1,397; xml: 490; python: 335
file content (85 lines) | stat: -rw-r--r-- 1,784 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Gambas Form File 3.0

{ Form Form
  MoveScaled(38.1429,12.7143,95,85)
  Text = ("Internet Calculator")
  Resizable = False
  { Button1 Button
    MoveScaled(42,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,38,4)
    Text = ("Write Here a Number :")
  }
  { Label4 Label
    MoveScaled(4,13,38,4)
    Text = ("Write Here Another Number :")
  }
  { TextBox1 TextBox
    MoveScaled(42,8,14.7143,4)
    Text = ("5")
  }
  { TextBox2 TextBox
    MoveScaled(42,13,14.7143,4)
    Text = ("5")
  }
  { Label5 Label
    MoveScaled(4,18,38,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,36,4)
    Text = ("Use Proxy")
  }
  { TxtProxy TextBox
    MoveScaled(28,26,67,4)
    Enabled = False
    Text = ("127.0.0.1:3128")
  }
}