question for MS developers

  • Thread starter Thread starter Daniel Bello Urizarri
  • Start date 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?
 
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
 
Back
Top