Hi,
I developed Winform Application for WinCE device using VS2008 (Smart device application type).
I have sample code to launch Help file.
But its throwing "NotSupported" Exception.
Anybody know the issue??
Code :
private
readonlystring HelpFileLocation =@"windows\Sample-HELP.htm";privatevoid btnHelp_Click(object sender, EventArgs e)
{
Help.ShowHelp(this, HelpFileLocation);
}
Thanks, Harish