Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to build a byte from a BitArray? Pin
Guffa15-Aug-05 9:01
Guffa15-Aug-05 9:01 
GeneralRe: How to build a byte from a BitArray? Pin
bouli15-Aug-05 11:19
bouli15-Aug-05 11:19 
GeneralRe: How to build a byte from a BitArray? Pin
leppie15-Aug-05 10:27
leppie15-Aug-05 10:27 
QuestionHow to make ListBox multiselect Pin
zaboboa15-Aug-05 7:11
zaboboa15-Aug-05 7:11 
AnswerRe: How to make ListBox multiselect Pin
Guffa15-Aug-05 7:38
Guffa15-Aug-05 7:38 
AnswerRe: How to make ListBox multiselect Pin
Mohamad Al Husseiny15-Aug-05 7:39
Mohamad Al Husseiny15-Aug-05 7:39 
AnswerRe: How to make ListBox multiselect Pin
Mohamad Al Husseiny15-Aug-05 7:47
Mohamad Al Husseiny15-Aug-05 7:47 
QuestionDataGrid Editing, textbox does not hold updated text? Pin
Anonymous15-Aug-05 6:56
Anonymous15-Aug-05 6:56 
I am using a DataGrid on an ASP page and have enabled the EditCommand. When editing the textbox that comes up upon clicking Edit, and upon clicking Update, the TextBox does not contain the edited text, but instead the original text. What gives? Any ideas?

private void DataGrid1_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
{
TextBox newdesc = (TextBox)e.Item.Cells[2].Controls[0];
String desc = newdesc.Text;
Response.Write(desc);
DBImage dbImage = new DBImage(ConfigurationSettings.AppSettings["ConnectString"]);
dbImage.UpdateDesc(id,desc);
this.DataGrid1.EditItemIndex = -1;
this.DataGrid1.DataBind();
}
AnswerRe: DataGrid Editing, textbox does not hold updated text? Pin
Al Ortega15-Aug-05 7:13
Al Ortega15-Aug-05 7:13 
AnswerRe: DataGrid Editing, textbox does not hold updated text? Pin
Alomgir Miah15-Aug-05 8:50
Alomgir Miah15-Aug-05 8:50 
GeneralAllow shortcut to run once Pin
kani9815-Aug-05 6:45
kani9815-Aug-05 6:45 
GeneralRe: Allow shortcut to run once Pin
leppie15-Aug-05 7:38
leppie15-Aug-05 7:38 
GeneralRe: Allow shortcut to run once Pin
kani9815-Aug-05 8:23
kani9815-Aug-05 8:23 
GeneralRe: Allow shortcut to run once Pin
Dan Neely15-Aug-05 8:47
Dan Neely15-Aug-05 8:47 
GeneralToolbar buttons get clipped. Pin
Alomgir Miah15-Aug-05 6:40
Alomgir Miah15-Aug-05 6:40 
GeneralCmdKey exception Pin
zaboboa15-Aug-05 4:48
zaboboa15-Aug-05 4:48 
GeneralRe: CmdKey exception Pin
Stefan Troschuetz15-Aug-05 5:32
Stefan Troschuetz15-Aug-05 5:32 
GeneralRe: CmdKey exception Pin
DavidNohejl15-Aug-05 5:40
DavidNohejl15-Aug-05 5:40 
GeneralRe: CmdKey exception Pin
zaboboa15-Aug-05 6:45
zaboboa15-Aug-05 6:45 
GeneralLoading System.Drawing.Image from buffer Pin
A T I F15-Aug-05 4:38
A T I F15-Aug-05 4:38 
GeneralRe: Loading System.Drawing.Image from buffer Pin
Judah Gabriel Himango15-Aug-05 9:01
sponsorJudah Gabriel Himango15-Aug-05 9:01 
GeneralMultiple values in ComboBox.DisplayMember Pin
beqs15-Aug-05 4:09
beqs15-Aug-05 4:09 
GeneralRe: Multiple values in ComboBox.DisplayMember Pin
leppie15-Aug-05 4:55
leppie15-Aug-05 4:55 
GeneralRe: Multiple values in ComboBox.DisplayMember Pin
Mohamad Al Husseiny15-Aug-05 7:51
Mohamad Al Husseiny15-Aug-05 7:51 
GeneralRe: Multiple values in ComboBox.DisplayMember Pin
Alomgir Miah15-Aug-05 8:47
Alomgir Miah15-Aug-05 8:47 

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.