newtofoxpro
Programmer
oRepForm = CREATEOBJECT("FORM")
WITH oRepForm
.ControlBox = .f.
.BorderStyle = 1
.TitleBar = 0
.fontName = 'Letter Gothic'
.fontSize = 9
.Left =0
.Top =0
.Height = 500
.Width = 1000
.Show()
ENDWITH
create cursor tmpcomp1 (line03d M)
appe blank
replace line03d WITH "I am using Visual Foxpro 8"
@ 0,0 say 'Text Preview' font 'Arial',12
@ 1.6,0 edit line03d size wrow()-1.6,wcol() scroll NOMODIFY
ON KEY LABEL + do MaxZoom
READ modal
oRepForm.Release()
RELEASE oRepForm
RETURN
FUNCTION MaxZoom
****************
ORepForm.FontSize = 12
RETURN
When I press + Key-Button it should change form font size so it would applicable to @ edit ..
Thanks & Best Regards.
WITH oRepForm
.ControlBox = .f.
.BorderStyle = 1
.TitleBar = 0
.fontName = 'Letter Gothic'
.fontSize = 9
.Left =0
.Top =0
.Height = 500
.Width = 1000
.Show()
ENDWITH
create cursor tmpcomp1 (line03d M)
appe blank
replace line03d WITH "I am using Visual Foxpro 8"
@ 0,0 say 'Text Preview' font 'Arial',12
@ 1.6,0 edit line03d size wrow()-1.6,wcol() scroll NOMODIFY
ON KEY LABEL + do MaxZoom
READ modal
oRepForm.Release()
RELEASE oRepForm
RETURN
FUNCTION MaxZoom
****************
ORepForm.FontSize = 12
RETURN
When I press + Key-Button it should change form font size so it would applicable to @ edit ..
Thanks & Best Regards.