question for MS developers

  • Thread starter Daniel Bello Urizarri
  • Start date
D

Daniel Bello Urizarri

Are the WndProc messages part of the .NET framework model?

Can i trust in the fact that on any .NET framework, all the messages,
wparams, lparams... will be the same?
 
1

100

Hi Daniel,
No you cannot. Windows Forms is not in the ECMA specs so it doesn't has to
be supported by the realizations .NET
Messages, handles and many others are platform dependant, so they won't be
there in other platforms. However it depends on the realization. Someone can
do the big job to emulate them (I doubt, though)
As you can easily see compact frameork doesn't support WndProc method
neither Control.Handle.
I other words you cannot write platform independant applications using
windows forms.

B\rgds
100
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top