Simulate F1 in Pocket PC 2003 using VB.NET

  • Thread starter Thread starter Michael Smith
  • Start date Start date
M

Michael Smith

Can anyone tell me how to code my ppc program to know when the help
(peghelp.exe) is run. I want to pass "helpfile.htm#Main_Contents" to the
help. I have OpenNetCF FrameWork and can do this my adding the code to a
menu. Here is the code I am using...
OpenNETCF.Diagnostics.Process.Start("peghelp.exe","helpfile.htm#Main_Contents")
How do you do it when your program is running and tap the Start button and
tap help. I am using VB.Net in VS.Net 2003. Thanks.
 
I replied to MikeS same question two days ago, look in the archives. The
short of it is to use ApplicationEx to catch the WM_HELP msg

Cheers
Daniel
 
Thanks for the information. I read the link you were talking about and the
first on is part of the code I included in my post. This was very valuable
to me in my learning. The ApplicationEx sounds exactly like what I need, but
I don't know how to use it. I am new to programming and I don't know
anything about C#. I know it is a lot like VB.NET, but I am self taught with
books I buy. I just don't know how to convert the ApplicationEx example you
posted to VB.NET.
 
Thanks, that points me in the right direction. I did not know you could mix
vb.net and c# together. I'm going to get a c# book so I can write c# code
for these instances.
 
Back
Top