'FNXBasic Source Code
'=====================================================
' PROGRAM NAME: [Your_Program_Name_Here ]
' AUTHOR: (c) 2008 by [ your name ]
'=====================================================
'http://www.your_web_here.com
'your_name@your_domain.com
'---------------------------------------------------------------------------------------------
'LAST REVISION: [ date here ]
'---------------------------------------------------------------------------------------------
'COMMENTS: Your_Comments_Here
'
'---------------------------------------------------------------------------------------------
'Variables in this program:
'
'
'
'
'-----Begin GUI objects code

object myform as form
	Caption = "myprogram "
	Width = 400
	Height = 225
	Color = &h4F9D00
	object label1 as label
		Caption = "label1"
		Left = 57
		Top = 24
		Width = 112
		Transparent = 1
	end object
	object edit1 as edit
		Text = ""
		Left = 175
		Top = 20
		Width = 89
	end object
	object button1 as button
		Caption = "Button1"
		Left = 56
		Top = 100
		Width = 99
		TabOrder = 4
		onclick=button
	end object
end object
'-----End GUI objects code

myform.showmodal 
'===========================
'[Subprograms and functions]
'===========================
 Sub button() 
'Dim variable1 as double 
'Dim variable2 as integer 
label1.Caption = edit1.Text
end sub
