Click here to Skip to main content
15,917,321 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: Stream file saved in Oracle as BLOB to a Windows application Pin
crazylad6-Aug-09 5:59
crazylad6-Aug-09 5:59 
GeneralRe: Stream file saved in Oracle as BLOB to a Windows application Pin
dan!sh 6-Aug-09 8:49
professional dan!sh 6-Aug-09 8:49 
GeneralRe: Stream file saved in Oracle as BLOB to a Windows application Pin
crazylad6-Aug-09 12:15
crazylad6-Aug-09 12:15 
QuestionWhile Debugging Cannot See Whats Going on Application in VS 2008 Pin
εїзεїзεїз4-Aug-09 21:10
εїзεїзεїз4-Aug-09 21:10 
AnswerRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
Eddy Vluggen4-Aug-09 23:46
professionalEddy Vluggen4-Aug-09 23:46 
GeneralRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
εїзεїзεїз5-Aug-09 0:22
εїзεїзεїз5-Aug-09 0:22 
GeneralRe: While Debugging Cannot See Whats Going on Application in VS 2008 Pin
Adrian Cole5-Aug-09 11:43
Adrian Cole5-Aug-09 11:43 
Questiondatabinding in Grid Pin
jpk4204-Aug-09 19:05
jpk4204-Aug-09 19:05 
Hello All,

I have list that is globally declared and i have add button which will add one object to the list once it clicked .

I am binding this list to grid .

for the first time when i click add button item is added to the list and binded to grid too.

when i again click the same then it added the item to the list but still not reflected to grid and then i have done some modifictions and get the result.

please find the code

private void btnAdd_Click(object sender, EventArgs e)
{
objSapient.Add(new SapientDetails(txtName.Text,txtSapientID.Text,txtProjectName.Text,txtPhoneNumber.Text,txtExpr.Text));

if (objSapient.Count != 0)
{
grvDetails.DataSource = null;
}
grvDetails.DataSource = objSapient;





}


why do i need to set as datasource to null ?
why just grvDetails.DataSource = objSapient; is not sufficeint .

Please tell the reason for the same
AnswerRe: databinding in Grid Pin
dan!sh 4-Aug-09 19:52
professional dan!sh 4-Aug-09 19:52 
AnswerRe: databinding in Grid Pin
Henry Minute4-Aug-09 23:11
Henry Minute4-Aug-09 23:11 
QuestionHow to dynamically load images in Crystal Reports in Winform Pin
Nguyen Huong1-Aug-09 16:36
Nguyen Huong1-Aug-09 16:36 
Questionedit or update problem Pin
vinayh31-Jul-09 1:28
vinayh31-Jul-09 1:28 
AnswerRe: edit or update problem Pin
Dave Kreskowiak31-Jul-09 4:15
mveDave Kreskowiak31-Jul-09 4:15 
AnswerRe: edit or update problem Pin
Arindam Sinha1-Aug-09 1:42
Arindam Sinha1-Aug-09 1:42 
Questioncomboboxcontrol on Winform2008 Pin
vinayh30-Jul-09 20:29
vinayh30-Jul-09 20:29 
AnswerRe: comboboxcontrol on Winform2008 Pin
darkelv30-Jul-09 23:54
darkelv30-Jul-09 23:54 
GeneralRe: comboboxcontrol on Winform2008 Pin
vinayh31-Jul-09 0:48
vinayh31-Jul-09 0:48 
GeneralRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak31-Jul-09 4:14
mveDave Kreskowiak31-Jul-09 4:14 
AnswerRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak31-Jul-09 4:13
mveDave Kreskowiak31-Jul-09 4:13 
GeneralRe: comboboxcontrol on Winform2008 Pin
Mycroft Holmes1-Aug-09 23:54
professionalMycroft Holmes1-Aug-09 23:54 
GeneralRe: comboboxcontrol on Winform2008 Pin
Dave Kreskowiak2-Aug-09 6:14
mveDave Kreskowiak2-Aug-09 6:14 
GeneralRe: comboboxcontrol on Winform2008 Pin
Luc Pattyn2-Aug-09 7:53
sitebuilderLuc Pattyn2-Aug-09 7:53 
Questioncaption/text property of Button control Pin
vinayh30-Jul-09 20:13
vinayh30-Jul-09 20:13 
AnswerRe: caption/text property of Button control Pin
Ashfield31-Jul-09 1:24
Ashfield31-Jul-09 1:24 
AnswerRe: caption/text property of Button control Pin
Dave Kreskowiak31-Jul-09 4:05
mveDave Kreskowiak31-Jul-09 4:05 

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.