Click here to Skip to main content
15,918,243 members
Home / Discussions / C#
   

C#

 
GeneralRe: Speed Pin
Luc Pattyn9-Jan-08 0:07
sitebuilderLuc Pattyn9-Jan-08 0:07 
QuestionHow to get Custom Request header in Response stream Pin
Narendra Mohan8-Jan-08 22:30
Narendra Mohan8-Jan-08 22:30 
GeneralWork with my own Crystal Report Pin
alexking20058-Jan-08 21:56
alexking20058-Jan-08 21:56 
GeneralRe: Work with my own Crystal Report Pin
alexking20058-Jan-08 22:01
alexking20058-Jan-08 22:01 
GeneralHide/Show Mouse in like in Fullscreen Video play [modified] Pin
Sukhjinder_K8-Jan-08 21:52
Sukhjinder_K8-Jan-08 21:52 
GeneralRe: Hide/Show Mouse in like in Fullscreen Video play Pin
Christian Graus8-Jan-08 22:41
protectorChristian Graus8-Jan-08 22:41 
GeneralBut which methods to use? Pin
Sukhjinder_K8-Jan-08 23:13
Sukhjinder_K8-Jan-08 23:13 
GeneralRe: But which methods to use? [modified] Pin
M. Aamir Malik9-Jan-08 0:30
M. Aamir Malik9-Jan-08 0:30 
use MouseMove event for this and run a counter in mousemove event when the counter confirms your condition show the cursor.

int move = 0;
private void Form1_MouseMove(object sender, MouseEventArgs e)
{

if (move++ >= 20)
{
this.Cursor = new Cursor(System.Windows.Forms.Cursors.Arrow.CopyHandle());
this.label1.Cursor = this.Cursor;
move = 0;
}
}

Hope it helps.

modified on Wednesday, January 09, 2008 6:45:53 AM

GeneralNew DataGridView Pin
Thaer Hamael8-Jan-08 21:35
Thaer Hamael8-Jan-08 21:35 
QuestionPropertygrid, need BeforePropertyChange-Event Pin
mlr798-Jan-08 21:21
mlr798-Jan-08 21:21 
GeneralRe: Propertygrid, need BeforePropertyChange-Event Pin
visualhint11-Jan-08 3:39
visualhint11-Jan-08 3:39 
QuestionDataGrid Pin
usyra428-Jan-08 20:55
usyra428-Jan-08 20:55 
GeneralRe: DataGrid Pin
sujithkumarsl8-Jan-08 23:21
sujithkumarsl8-Jan-08 23:21 
QuestionHow to access Outgoing queues Pin
M. Aamir Malik8-Jan-08 20:30
M. Aamir Malik8-Jan-08 20:30 
AnswerRe: How to access Outgoing queues Pin
M. Aamir Malik11-Jan-08 18:55
M. Aamir Malik11-Jan-08 18:55 
QuestionC#:How to navigate through records in a datatable/dataset Pin
kssknov8-Jan-08 19:51
kssknov8-Jan-08 19:51 
GeneralRe: C#:How to navigate through records in a datatable/dataset Pin
Mircea Puiu8-Jan-08 20:32
Mircea Puiu8-Jan-08 20:32 
GeneralRe: C#:How to navigate through records in a datatable/dataset Pin
M. Aamir Malik8-Jan-08 20:40
M. Aamir Malik8-Jan-08 20:40 
GeneralRe: C#:How to navigate through records in a datatable/dataset Pin
kssknov9-Jan-08 18:13
kssknov9-Jan-08 18:13 
GeneralRe: C#:How to navigate through records in a datatable/dataset Pin
Pete O'Hanlon8-Jan-08 21:38
mvePete O'Hanlon8-Jan-08 21:38 
GeneralStored Procedure in RDLC reports Pin
salman_syed_018-Jan-08 19:03
salman_syed_018-Jan-08 19:03 
GeneralRe: Stored Procedure in RDLC reports Pin
Paul Conrad26-Jan-08 6:53
professionalPaul Conrad26-Jan-08 6:53 
GeneralRe: Stored Procedure in RDLC reports Pin
miktom9-Feb-10 4:01
miktom9-Feb-10 4:01 
GeneralSub query issue... Pin
Krishna Varadharajan8-Jan-08 18:58
Krishna Varadharajan8-Jan-08 18:58 
GeneralRe: Sub query issue... Pin
Paul Conrad26-Jan-08 6:53
professionalPaul Conrad26-Jan-08 6:53 

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.