- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In Intel-Fortran it is possible to catch mouse-events like left button, right button (up down) or move. How can I catch additionale buttons or a wheel turn.
Thanks.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, but it depends on type of application:
1) Console application: no
2) QuickWin/Standard Graphics: yes (partially). See REGISTERMOUSEEVENT. The behaviour can be extended to middle button and mouse wheel handling by subclassing (see POKER sample) and then using the same technique as in 3)
3) Win32 applications: yes. You have to handle WM_LBUTTON* / WM_RBUTTON* / WM_MBUTTON* / WM_MOUSEWHEEL / WM_MOUSENMOVE messages in the window procedure.
Jugoslav

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page