Click here to Skip to main content
15,893,266 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
i have datagridview in that 4 column is there

that datagridview column enter value is entered(fg col4-(1)) then press enter goto column2 (fg col2-(2))
that then press entered value (fg col1)
see more details:CLICK THIS LINK PLEASE
How to Change Cursor in datagridview c#[^]
Posted
Comments
Sergey Alexandrovich Kryukov 17-Jan-16 23:38pm    
Despite the question you referenced, I don't understand how its content illustrate the problem. What exactly do you want to achieve?
—SA

1 solution

When we create the column in datagridview at the time give the style for that column by using id or class for eg.

C#
span.crosshair {
    cursor: crosshair;
}

span.help {
    cursor: help;
}

span.wait {
    cursor: wait;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900