Click here to Skip to main content
16,012,468 members
Home / Discussions / C#
   

C#

 
AnswerRe: Installation System Pin
il_masacratore9-Oct-07 21:36
il_masacratore9-Oct-07 21:36 
Question...(object sender, System.EventArgs e) Pin
Imran Adam9-Oct-07 8:43
Imran Adam9-Oct-07 8:43 
AnswerRe: ...(object sender, System.EventArgs e) Pin
Not Active9-Oct-07 8:59
mentorNot Active9-Oct-07 8:59 
GeneralRe: ...(object sender, System.EventArgs e) Pin
Imran Adam9-Oct-07 9:04
Imran Adam9-Oct-07 9:04 
AnswerRe: ...(object sender, System.EventArgs e) Pin
Scott Dorman9-Oct-07 9:49
professionalScott Dorman9-Oct-07 9:49 
GeneralRe: ...(object sender, System.EventArgs e) Pin
Imran Adam9-Oct-07 10:17
Imran Adam9-Oct-07 10:17 
GeneralRe: ...(object sender, System.EventArgs e) Pin
Scott Dorman9-Oct-07 10:27
professionalScott Dorman9-Oct-07 10:27 
QuestionDataGridView HeaderCell Painting Pin
cris34569-Oct-07 7:30
cris34569-Oct-07 7:30 
Hi all,

I'm using the CellsPainting event to draw a bitmap for a particular header cell. Here is code that does this(the bitmap is in an imagelist).

//this.images is an ImageList with my bitmap

void dataGridView1_CellPainting(object sender,
DataGridViewCellPaintingEventArgs e)
{
if (e.ColumnIndex == 1 && e.RowIndex == -1)
{
e.PaintBackground(e.ClipBounds, false);

Point pt = e.CellBounds.Location;// where you want the bitmap
in the cell
int offset = (e.CellBounds.Width -
this.images.ImageSize.Width) / 2;
pt.X += offset;
pt.Y += 1;
this.images.Draw(e.Graphics, pt, 0);
e.Handled = true;
}
}


I;m using the MOuseDown event to get the index of the right clicked column


private void dataGridView1_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
DataGridView.HitTestInfo hit = dataGridView1.HitTest(e.X, e.Y);
poz = dataGridView1.Columns[hit.ColumnIndex].Index;
dataGridView1.CellPainting +=new DataGridViewCellPaintingEventHandler(dataGridView1_CellPainting);
}
}

My problem is that when reordering the columns the headerCell is going crazy. The header cell value, witch is a string(the column name) starts to have a strange behavior.
Is there anything I'm missing here please?

Questionsocket server disconnect Pin
gizmokaka9-Oct-07 7:25
gizmokaka9-Oct-07 7:25 
AnswerRe: socket server disconnect Pin
led mike9-Oct-07 7:54
led mike9-Oct-07 7:54 
GeneralRe: socket server disconnect Pin
gizmokaka9-Oct-07 8:09
gizmokaka9-Oct-07 8:09 
GeneralRe: socket server disconnect Pin
led mike9-Oct-07 8:29
led mike9-Oct-07 8:29 
Questionlabel text distorted in windows form Pin
sudhirkamath9-Oct-07 6:28
sudhirkamath9-Oct-07 6:28 
AnswerRe: label text distorted in windows form Pin
Juraj Borza9-Oct-07 9:44
Juraj Borza9-Oct-07 9:44 
GeneralRe: label text distorted in windows form Pin
Peter Vertes9-Oct-07 10:06
Peter Vertes9-Oct-07 10:06 
QuestionDatabase Backups Multi-Threading Pin
jikubhai9-Oct-07 5:37
jikubhai9-Oct-07 5:37 
AnswerRe: Database Backups Multi-Threading Pin
led mike9-Oct-07 6:00
led mike9-Oct-07 6:00 
GeneralRe: Database Backups Multi-Threading Pin
jikubhai9-Oct-07 19:15
jikubhai9-Oct-07 19:15 
GeneralRe: Database Backups Multi-Threading Pin
led mike10-Oct-07 4:40
led mike10-Oct-07 4:40 
QuestionSorting a ListView by more than one column Pin
scotlandc9-Oct-07 5:32
scotlandc9-Oct-07 5:32 
AnswerRe: Sorting a ListView by more than one column Pin
led mike9-Oct-07 6:05
led mike9-Oct-07 6:05 
AnswerRe: Sorting a ListView by more than one column Pin
Luc Pattyn9-Oct-07 6:10
sitebuilderLuc Pattyn9-Oct-07 6:10 
AnswerRe: Sorting a ListView by more than one column Pin
mav.northwind9-Oct-07 19:18
mav.northwind9-Oct-07 19:18 
Questionn00b file manipulation help.. Pin
Dio229-Oct-07 5:14
Dio229-Oct-07 5:14 
AnswerRe: n00b file manipulation help.. Pin
led mike9-Oct-07 6:06
led mike9-Oct-07 6:06 

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.