Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
BUG: pageframe wrong height
Message
From
24/09/2005 04:00:48
 
General information
Forum:
Visual FoxPro
Category:
Visual FoxPro Beta
Title:
BUG: pageframe wrong height
Environment versions
Visual FoxPro:
VFP 9
Miscellaneous
Thread ID:
01052683
Message ID:
01052683
Views:
53
Expected: Pageframe.height = 250
Observed: Pageframe.height = 308
PUBLIC oform1

oform1=NEWOBJECT("form1")
oform1.Show
RETURN

DEFINE CLASS form1 AS form


	Height = 293
	Width = 266
	DoCreate = .T.
	AutoCenter = .T.
	Caption = "Form1"
	BackColor = RGB(0,0,255)
	AllowOutput = .F.
	Name = "Form1"


	ADD OBJECT pageframe1 AS pageframe WITH ;
		ErasePage = .T., ;
		PageCount = 9, ;
		TabStretch = 0, ;
		Top = 18, ;
		Left = 40, ;
		Width = 170, ;
		Height = 250, ; && ****** LOOK 
		TabOrientation = 1

	PROCEDURE gotfocus
                clear
		? this.pageframe1.height
ENDDEFINE
Next
Reply
Map
View

Click here to load this message in the networking platform