Problem with attaching help file

  • Thread starter Thread starter Paul M
  • Start date Start date
P

Paul M

Hi there,

i have a strange problem in where i have attached a help file using the
helpProvider control, and when i press F1, it loads the help, but puts it
behind the actual application form. Then when i click between the help and
application window, it switches between them eratically and i cant figure
out why its doing this?

I also created a new blank form with only help attached and cant replicate
it.
All the form properties are set as standard also.
Any ideas?

thanks,
Paul.
 
hi,
I dont know what the helpProvider control is. When it is a windows form and
you want to bring it to the front than use the method BringToFront().
Make a new object of the form and reference it to a variable.
HelpForm myhelpform = new HelpForm();
and in the event which lets show the form add
myhelpform.BringToFront();
after the show() method.

Hope it helps
 
Back
Top