S
sjones
Public Function HelpMe(HelpPage As String, Optional HelpLine As String = "")
......
Application.FollowHyperlink HelpDirectory & HelpPage & ".htm", HelpLine, False, False
......
When a user clicks a help button the above code is executed with HelpPage passed as an argument. Works just fine.
A popup form was opened using a Where clause to restrict payment records to the current customer. I clicked the Help button on the
popup form. The Help page opened in Internet Explorer as expected.
I closed the popup form and noticed that Internet Explorer's Back button was active. To my horror when I clicked Back the popup form
open again this time displaying every record.
Tried this again after closing the popup form and the entire database. The database open but I received an error from the popup form
that the Customer form was not open.
Fortunately our shop is using Firefox and this behavior does not happen.
What is going on here.
S Jones
......
Application.FollowHyperlink HelpDirectory & HelpPage & ".htm", HelpLine, False, False
......
When a user clicks a help button the above code is executed with HelpPage passed as an argument. Works just fine.
A popup form was opened using a Where clause to restrict payment records to the current customer. I clicked the Help button on the
popup form. The Help page opened in Internet Explorer as expected.
I closed the popup form and noticed that Internet Explorer's Back button was active. To my horror when I clicked Back the popup form
open again this time displaying every record.
Tried this again after closing the popup form and the entire database. The database open but I received an error from the popup form
that the Customer form was not open.
Fortunately our shop is using Firefox and this behavior does not happen.
What is going on here.
S Jones