So, is it possible to use windows messaging via .NET? That was
something I was wondering about.
> If this is only supposed to sync one way then it would be possible to on
> scroll, send a windows message to the other application to cause it to scroll
[quoted text clipped - 13 lines]
> > on a scroll event.
> > Thanks in advance.
Dave Sexton - 17 Nov 2006 17:46 GMT
Hi,
It is possible, but you need to use one of the SendMessage or PostMessage API
functions, AFAIK:
[DllImport("user32.dll")]
public static extern int SendMessage(IntPtr window, uint message, IntPtr
wparam, IntPtr lparam);

Signature
Dave Sexton
> So, is it possible to use windows messaging via .NET? That was
> something I was wondering about.
[quoted text clipped - 18 lines]
>> > on a scroll event.
>> > Thanks in advance.