Trackbar - mouseup/mousedown events not firing.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi , I have small application , where i 'am trying to get the value from the
trackbar of . net Compact framework and set the picturebox value based on the
zoom level.

But the mouseup and mousedown were not at all firing.

I 'am i missing something.

rgds,
vinay
 
I believe that the mouse events are not supported for the Compact Framework
TrackBar control. Does the ValueChanged event not work in your case?
 
Hi Tim Wilson,
the valuechange event works fine, but mouseup / mousedown evets , even
though they are supported by compact framework.

any ideas?

thanks
Vinay
 
The MouseUp and MouseDown events are supported in certain scenarios, for
example a basic Control or DataGrid, but not the TrackBar. The help file
shows all the documentation for the full framework and only the members that
are marked as "Supported by the .NET Compact Framework" are supported. Of
course, sometimes the documentation is not always accurate and so trial and
error is the only way.
 
Hi Tim Wilson,
That might be the case :incorrect documentation by Microsoft.....!!!!!!

thanks,
Vinay
 
Back
Top