Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
QuestionOOP approach, static method Pin
Raybarg28-Jul-09 20:46
professionalRaybarg28-Jul-09 20:46 
AnswerRe: OOP approach, static method Pin
Christian Graus28-Jul-09 21:00
protectorChristian Graus28-Jul-09 21:00 
AnswerRe: OOP approach, static method Pin
DaveyM6928-Jul-09 22:41
professionalDaveyM6928-Jul-09 22:41 
GeneralRe: OOP approach, static method Pin
Raybarg28-Jul-09 23:04
professionalRaybarg28-Jul-09 23:04 
GeneralRe: OOP approach, static method Pin
DaveyM6928-Jul-09 23:39
professionalDaveyM6928-Jul-09 23:39 
AnswerRe: OOP approach, static method Pin
PIEBALDconsult29-Jul-09 4:58
mvePIEBALDconsult29-Jul-09 4:58 
QuestionAttach User Entered Data with word Document while saving Pin
mandar77728-Jul-09 20:41
mandar77728-Jul-09 20:41 
QuestionTreeView NodeMouseHover Event Pin
vhassan28-Jul-09 20:15
vhassan28-Jul-09 20:15 
Hi,

I want nodes of tree view should behave like hyperlink. This I achieved by setting HotTracking property of tree view asTrue.

Now I want to change my Cursor as I hover over the Node text not the full row range.

Firstly:
I used NodeMouseHover event but cannot change the cursor to default.

Secondly:
private void treeView1_MouseMove(object sender, MouseEventArgs e)
       {            
            if (treeView1.GetNodeAt(e.X, e.Y) == null)           
                treeView1.Cursor = Cursors.Default;        
            else
                treeView1.Cursor = Cursors.Hand;
        }


I used above TreeView MouseMove event. Using this I get default cursor when I hover over blank space of treeview but the cursor changes to hand when the pointer is not even over text and Node is not even underlined (using HotTracking).

Please help me to get cursor change only on text of Node.
QuestionDisplay Image from Path Pin
nudma28-Jul-09 19:47
nudma28-Jul-09 19:47 
AnswerRe: Display Image from Path Pin
Christian Graus28-Jul-09 20:10
protectorChristian Graus28-Jul-09 20:10 
AnswerRe: Display Image from Path Pin
Blikkies28-Jul-09 20:14
professionalBlikkies28-Jul-09 20:14 
GeneralRe: Display Image from Path Pin
nudma28-Jul-09 21:15
nudma28-Jul-09 21:15 
GeneralRe: Display Image from Path Pin
Blue_Boy29-Jul-09 0:45
Blue_Boy29-Jul-09 0:45 
GeneralRe: Display Image from Path Pin
Blikkies29-Jul-09 1:32
professionalBlikkies29-Jul-09 1:32 
GeneralRe: Display Image from Path Pin
nudma29-Jul-09 4:08
nudma29-Jul-09 4:08 
GeneralRe: Display Image from Path Pin
Blue_Boy29-Jul-09 7:38
Blue_Boy29-Jul-09 7:38 
GeneralRe: Display Image from Path Pin
Blikkies29-Jul-09 8:26
professionalBlikkies29-Jul-09 8:26 
AnswerRe: Display Image from Path Pin
Blue_Boy28-Jul-09 20:23
Blue_Boy28-Jul-09 20:23 
AnswerRe: Display Image from Path Pin
Christian Graus28-Jul-09 21:01
protectorChristian Graus28-Jul-09 21:01 
QuestionApp with Crystal Reports Pin
CodingYoshi28-Jul-09 11:00
CodingYoshi28-Jul-09 11:00 
AnswerRe: App with Crystal Reports Pin
Ennis Ray Lynch, Jr.28-Jul-09 15:19
Ennis Ray Lynch, Jr.28-Jul-09 15:19 
GeneralRe: App with Crystal Reports Pin
N a v a n e e t h28-Jul-09 15:57
N a v a n e e t h28-Jul-09 15:57 
GeneralAs with anything that seems difficult Pin
Ennis Ray Lynch, Jr.28-Jul-09 16:06
Ennis Ray Lynch, Jr.28-Jul-09 16:06 
GeneralRe: App with Crystal Reports Pin
CodingYoshi29-Jul-09 6:01
CodingYoshi29-Jul-09 6:01 
GeneralRe: App with Crystal Reports Pin
Ennis Ray Lynch, Jr.29-Jul-09 6:04
Ennis Ray Lynch, Jr.29-Jul-09 6:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.