Click here to Skip to main content
15,886,919 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# Win Forms Drag n Drop email to .EML file Pin
Bernhard Hiller11-Mar-14 0:08
Bernhard Hiller11-Mar-14 0:08 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Member 875270111-Mar-14 0:13
Member 875270111-Mar-14 0:13 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Bernhard Hiller11-Mar-14 0:31
Bernhard Hiller11-Mar-14 0:31 
GeneralRe: C# Win Forms Drag n Drop email to .EML file Pin
Member 875270111-Mar-14 0:34
Member 875270111-Mar-14 0:34 
QuestionC# Windos app with SQl Issue Pin
manumaxma10-Mar-14 22:32
manumaxma10-Mar-14 22:32 
AnswerRe: C# Windos app with SQl Issue Pin
Eddy Vluggen11-Mar-14 0:59
professionalEddy Vluggen11-Mar-14 0:59 
QuestionDatagridview Timed Output Pin
Su069110-Mar-14 18:25
Su069110-Mar-14 18:25 
AnswerRe: Datagridview Timed Output Pin
OriginalGriff10-Mar-14 22:41
mveOriginalGriff10-Mar-14 22:41 
Yes, you can...but it's not very nice.
You would need to add a Timer, then read all your lines into a collection of some form.
In the timer Tick event, you would remove an item from the collection, add it to the DataGridView and then scroll the DGV to ensure it is visible (using CurrentCell will do it).

Alternatively, you can do much the same without the timer by moving the code into a BackgroundWorker thread and using Invoke on the DGV to add the new row and ensure it's visible. You would then sleep the thread between updates.

It would probably annoy the heck out of me as a user though.
Those who fail to learn history are doomed to repeat it. --- George Santayana (December 16, 1863 – September 26, 1952)
Those who fail to clear history are doomed to explain it. --- OriginalGriff (February 24, 1959 – ∞)

AnswerRe: Datagridview Timed Output Pin
Richard MacCutchan10-Mar-14 22:46
mveRichard MacCutchan10-Mar-14 22:46 
QuestionShortest Way to Shuffle Array Pin
computerpublic10-Mar-14 16:23
computerpublic10-Mar-14 16:23 
AnswerRe: Shortest Way to Shuffle Array Pin
BillWoodruff10-Mar-14 22:35
professionalBillWoodruff10-Mar-14 22:35 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 0:00
Simon_Whale11-Mar-14 0:00 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 6:59
computerpublic11-Mar-14 6:59 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 7:13
Simon_Whale11-Mar-14 7:13 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 7:20
computerpublic11-Mar-14 7:20 
GeneralRe: Shortest Way to Shuffle Array Pin
Simon_Whale11-Mar-14 7:29
Simon_Whale11-Mar-14 7:29 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 6:57
computerpublic11-Mar-14 6:57 
GeneralRe: Shortest Way to Shuffle Array Pin
BobJanova12-Mar-14 3:01
BobJanova12-Mar-14 3:01 
AnswerRe: Shortest Way to Shuffle Array Pin
GuyThiebaut10-Mar-14 22:47
professionalGuyThiebaut10-Mar-14 22:47 
GeneralRe: Shortest Way to Shuffle Array Pin
BillWoodruff10-Mar-14 23:22
professionalBillWoodruff10-Mar-14 23:22 
GeneralRe: Shortest Way to Shuffle Array Pin
computerpublic11-Mar-14 7:03
computerpublic11-Mar-14 7:03 
AnswerRe: Shortest Way to Shuffle Array Pin
Pete O'Hanlon11-Mar-14 7:51
mvePete O'Hanlon11-Mar-14 7:51 
AnswerRe: Shortest Way to Shuffle Array Pin
Henrik Jonsson13-Mar-14 11:10
Henrik Jonsson13-Mar-14 11:10 
AnswerRe: Shortest Way to Shuffle Array Pin
Henrik Jonsson13-Mar-14 22:05
Henrik Jonsson13-Mar-14 22:05 
QuestionRMO programming Pin
Member 1064095910-Mar-14 10:22
Member 1064095910-Mar-14 10:22 

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.