File: FMain.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 (25 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (7)
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
# Gambas Form File 3.0

{ Form Form
  MoveScaled(0,0,32,61)
  Background = &H525252&
  Icon = Picture["Phone,.png"]
  Resizable = False
  Utility = True
  { tbNumber TextBox
    MoveScaled(3,5,26,6)
    Font = Font["Bold,+4"]
    Background = &HBBBFB7&
    Alignment = Align.Right
    ReadOnly = True
  }
  { btnDial Button
    MoveScaled(3,15,12,6)
    ToolTip = ("Dial")
    Picture = Picture["green.png"]
  }
  { btnClose Button
    MoveScaled(17,15,12,6)
    Picture = Picture["red.png"]
  }
}