|
-
Oct 12th, 2006, 01:12 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] help with (datagridviewcell)
Im down to my last few conversions for my project
im trying to rename a cell in a datagridview to "un" if it meets certian critera
the "problem im running into is the line
userdgv["department", index] = "UN";
gives
Cannot implicitly convert type 'string' to System.Windows.Forms.DataGridViewCell'
okay so no big deal so i tried
userdgv["department", index] = (DataGridViewCell)"UN";
and got
Cannot convert type 'string' to 'System.Windows.Forms.DataGridViewCell'
some not sure how to convert it if i cant do it manualy or implicitly
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|