HTML Control - Getting Post Data

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hi,

I want to use the HTML control in .netcf and capture the data from a form
submission (post) and store locally in a database.

Looking at the SDK reference, it says that I need to return non-zero from
the first NM_HOTSPOT notification and a subsequent NM_HOTSPOT will be
generated which will include the posted form data.

However, when using this from .net, how can I return this non-zero value
from the first notification? The WindowsCE.Forms.MessageWindow class has a
void function that receives the notifications from the windows control. So,
I suppose these are in effect "posted" messages and I need "sent" messages.

Anyone any idea how I can do what I want?

Thanks for any pointers.

Steve
 
The Message class which is passed in the parameter of the WinProc override
has the Result property that you can use for that purposes.
 
Back
Top