We have the two normal commands for making a sheet visible and hidden in VoxPro:
XLApp.ActiveSheet.Visible = .F. <- Make it hidden
XLApp.ActiveSheet.Visible = .T. <- Visible
But there is also the Visual Basic command (coded in Excel) you can use of:
Sheets("Sheet1"
.Visible = xlVeryHidden
How do we pass this in FoxPro?
Thanks,
Chad
XLApp.ActiveSheet.Visible = .F. <- Make it hidden
XLApp.ActiveSheet.Visible = .T. <- Visible
But there is also the Visual Basic command (coded in Excel) you can use of:
Sheets("Sheet1"
How do we pass this in FoxPro?
Thanks,
Chad