ANN: OpenNETCF.Windows.Forms.ApplicationEx v1.0 Released

  • Thread starter Thread starter Chris Tacke, eMVP
  • Start date Start date
C

Chris Tacke, eMVP

Need to get Windows Messages for your app?

I'm happy to announce version 1.0 of the
OpenNETCF.Windows.Forms.ApplicationEx class, which provides a replacement
for the Run methods of the Application class and adds support for
IMessageFilter

Get the source and binaries here:
http://www.opennetcf.org/forms.asp

A C# sample is available here:
http://www.opennetcf.org/samples.asp#forms

All OpenNETCF.org libraries are covered by the OpenNETCF Shared Source
License. For more information visit:
http://www.opennetcf.org/License.asp
 
Chris Tacke said:
Need to get Windows Messages for your app?

I'm happy to announce version 1.0 of the
OpenNETCF.Windows.Forms.ApplicationEx class, which provides a replacement
for the Run methods of the Application class and adds support for
IMessageFilter

Get the source and binaries here:
http://www.opennetcf.org/forms.asp

A C# sample is available here:
http://www.opennetcf.org/samples.asp#forms

All OpenNETCF.org libraries are covered by the OpenNETCF Shared Source
License. For more information visit:
http://www.opennetcf.org/License.asp


Hmm... interesting. Now, is this something that could be used to
implement a virtual listview using the CF? Normally, you have to
override WndProc to handle LVN_GETDISPINFO, and since that's not
supported in the CF, it can't be done without using Alex Feinman's
Callbacks library.

Mark Erikson
http://www.isquaredsoftware.com
 
Actuall I haven't yet considered all the possibilities this opens up, but
there are a *lot* of them. For example Peter Foot got context Help working
using the library in about 10 minutes. I'm actually quite intereted to see
what this leads to.

-Chris
 
Extremly Great !!!!

With the help of the ApplicationEx class and a little hack

(basically a DoEvents(uint mid) and a ClearEvent(uint mid)) I was able to
enhace greatly the responsivity of my application and free mysefl of tedious
bug !

I will update my (openSource) table library with that improvment (and my
commercial software :)

Thanks for this great works again !
 
Back
Top