DECLARE SUB About
DECLARE SUB EditAbout
DECLARE SUB ParseAbout
DECLARE SUB OptionsAbout
DECLARE SUB OtherAbout
SUB About
CREATE AboutForm AS QFORM
BorderStyle = 6
CAPTION = "DxfONE! " + Ver$
IcoHandle = ICO
ClientHeight = 120
ClientWidth = 600
Visible = 0
Enabled = 1
Center
CREATE About0Label AS QLABEL
CAPTION = "(c)2002~2003 arch. Giovanni M. Seregni - Milan, Italy - Email gmseregni@hotmail.com"
Left = 25
Top = 10
END CREATE
CREATE About1Label AS QLABEL
CAPTION = "Questo programma, compilato con RapidQ, appartiene al software freeware e non può essere venduto."
Left = 55
Top = 36
END CREATE
CREATE About2Label AS QLABEL
CAPTION = "Dell'uso del programmma e di ogni conseguenza è responsabile esclusivamente l'utilizzatore."
Left = 55
Top = 50
END CREATE
CREATE About3Label AS QLABEL
CAPTION = "This program compiled on Windows (RapidQ) is copyrighted freeware, it may not be sold."
Left = 55
Top = 68
END CREATE
CREATE About4Label AS QLABEL
CAPTION = "Use this program at your own risk, no warranties for correct function can be given."
Left = 55
Top = 82
END CREATE
END CREATE
AboutForm.SHOWMODAL
END SUB
SUB EditAbout
CREATE AboutEditForm AS QFORM
BorderStyle = 6
CAPTION = "Edit Menu Tutorial"
IcoHandle = ICO
ClientHeight = 152
ClientWidth = 600
Visible = 0
Enabled = 1
Center
CREATE About0EditLabel AS QLABEL
CAPTION = "DxfONE! allows you to modify the loaded image of your bitmap:"
Left = 25
Top = 10
END CREATE
CREATE About1EditLabel AS QLABEL
CAPTION = "The Halftone command creates a B/W reduction, usefull for colored bitmap DXF exporting."
Left = 55
Top = 36
END CREATE
CREATE About2EditLabel AS QLABEL
CAPTION = "The medium mode is default and creates a B&&W DXF file easy to edit in your favorite CAD system."
Left = 55
Top = 50
END CREATE
CREATE About3EditLabel AS QLABEL
CAPTION = "Checking mode by Options -> SetHalftone menu allows you to brighten or darken drawing."
Left = 55
Top = 68
END CREATE
CREATE About4EditLabel AS QLABEL
CAPTION = "The mode you had setting is saved in config. file (DxfONE!.cf), created the 1st day of use."
Left = 55
Top = 82
END CREATE
CREATE About5EditLabel AS QLABEL
CAPTION = "The Outline command creates a new look of your bitmap, drawing a border around the black areas."
Left = 55
Top = 100
END CREATE
CREATE About6EditLabel AS QLABEL
CAPTION = "This feature, useful to generate smaller DXF files, works in B/W mode: try Halftone command before."
Left = 55
Top = 114
END CREATE
END CREATE
AboutEditForm.SHOWMODAL
END SUB
SUB ParseAbout
CREATE AboutParseForm AS QFORM
BorderStyle = 6
CAPTION = "Parse Menu Tutorial"
IcoHandle = ICO
ClientHeight = 134
ClientWidth = 600
Visible = 0
Enabled = 1
Center
CREATE About0ParseLabel AS QLABEL
CAPTION = "DxfONE! allows you to save DXF files by the loaded image of your bitmaps:"
Left = 25
Top = 10
END CREATE
CREATE About1ParseLabel AS QLABEL
CAPTION = "The first command advailable is B&&W, usefull for almost architectural drawings."
Left = 55
Top = 36
END CREATE
CREATE About2ParseLabel AS QLABEL
CAPTION = "B&&W creates the DXF (points and lines) resulting by the black bitmap's pixels."
Left = 55
Top = 50
END CREATE
CREATE About3ParseLabel AS QLABEL
CAPTION = "The Colored command is created to import the image file as similar as possible to bitmap,"
Left = 55
Top = 68
END CREATE
CREATE About4ParseLabel AS QLABEL
CAPTION = "the original colors become Solid objects colored from the CAD standard palette."
Left = 55
Top = 82
END CREATE
CREATE About5ParseLabel AS QLABEL
CAPTION = "The colored entities are now editable, contrary to what is possible importing a raster image."
Left = 55
Top = 96
END CREATE
END CREATE
AboutParseForm.SHOWMODAL
END SUB
SUB OptionsAbout
CREATE AboutOptionsForm AS QFORM
BorderStyle = 6
CAPTION = "Options Menu Tutorial"
IcoHandle = ICO
ClientHeight = 120
ClientWidth = 600
Visible = 0
Enabled = 1
Center
CREATE Options0EditLabel AS QLABEL
CAPTION = "DxfONE! allows you to modify the loaded image of your bitmap:"
Left = 25
Top = 10
END CREATE
CREATE Options1EditLabel AS QLABEL
CAPTION = "Checking mode by Options -> SetHalftone menu allows you to brighten or darken drawing, before"
Left = 55
Top = 36
END CREATE
CREATE Options2EditLabel AS QLABEL
CAPTION = "your execution of the Halftone command from Edit menu (for B/W reduction)."
Left = 55
Top = 50
END CREATE
CREATE Options3EditLabel AS QLABEL
CAPTION = "The medium mode is default and creates a B&&W DXF file easy to edit in your favorite CAD system."
Left = 55
Top = 68
END CREATE
CREATE Options4EditLabel AS QLABEL
CAPTION = "Your setting is saved in config. file (DxfONE!.cf), created the 1st day of use."
Left = 55
Top = 82
END CREATE
END CREATE
AboutOptionsForm.SHOWMODAL
END SUB
SUB OtherAbout
CREATE AboutOtherForm AS QFORM
BorderStyle = 6
CAPTION = " May the source be with you"
IcoHandle = ICO
ClientHeight = 40
ClientWidth = 400
Visible = 0
Enabled = 1
Center
CREATE Options0OtherLabel AS QLABEL
CAPTION = "Other FREE software, drawings and clip of the same author:"
Left = 5
Top = 4
END CREATE
CREATE Options1OtherLabel AS QLABEL
CAPTION = "Gallery Download at http://digilander.libero.it/missoririsorgimento"
Left = 50
Top = 24
END CREATE
END CREATE
AboutOtherForm.SHOWMODAL
END SUB
|