Click here to Skip to main content
15,888,461 members
Home / Discussions / C#
   

C#

 
AnswerRe: vehicle return failure charges Pin
leppie11-Sep-08 23:48
leppie11-Sep-08 23:48 
QuestionNeed help with Backspace button!! Pin
Lim Yuxuan11-Sep-08 22:24
Lim Yuxuan11-Sep-08 22:24 
AnswerRe: Need help with Backspace button!! Pin
William Ten Broek11-Sep-08 22:41
William Ten Broek11-Sep-08 22:41 
GeneralRe: Need help with Backspace button!! Pin
Lim Yuxuan12-Sep-08 2:17
Lim Yuxuan12-Sep-08 2:17 
AnswerRe: Need help with Backspace button!! Pin
Manas Bhardwaj11-Sep-08 23:07
professionalManas Bhardwaj11-Sep-08 23:07 
GeneralRe: Need help with Backspace button!! Pin
Lim Yuxuan12-Sep-08 2:18
Lim Yuxuan12-Sep-08 2:18 
QuestionTabControl Problem Pin
Haim Nachum11-Sep-08 21:38
Haim Nachum11-Sep-08 21:38 
QuestionDatgridviewButtonCell Issue Pin
supriyaP11-Sep-08 21:35
supriyaP11-Sep-08 21:35 
I have this code written to create a button at runtime, inspite of setting the text assign , the text is not visible on the button. Please help me.

DataGridViewButtonColumn objAssign;
objAssign = new DataGridViewButtonColumn();
objAssign.Name = "Assign";
objAssign.Text = "Assign";
objAssign.HeaderText = "Assign";
objAssign.ToolTipText = "Click to Assign";
dtgAssignIssues.Columns.Add(objAssign);

Then, I tried looping through the buttons using the following code, it sets the text for the button only if there is one row. could u plz help me for multiple rows.

DataGridViewButtonColumn objAssign;
objAssign = new DataGridViewButtonColumn();
objAssign.HeaderText = "Assign";
objAssign.Name = "Assign";
dtgAssignIssues.Columns.Add(objAssign);
//dtgAssignIssues.Columns[1].ReadOnly = false;

foreach (DataGridViewRow r in dtgAssignIssues.Rows)
{
//MessageBox.Show(objAssign.Index.ToString());
DataGridViewButtonCell b;
b = (DataGridViewButtonCell)r.Cells["Assign"];
b.Value = "Assign";
}
AnswerRe: DatgridviewButtonCell Issue Pin
supriyaP11-Sep-08 22:07
supriyaP11-Sep-08 22:07 
QuestionCreating setup for my application Pin
Shweta Gulati11-Sep-08 20:23
Shweta Gulati11-Sep-08 20:23 
AnswerRe: Creating setup for my application Pin
g_amol11-Sep-08 20:50
g_amol11-Sep-08 20:50 
QuestionCreating setup for my application Pin
g_amol11-Sep-08 20:53
g_amol11-Sep-08 20:53 
AnswerRe: Creating setup for my application Pin
Eslam Afifi12-Sep-08 5:25
Eslam Afifi12-Sep-08 5:25 
Questiondatalist [modified] Pin
soujanya G11-Sep-08 19:51
soujanya G11-Sep-08 19:51 
AnswerRe: datalist Pin
Manas Bhardwaj11-Sep-08 23:10
professionalManas Bhardwaj11-Sep-08 23:10 
GeneralRe: datalist Pin
soujanya G12-Sep-08 1:00
soujanya G12-Sep-08 1:00 
QuestionHttp status 401Unauthorized error in java web service Pin
newbieNeeraj11-Sep-08 19:32
newbieNeeraj11-Sep-08 19:32 
AnswerRe: Http status 401Unauthorized error in java web service Pin
#realJSOP11-Sep-08 23:36
mve#realJSOP11-Sep-08 23:36 
GeneralRe: Http status 401Unauthorized error in java web service Pin
leppie11-Sep-08 23:50
leppie11-Sep-08 23:50 
GeneralRe: Http status 401Unauthorized error in java web service Pin
#realJSOP11-Sep-08 23:54
mve#realJSOP11-Sep-08 23:54 
GeneralRe: Http status 401Unauthorized error in java web service Pin
leppie12-Sep-08 0:00
leppie12-Sep-08 0:00 
AnswerRe: Http status 401Unauthorized error in java web service Pin
leppie12-Sep-08 2:21
leppie12-Sep-08 2:21 
GeneralRe: Http status 401Unauthorized error in java web service Pin
newbieNeeraj15-Sep-08 20:37
newbieNeeraj15-Sep-08 20:37 
QuestionMDI Related issue Pin
supriyaP11-Sep-08 19:27
supriyaP11-Sep-08 19:27 
AnswerRe: MDI Related issue Pin
#realJSOP11-Sep-08 23:37
mve#realJSOP11-Sep-08 23:37 

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.