CatManDave
MIS
Guys,
I'm still sort of new to .NET. I am having problems being able to get selected values from one of my forms. All I get are the original values and not any changes that may have been made.
I have tried everything I can think of from completely redoing the form from scratch to creating a new project using just that one form all with the same results.
Here's the code snippet where I am pulling off the values:
recID = txtReqNo.Text
recDate = txtDate.SelectedDate
AAID = ddlAdmin.SelectedValue
DocID = ddlPhysician.SelectedValue
reason = txtReason.Text
Status = ddlStatus.SelectedValue
comments = txtComment.Text
delete = ddlDelete.SelectedValue
Seems rather basic doesn't it? I have done maybe 2 dozen similar type forms with no problems, but for some reason here I can only get the original values and not any that have been changed.
I am totally out of ideas. I can't believe I'm stuck on this issue and have been for about 8 hours. I'm about ready to pull my hair out or pour myself a drink or both
If someone could even point me in the right direction or give me something else to look at, it would be much appreciated.
Thanks in advance for your help,
Dave
I'm still sort of new to .NET. I am having problems being able to get selected values from one of my forms. All I get are the original values and not any changes that may have been made.
I have tried everything I can think of from completely redoing the form from scratch to creating a new project using just that one form all with the same results.
Here's the code snippet where I am pulling off the values:
recID = txtReqNo.Text
recDate = txtDate.SelectedDate
AAID = ddlAdmin.SelectedValue
DocID = ddlPhysician.SelectedValue
reason = txtReason.Text
Status = ddlStatus.SelectedValue
comments = txtComment.Text
delete = ddlDelete.SelectedValue
Seems rather basic doesn't it? I have done maybe 2 dozen similar type forms with no problems, but for some reason here I can only get the original values and not any that have been changed.
I am totally out of ideas. I can't believe I'm stuck on this issue and have been for about 8 hours. I'm about ready to pull my hair out or pour myself a drink or both
If someone could even point me in the right direction or give me something else to look at, it would be much appreciated.
Thanks in advance for your help,
Dave