Hi Patrick,What is supplied code about? does not seem to match the pageFrame where you see an issue.
I view this issues very similar to the one we previously discussed about optionButtons, which I replied by PM earlier
It appears that, for whatever reason, the optionButtons standard VFP naming scheme is not respected for buttons 1 and 2, those where you see an issue after adaptation.
Attached is the contents of the 'properties' field of frmConsumer.scx, optChildTable object.
All buttons should be named after member class ('Qqopt' apparently), buttons 1 and 2 are named after baseClass ('Option').
If you can confirm the same naming oddity causes the issue on your pageFrame, we'll fix FAA accordingly.
Thank you,
I am attempting to Adapt an app and I am having issues with a pageframe class. I am not sure if there is anything I can do to fix the problem.
DEFINE CLASS fnd_pageframe AS pageframe
ErasePage = .T.
PageCount = 2
Width = 409
Height = 112
fnd_private_edit_status = 0
boundsource = ""
fnd_edit_status = 0
Name = "fnd_pageframe"
Page1.Caption = "Page1"
Page1.Name = "Page1"
Page2.Caption = "Page2"
Page2.Name = "Page2"
PROCEDURE Page1.Activate
This.Refresh()
ENDPROC
PROCEDURE Page2.Activate
This.Refresh()
ENDPROC
ENDDEFINE
Before adapt on Left, after on right. Page1 and Page2 captoin issue. Top pageframe after is not visible except for single page tab when mouseover tab. After clicking on any tab the pages become visible.
![]()
-- thn (FoxInCloud)