File: FStart.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 (28 lines) | stat: -rw-r--r-- 570 bytes parent folder | download | duplicates (6)
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
# Gambas Form File 3.0

{ Form Form
  MoveScaled(35.7143,18.5714,67,17)
  Text = ("Object ")
  Icon = Picture["object.png"]
  Resizable = False
  { btnCreateThing Button
    MoveScaled(1,1,21,4)
    Text = ("create the Thing !")
  }
  { btnCheckThing Button
    MoveScaled(23,1,21,4)
    Text = ("check the Thing !")
  }
  { txtCheckResult TextBox
    MoveScaled(1,7,65,4)
    Visible = False
  }
  { btnDestroy Button
    MoveScaled(45,1,21,4)
    Text = ("destroy the Thing !")
  }
  { Label1 Label
    MoveScaled(1,12,26,4)
    Text = (" by juergen@zdero.com")
  }
}