I found a few compiler errors from which I wonder why they come up.
E.g.on a subclassed FileOpenDialog:
Code: Select all
oFileDLG:SetStyle(OFN_HIDEREADONLY)
oFileDLG:SetStyle(OFN_ALLOWMULTISELECT)
Error XS0103 The name 'OFN_HIDEREADONLY' does not exist in the current context
Isn't this the same issue where Robert wrote to Karl:
The OFN_ENABLESIZING flag was commented out in the GUI classes a looong time ago for the Opendialog when the OFN_ENABLEHOOK flag was added
I think this was a mistake. I'll put it back in for the next build.
on https://www.xsharp.eu/forum/private-pro ... logs#14630
Or what else is the cause? In VO it comes from CommDlg of Win32 API.
Also a question on the line Self:Pointer := Pointer{POINTERHOURGLASS} where POINTERHOURGLASS is unknown (comes from WinDefs of GUI Classes).
This is solved in my X# solution with adding a reference to the VOGUIClasses (only this, not the above FileDialog errors).. But why isn't then that reference auto added to the VOPorted solution?
Dick