473,796 Members | 2,741 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Work around ListView.Cursor bug - SetCursor fixes content but not header


I'm using this class to work around the ListView.Cursor bug in .NET
1.0/1.1. It fixes the bug as long as the user mouses around the
client area of the listview but if the listview is in detail view and
the user mouses over the header, the default cursor is displayed
regardless of the Cursor property setting.

Public Class MyListView
Inherits ListView
Const WM_SETCURSOR = &H20
Public Declare Function SetCursor Lib "user32" Alias "SetCursor"
(ByVal
hCursor As IntPtr) As IntPtr
Protected Overrides Sub WndProc(ByRef m As
System.Windows. Forms.Message)
if m.Msg = WM_SETCURSOR
SetCursor(Me.Cu rsor.Handle)
Return
End If
MyBase.WndProc( m)
End Sub
End Class

From:

http://groups-beta.google.com/group/...686bb8f61ccd9f

Is there a better work-around that also handles the header?

Thanks,

Sam

Nov 21 '05 #1
4 3130
Hi Samuel,

So far we have no better workaround for the problem.
Also we are planning to fix the issue in the next vs.net release(Whidbey ),
you may try to monitor our website for the release.
Thanks for your understanding!
Best regards,

Perter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '05 #2

I read that, but the next major release is still a long ways off..

This requires a fix in the run-time though, right? Not vs.net...

Thanks,

Sam
On Thu, 06 Jan 2005 03:08:09 GMT, v-******@online.m icrosoft.com
("Peter Huang" [MSFT]) wrote:
Hi Samuel,

So far we have no better workaround for the problem.
Also we are planning to fix the issue in the next vs.net release(Whidbey ),
you may try to monitor our website for the release.
Thanks for your understanding!
Best regards,

Perter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.


Nov 21 '05 #3
Hi

I am sorry if I did not make this more clear.
Because this is a problem in the current winform control in .net FW
1.1(vs.net 2003), while in the next release Whidbey(.net FW 2.0), the
winform control will also be updated. So the problem is not the VS.NET IDE
but the underlying Framework which provides the listview
control.(system .windows.forms. dll)

If you do have more concern on the workaround, I think you may try to
contact MSPSS for a hotfix.
You may reach MSPSS via the link below.
http://support.microsoft.com
Best regards,

Perter Huang
Microsoft Online Partner Support

Get Secure! - www.microsoft.com/security
This posting is provided "AS IS" with no warranties, and confers no rights.

Nov 21 '05 #4

Thanks, that's a lot clearer.

Best regards,

Sam

On Fri, 07 Jan 2005 02:21:40 GMT, v-******@online.m icrosoft.com
("Peter Huang" [MSFT]) wrote:
Hi

I am sorry if I did not make this more clear.
Because this is a problem in the current winform control in .net FW
1.1(vs.net 2003), while in the next release Whidbey(.net FW 2.0), the
winform control will also be updated. So the problem is not the VS.NET IDE
but the underlying Framework which provides the listview
control.(syste m.windows.forms .dll)

If you do have more concern on the workaround, I think you may try to
contact MSPSS for a hotfix.
You may reach MSPSS via the link below.
http://support.microsoft.com
Best regards,

Perter Huang
Microsoft Online Partner Support

Nov 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1792
by: Martin | last post by:
Hi All, I am a relative newbie to Java / Applets, but am despirately after some help ! I have got the following code, which is basically a listing with button items along the sides, allowing the items in the list to be moved up/down etc. Obviously, for the top and bottom items, the appropriate move up /
3
17313
by: Csaba2000 | last post by:
I have set onmousedown to change the cursor, but this setting is ignored (IE 5.5; NN 6.1 on Win 2K Pro) until the mouse is either moved or the mouse button is released. On Opera 7.01, the setting seems to be ignored completely, even when I try with window.setTimeout. So my two questions are: (1) Most important: Is there anything I can do so that I don't have to wait for the next mouse event before the cursor gets repainted. (2) Why...
1
3976
by: Buddy | last post by:
Hello, Does anyone know how I can tell the ListView NOT to display the three dots when it thinks the text will not fit in the column. E.g. 'Hello World' will be displayed as 'Hello...' if the column width cannot fit the word 'World'. Thanks,
1
23714
by: andrewcw | last post by:
The clcik event on the ListView control seems to trigger off the item level ( the first column ). I would like to be able to trap the click event on a particular subitem ( a specific column's row ). If possible, what do I do to activate that 'cell' - thanks. I thought that listView.LabelEdit = true; would enable me to navigate into the cells or something like listView.items .subitems.LabelEdit - but I did not see such a property....
1
2241
by: tor | last post by:
Hi If a column in a listview isn't wide enough to show the whole content you can place the cursor on that item and you will get a tooltip?? box where you can see the whole content of that item. One example is the Windows Explorer, if the filename is to long you can place the cursor on that filename and you will be able to see the whole name.
5
9782
by: Yura Moldavanov | last post by:
Hello, All! I have a problem with putting the ToolTips on ListView Header ToolTip Text Property must changes depending on column, which is under mosue cursor. Problem 1. Standatr .Net class TooTip is not shown, when mouse not in the client area of ListView. I trying to solve this through Win Api CreateEx function, SendMessage e t.c.
3
15723
by: larry mckay | last post by:
anyone have the code to select and listview item or row (subitems) after a doubleclick event from a listview. *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!
2
9059
by: Jim Frazer | last post by:
Hi, I'm working on an application in C# that will allow the user to create simple CAD drawings on a CEPC system. I would like to be able to change the cursor shape depending on the drawing mode selected by the user. I started out by setting up P/Invokes for LoadCursor and SetCursor. Calling LoadCursor followed by SetCursor does allow me to change to a different cursor, such as the cross cursor, but as soon as the application leaves...
4
5595
by: justabeginner | last post by:
First of all, let me say I've had very little training in html and probably know just enough to be dangerous. I designed a website for my alumni association last summer using XHTML Transitional and CSS. I finally got around to posting it, but in the meantime IE7 came out. Everything looks fine in IE6 and FF, but when the page is opened in IE7 the links are dead. I've tried several fixes, but can't get anything to work. Any help you could give me...
0
10467
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10201
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10021
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9061
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7558
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6802
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5454
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4130
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2931
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.