Click here to Skip to main content
16,007,443 members
Home / Discussions / C#
   

C#

 
GeneralRe: problem in software updation of the application manually Pin
praveenkumar palla30-Apr-07 19:40
praveenkumar palla30-Apr-07 19:40 
Questionhow to create video conference in asp.net Pin
nimeshpatelmca30-Apr-07 3:30
nimeshpatelmca30-Apr-07 3:30 
QuestionResolution Independent Desktop Application Pin
wasife30-Apr-07 3:11
wasife30-Apr-07 3:11 
Generalmap overlay of dynamic objects Pin
Mazumdar30-Apr-07 2:57
Mazumdar30-Apr-07 2:57 
GeneralRe: map overlay of dynamic objects Pin
Colin Angus Mackay30-Apr-07 3:20
Colin Angus Mackay30-Apr-07 3:20 
GeneralRe: map overlay of dynamic objects Pin
Pete O'Hanlon30-Apr-07 3:36
mvePete O'Hanlon30-Apr-07 3:36 
QuestionRefreshing DataGridView Pin
tempmail130-Apr-07 2:29
tempmail130-Apr-07 2:29 
AnswerRe: Refreshing DataGridView Pin
Seishin#30-Apr-07 3:19
Seishin#30-Apr-07 3:19 
try filling one instance of dataset in background worker and then in background worker's completed event set the filled dataset to the dataset that is rowsource for the datagridview through binding source..

bindingSource.DataSource = dataSetB;
dataGridView.DataSource = bindingSource;
---------------
bw.doWork {... fill dataSetA ... }
---------------
bw.completed {
...
dataSetB = dataSetA;
bindingSource.DataSource = dataSetB;
...
}



life is study!!!

Questionprogramming Pin
TifTif87330-Apr-07 2:17
TifTif87330-Apr-07 2:17 
AnswerRe: programming Pin
Guffa30-Apr-07 2:32
Guffa30-Apr-07 2:32 
GeneralRe: programming Pin
TifTif87330-Apr-07 2:34
TifTif87330-Apr-07 2:34 
GeneralRe: programming Pin
Pete O'Hanlon30-Apr-07 3:29
mvePete O'Hanlon30-Apr-07 3:29 
GeneralRe: programming Pin
marky77730-Apr-07 4:06
marky77730-Apr-07 4:06 
AnswerRe: programming Pin
Latheesan30-Apr-07 2:33
Latheesan30-Apr-07 2:33 
GeneralRe: programming Pin
Colin Angus Mackay30-Apr-07 3:18
Colin Angus Mackay30-Apr-07 3:18 
GeneralRe: programming Pin
Harikrk30-Apr-07 5:50
Harikrk30-Apr-07 5:50 
QuestionMdiParent Error Pin
Gareth H30-Apr-07 2:14
Gareth H30-Apr-07 2:14 
Questionreplace richtextbox control Pin
Latheesan30-Apr-07 2:01
Latheesan30-Apr-07 2:01 
AnswerRe: replace richtextbox control Pin
Dan Neely30-Apr-07 3:43
Dan Neely30-Apr-07 3:43 
GeneralRe: replace richtextbox control Pin
Latheesan30-Apr-07 4:31
Latheesan30-Apr-07 4:31 
QuestionRe: replace richtextbox control Pin
Latheesan30-Apr-07 9:49
Latheesan30-Apr-07 9:49 
AnswerRe: replace richtextbox control Pin
.jpg1-May-07 7:10
.jpg1-May-07 7:10 
QuestionHow to resize control at runtime in C#? Pin
kunal220930-Apr-07 1:30
kunal220930-Apr-07 1:30 
AnswerRe: How to resize control at runtime in C#? Pin
Stefan Troschuetz30-Apr-07 1:35
Stefan Troschuetz30-Apr-07 1:35 
AnswerRe: how to find the minimum cost path in a matrix Pin
Christian Graus30-Apr-07 1:15
protectorChristian Graus30-Apr-07 1:15 

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.