Thanks...im registered...@goyyah..i also PM'ed you this...but i thought i should have posted it too...
Here is a basic example of what kind of Gui I have...though my script is actually really long (probably longer than it has to be) but i have everything worked out except for printing it (most important).
Code:
ui, Add, Text, x16 y27 w110 h20,FIRST NAME
Gui, Add, Edit, x146 y27 w230 h20 vfirstname,
Gui, Add, Text, x16 y57 w110 h20,MIDDLE NAME
Gui, Add, Text, x16 y87 w110 h20,LAST NAME
Gui, Add, Text, x16 y117 w110 h20,STREET ADDRESS
Gui, Add, Text, x16 y147 w110 h20,CITY
Gui, Add, Text, x16 y177 w110 h20,STATE
Gui, Add, Text, x16 y207 w110 h20,ZIP
Gui, Add, Edit, x146 y57 w230 h20 vmiddlename,
Gui, Add, Edit, x146 y87 w230 h20 vlastname,
Gui, Add, Edit, x146 y117 w230 h20 vstreet,
Gui, Add, Edit, x146 y147 w230 h20 vcity,
Gui, Add, Edit, x146 y177 w230 h20 vstate,
Gui, Add, Edit, x146 y207 w230 h20 vzip,
Gui, Add, Button, x226 y277 w240 h40,PRINT
Gui, Show, x334 y110 h377 w477, Generated using SmartGUI
Return
BUTTONPrint:
; ????
return
I want the print button to print the text from the edit fields into a form. But I dont want to print the form first...then print the text on top. I really want to have the form incorporated somehow into my script so Ill end of printing on a blank paper. Here is what my form will look like. This is the way Foxpro prints somehow.
If you cant see the image..here is the
URL
How can I have my script Print something like this...the way FoxPro does in DOS? Thanks again for your help...appreciate it....