Click here to Skip to main content
15,883,901 members
Home / Discussions / Windows Forms
   

Windows Forms

 
Questionlost focus on form in Windows-Mobile Pin
goldsoft2-Nov-15 21:37
goldsoft2-Nov-15 21:37 
AnswerRe: lost focus on form in Windows-Mobile Pin
George Jonsson7-Nov-15 16:52
professionalGeorge Jonsson7-Nov-15 16:52 
QuestionHow can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
vpinraj8-Oct-15 4:00
vpinraj8-Oct-15 4:00 
AnswerRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
Pete O'Hanlon8-Oct-15 4:58
mvePete O'Hanlon8-Oct-15 4:58 
GeneralRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
vpinraj8-Oct-15 22:15
vpinraj8-Oct-15 22:15 
GeneralRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
Pete O'Hanlon8-Oct-15 22:40
mvePete O'Hanlon8-Oct-15 22:40 
GeneralRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
vpinraj9-Oct-15 0:13
vpinraj9-Oct-15 0:13 
GeneralRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
Pete O'Hanlon9-Oct-15 0:17
mvePete O'Hanlon9-Oct-15 0:17 
GeneralRe: How can I create a stable scheduler application to get data from some bio-metric machine for attendance purpose? Pin
vpinraj9-Oct-15 1:13
vpinraj9-Oct-15 1:13 
QuestionOpen Source PDF VIewer in Winform Pin
Anthony Fernando28-Sep-15 21:23
professionalAnthony Fernando28-Sep-15 21:23 
AnswerRe: Open Source PDF VIewer in Winform - Already answered in the C# forum Pin
Pete O'Hanlon28-Sep-15 21:37
mvePete O'Hanlon28-Sep-15 21:37 
QuestionConnecting windows phone to PC over wiffi Pin
VishalDesai23-Aug-15 20:25
professionalVishalDesai23-Aug-15 20:25 
AnswerRe: Connecting windows phone to PC over wiffi Pin
Richard MacCutchan23-Aug-15 21:14
mveRichard MacCutchan23-Aug-15 21:14 
NewsLabel and LinkLabel deprecated Pin
Yvan Rodrigues15-Aug-15 9:08
professionalYvan Rodrigues15-Aug-15 9:08 
GeneralRe: Label and LinkLabel deprecated Pin
Richard Deeming17-Aug-15 3:08
mveRichard Deeming17-Aug-15 3:08 
GeneralRe: Label and LinkLabel deprecated Pin
Nitzan Levi22-Aug-15 10:24
Nitzan Levi22-Aug-15 10:24 
QuestionWhich function trigger to load next set of data when user scroll datagridview c# Pin
Tridip Bhattacharjee18-Jul-15 6:48
professionalTridip Bhattacharjee18-Jul-15 6:48 
AnswerRe: Which function trigger to load next set of data when user scroll datagridview c# Pin
Eddy Vluggen20-Jul-15 9:45
professionalEddy Vluggen20-Jul-15 9:45 
QuestionHow to Raise event before and after loading data to datagridview when virtual mode on Pin
Tridip Bhattacharjee18-Jul-15 6:47
professionalTridip Bhattacharjee18-Jul-15 6:47 
My datagridview virtual mode is turned on.so i have to populate grid this way

private void dataGridView1_CellValueNeeded(object sender,DataGridViewCellValueEventArgs e)
{
e.Value = memoryCache.RetrieveElement(e.RowIndex, e.ColumnIndex);
}

from these thread

http://stackoverflow.com/questions/13856869/notify-when-event-from-another-class-is-triggered
http://stackoverflow.com/questions/4378339/raise-an-event-of-a-class-from-a-different-class-in-c-sharp

i got the logic how to raise event to calling environment.

i am in confusion from where to raise event in my code. apologized that i could not submit my full code but here i am mentioning a url where i post my full working code. please have a look and guide me how to raise event from my code.

so this is the url where i post my full working code

http://stackoverflow.com/questions/31458197/
how-to-sort-datagridview-data-when-virtual-mode-enable/31475803#31475803

My Objective

i want to raise a event when data load will start and again want to raise another event after populating all rows of the grid.

my Event handler code would look like

public void BeginDataLoad(object sender, EventArgs e)
{
//Do something here
}

public void EndDataLoad(object sender, EventArgs e)
{
//Do something here
}

looking for help with code sample. thanks
tbhattacharjee

AnswerRe: How to Raise event before and after loading data to datagridview when virtual mode on Pin
Eddy Vluggen20-Jul-15 9:42
professionalEddy Vluggen20-Jul-15 9:42 
QuestionUse of Unicode characters -> Syntax. Pin
Mateo Hernández17-Jul-15 3:30
Mateo Hernández17-Jul-15 3:30 
AnswerRe: Use of Unicode characters -> Syntax. Pin
Richard MacCutchan17-Jul-15 3:33
mveRichard MacCutchan17-Jul-15 3:33 
GeneralRe: Use of Unicode characters -> Syntax. Pin
Mateo Hernández18-Jul-15 3:37
Mateo Hernández18-Jul-15 3:37 
QuestionWindows Form Shown Pin
Mateo Hernández12-Jul-15 12:58
Mateo Hernández12-Jul-15 12:58 
AnswerRe: Windows Form Shown Pin
erwinliong12-Jul-15 14:55
erwinliong12-Jul-15 14:55 

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.