Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
AnswerRe: Regex and Split() usage Pin
Anurag Gandhi4-Aug-10 19:56
professionalAnurag Gandhi4-Aug-10 19:56 
AnswerRe: Regex and Split() usage Pin
AspDotNetDev5-Aug-10 11:04
protectorAspDotNetDev5-Aug-10 11:04 
GeneralRe: Regex and Split() usage Pin
JoeSchmoe0075-Aug-10 11:16
JoeSchmoe0075-Aug-10 11:16 
QuestionIllegal characters in path. Pin
Vimalsoft(Pty) Ltd4-Aug-10 3:57
professionalVimalsoft(Pty) Ltd4-Aug-10 3:57 
AnswerRe: Illegal characters in path. Pin
Richard MacCutchan4-Aug-10 6:22
mveRichard MacCutchan4-Aug-10 6:22 
GeneralRe: Illegal characters in path. Pin
Vimalsoft(Pty) Ltd4-Aug-10 8:00
professionalVimalsoft(Pty) Ltd4-Aug-10 8:00 
AnswerRe: Illegal characters in path. Pin
DaveyM694-Aug-10 11:58
professionalDaveyM694-Aug-10 11:58 
QuestionBinding Source Issue Pin
spankyleo1234-Aug-10 2:59
spankyleo1234-Aug-10 2:59 
Hi,

Am developing a winforms app using C#.
I am using binding source to design the forms.

I have a combobox with items "Yes" and "No"
depending on the selection of this I enable or disable a text box.
private void MyComboBox_TextChanged(object sender, EventArgs e)
{
   if(MyComboBox.Text == "Yes")
     {
       textBox1.Enabled = true;
     }
   else
     {
       textox1.Text = ""; //am setting the text box to null if there is any text in it.
       textbox1.Enabled = false;
     }
}



Lets say I have selected "Yes" from the combobox and entered text into the textbox1 and save the input on save_click.
the value gets stored into the database.

Now if I go back to the form and edit it....I now change the combox to "NO". It clears the text in the textbox1 to "". When i click on save...it saves the record.
But the problem is that it is not updating it into the database.?

Any idea why this is happening or do i need to include more code into the event.

Help Appreciated..thanks,
AnswerRe: Binding Source Issue Pin
Ennis Ray Lynch, Jr.4-Aug-10 5:02
Ennis Ray Lynch, Jr.4-Aug-10 5:02 
GeneralRe: Binding Source Issue Pin
spankyleo1234-Aug-10 5:23
spankyleo1234-Aug-10 5:23 
QuestionC#.NET 3.5 Excel 2007 Ribbon Add-in VS 2008 run macro Pin
Wheels0124-Aug-10 2:56
Wheels0124-Aug-10 2:56 
AnswerRe: C#.NET 3.5 Excel 2007 Ribbon Add-in VS 2008 run macro Pin
Wheels0124-Aug-10 8:18
Wheels0124-Aug-10 8:18 
QuestionSQL Query string issue Pin
MumbleB4-Aug-10 2:54
MumbleB4-Aug-10 2:54 
AnswerRe: SQL Query string issue Pin
Eddy Vluggen4-Aug-10 3:02
professionalEddy Vluggen4-Aug-10 3:02 
AnswerRe: SQL Query string issue Pin
PIEBALDconsult4-Aug-10 3:10
mvePIEBALDconsult4-Aug-10 3:10 
GeneralRe: SQL Query string issue Pin
MumbleB4-Aug-10 4:35
MumbleB4-Aug-10 4:35 
GeneralRe: SQL Query string issue Pin
Eddy Vluggen4-Aug-10 10:12
professionalEddy Vluggen4-Aug-10 10:12 
GeneralRe: SQL Query string issue Pin
MumbleB4-Aug-10 11:27
MumbleB4-Aug-10 11:27 
GeneralRe: SQL Query string issue Pin
Eddy Vluggen5-Aug-10 0:26
professionalEddy Vluggen5-Aug-10 0:26 
GeneralRe: SQL Query string issue Pin
PIEBALDconsult4-Aug-10 15:39
mvePIEBALDconsult4-Aug-10 15:39 
GeneralRe: SQL Query string issue Pin
MumbleB4-Aug-10 11:30
MumbleB4-Aug-10 11:30 
GeneralRe: SQL Query string issue Pin
PIEBALDconsult4-Aug-10 15:37
mvePIEBALDconsult4-Aug-10 15:37 
GeneralRe: SQL Query string issue Pin
MumbleB10-Aug-10 6:28
MumbleB10-Aug-10 6:28 
GeneralRe: SQL Query string issue Pin
PIEBALDconsult10-Aug-10 14:39
mvePIEBALDconsult10-Aug-10 14:39 
QuestionSave DataGridView changes to database through multiple layers Pin
anthasaurus4-Aug-10 0:45
anthasaurus4-Aug-10 0:45 

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.