Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
QuestionDisappearing of the text of a transparent RichTextBox control Pin
debobrata11-Sep-08 22:59
debobrata11-Sep-08 22:59 
AnswerRe: Disappearing of the text of a transparent RichTextBox control Pin
leppie12-Sep-08 3:06
leppie12-Sep-08 3:06 
GeneralRe: Disappearing of the text of a transparent RichTextBox control Pin
debobrata14-Sep-08 19:59
debobrata14-Sep-08 19:59 
Questionsystem management Pin
arkiboys11-Sep-08 22:58
arkiboys11-Sep-08 22:58 
Questionvehicle milage Pin
Jassim Rahma11-Sep-08 22:29
Jassim Rahma11-Sep-08 22:29 
AnswerRe: vehicle milage Pin
Manas Bhardwaj11-Sep-08 23:03
professionalManas Bhardwaj11-Sep-08 23:03 
AnswerRe: vehicle milage Pin
User 665811-Sep-08 23:39
User 665811-Sep-08 23:39 
AnswerRe: vehicle milage Pin
leppie11-Sep-08 23:49
leppie11-Sep-08 23:49 
AnswerRe: vehicle milage Pin
Ashfield12-Sep-08 1:46
Ashfield12-Sep-08 1:46 
Questionvehicle return failure charges Pin
Jassim Rahma11-Sep-08 22:26
Jassim Rahma11-Sep-08 22:26 
AnswerRe: vehicle return failure charges Pin
Manas Bhardwaj11-Sep-08 23:04
professionalManas Bhardwaj11-Sep-08 23:04 
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 

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.