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

C#

 
AnswerRe: Show panel after a job is completed Pin
Luc Pattyn29-Feb-16 17:30
sitebuilderLuc Pattyn29-Feb-16 17:30 
AnswerRe: Show panel after a job is completed Pin
BillWoodruff1-Mar-16 1:00
professionalBillWoodruff1-Mar-16 1:00 
QuestionConditional Mathematical Statements Pin
Member 1226553728-Feb-16 21:39
Member 1226553728-Feb-16 21:39 
AnswerRe: Conditional Mathematical Statements Pin
Pete O'Hanlon28-Feb-16 22:08
mvePete O'Hanlon28-Feb-16 22:08 
AnswerRe: Conditional Mathematical Statements Pin
Sascha Lefèvre28-Feb-16 22:09
professionalSascha Lefèvre28-Feb-16 22:09 
Questionicon/image in datagridview Pin
Any_name_at_all28-Feb-16 1:52
Any_name_at_all28-Feb-16 1:52 
AnswerRe: icon/image in datagridview Pin
Dave Kreskowiak28-Feb-16 4:25
mveDave Kreskowiak28-Feb-16 4:25 
GeneralRe: icon/image in datagridview Pin
Any_name_at_all28-Feb-16 5:52
Any_name_at_all28-Feb-16 5:52 
Hi Dave, thanks for looking, I am just trying to understand DataGridView. So a column with icons on every row is what I am after.
Having said that, I'll go and check out the link you have provided as well.
============================================================================
Edit:
Here's how I got it to work.
C#
//==========================================================
// Add image

DataGridViewImageColumn img = new DataGridViewImageColumn();
img.Name = "img";
img.HeaderText = "Dice";
img.ValuesAreIcons = true;
dgvScore.Columns.Add(img);
Icon image0 = Properties.Resources.diceSix;
dgvScore.Rows[0].Cells["img"].Value = image0;
Icon image1 = Properties.Resources.diceOne;
dgvScore.Rows[1].Cells["img"].Value = image1;
//======================================================


modified 29-Feb-16 2:03am.

QuestionHow does Observable.Join work? Pin
Kenneth Haugland27-Feb-16 18:38
mvaKenneth Haugland27-Feb-16 18:38 
AnswerRe: How does Observable.Join work? Pin
Kenneth Haugland28-Feb-16 12:15
mvaKenneth Haugland28-Feb-16 12:15 
SuggestionRe: How does Observable.Join work? Pin
John Torjo28-Feb-16 18:44
professionalJohn Torjo28-Feb-16 18:44 
GeneralRe: How does Observable.Join work? Pin
Kenneth Haugland28-Feb-16 19:13
mvaKenneth Haugland28-Feb-16 19:13 
GeneralRe: How does Observable.Join work? Pin
John Torjo28-Feb-16 19:17
professionalJohn Torjo28-Feb-16 19:17 
GeneralRe: How does Observable.Join work? Pin
Kenneth Haugland29-Feb-16 18:40
mvaKenneth Haugland29-Feb-16 18:40 
GeneralRe: How does Observable.Join work? Pin
John Torjo29-Feb-16 19:40
professionalJohn Torjo29-Feb-16 19:40 
QuestionGrid View Filtering Pin
Member 1235559027-Feb-16 3:07
Member 1235559027-Feb-16 3:07 
AnswerRe: Grid View Filtering Pin
Afzaal Ahmad Zeeshan27-Feb-16 4:09
professionalAfzaal Ahmad Zeeshan27-Feb-16 4:09 
Questionwhy password is not decrypting Pin
Veena Hosur25-Feb-16 23:13
Veena Hosur25-Feb-16 23:13 
AnswerRe: why password is not decrypting Pin
Richard MacCutchan26-Feb-16 0:20
mveRichard MacCutchan26-Feb-16 0:20 
GeneralRe: why password is not decrypting Pin
Veena Hosur26-Feb-16 0:52
Veena Hosur26-Feb-16 0:52 
GeneralRe: why password is not decrypting Pin
Richard MacCutchan26-Feb-16 0:55
mveRichard MacCutchan26-Feb-16 0:55 
GeneralRe: why password is not decrypting Pin
Nathan Minier26-Feb-16 1:25
professionalNathan Minier26-Feb-16 1:25 
GeneralRe: why password is not decrypting Pin
Sascha Lefèvre26-Feb-16 1:44
professionalSascha Lefèvre26-Feb-16 1:44 
AnswerRe: why password is not decrypting Pin
ZurdoDev26-Feb-16 4:01
professionalZurdoDev26-Feb-16 4:01 
GeneralRe: why password is not decrypting Pin
Richard MacCutchan26-Feb-16 6:18
mveRichard MacCutchan26-Feb-16 6:18 

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.