I have also got some problems like this in VB6.0 which if I make a code in the menu which supposed to be pops up the Help file
VB Code:
Private Sub mnuContent_Click() SendKeys "{F1}", True End Sub
But it doesnt work at all, well it gave me no choice but to make a small form frmHelp
and recode it like this and it pops the Help File...
VB Code:
Private Sub mnuContent_Click() frmHelp.Visible = False frmHelp.Show SendKeys "{F1}", True frmHelp.Hide End Sub
BTW, the HELP file was also integrated in the Project Property.




Reply With Quote