I am encountering a problem in opening my help file when pressing o key. The help file is ok. My code in the form is this:
private void login_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.F1)
{
Help.ShowHelp(this, @"C:\Users\xristos\Desktop\Smartcity\Smartcityhelp.chm");
}
}
I checked many questions related to my problem, but for some reason, i still don't have the result i want. Thanks in advance!