Click here to Skip to main content
15,917,005 members
Home / Discussions / C#
   

C#

 
QuestionDrawing WMF (or any other vector file) with Antialiasing? Pin
Mike Novy23-Nov-06 6:33
Mike Novy23-Nov-06 6:33 
QuestionCtrl+Click to follow definitions Pin
Ray Hayes23-Nov-06 6:13
Ray Hayes23-Nov-06 6:13 
AnswerRe: Ctrl+Click to follow definitions Pin
Kevin McFarlane23-Nov-06 6:27
Kevin McFarlane23-Nov-06 6:27 
AnswerRe: Ctrl+Click to follow definitions Pin
Rob Graham23-Nov-06 6:28
Rob Graham23-Nov-06 6:28 
QuestionPrinting gridview and images Pin
netJP12L23-Nov-06 6:06
netJP12L23-Nov-06 6:06 
AnswerRe: Printing gridview and images Pin
Nader Elshehabi23-Nov-06 7:48
Nader Elshehabi23-Nov-06 7:48 
GeneralRe: Printing gridview and images Pin
netJP12L23-Nov-06 8:53
netJP12L23-Nov-06 8:53 
QuestionRow associated with the currency manager's position cannot be made invisible Pin
hdv21223-Nov-06 6:03
hdv21223-Nov-06 6:03 
hi i add an Unbound DataGridViewCheckBoxColumn to my datagridView for user to select each record that he wants to print (print with DataGridViewPrinter Class), I want to invisible other records that checkbox is False or null,
but at RunTime when i set a checkbox to true and uncheck it again (set to false)
when i want to invisible that record .. the following error shown me :

Row associated with the currency manager's position cannot be made invisible

my code is :

foreach (DataGridViewRow _gridViewRow in dataGridView1.Rows)
{
if (_gridViewRow.Cells[0].Value != null)
{
if (_gridViewRow.Cells[0].Value.ToString() == "True")
{
_gridViewRow.Visible = true;
}
else if (_gridViewRow.Cells[0].Value.ToString() == "False")
{
_gridViewRow.Cells[0].Value = null;
ds_zamin1.Khaneh_1.Rows.RemoveAt(_gridViewRow.Index);
}
}

else
{
_gridViewRow.DataGridView.EndEdit();
_gridViewRow.Visible = false; //Error Occured In this Line
}
}
AnswerRe: Row associated with the currency manager's position cannot be made invisible Pin
redivider2-Feb-09 8:49
redivider2-Feb-09 8:49 
AnswerRe: Row associated with the currency manager's position cannot be made invisible Pin
Rupesh Tarwade16-Mar-09 23:44
professionalRupesh Tarwade16-Mar-09 23:44 
GeneralRe: Row associated with the currency manager's position cannot be made invisible Pin
lildare3-Oct-11 23:15
lildare3-Oct-11 23:15 
Questionchange app.config [modified] Pin
Harikrk23-Nov-06 5:34
Harikrk23-Nov-06 5:34 
AnswerRe: change app.config Pin
Nader Elshehabi23-Nov-06 7:55
Nader Elshehabi23-Nov-06 7:55 
GeneralRe: change app.config Pin
Harikrk23-Nov-06 15:09
Harikrk23-Nov-06 15:09 
GeneralRe: change app.config Pin
Nader Elshehabi23-Nov-06 20:30
Nader Elshehabi23-Nov-06 20:30 
QuestionHow to bind a TList with a DataGridView that contains DataGridViewComboBoxColumns Pin
Jost Pedro23-Nov-06 4:48
Jost Pedro23-Nov-06 4:48 
QuestionPropertygird question Pin
Hampus@foi23-Nov-06 4:20
Hampus@foi23-Nov-06 4:20 
QuestionCould it be possible? Pin
V.23-Nov-06 3:39
professionalV.23-Nov-06 3:39 
AnswerRe: Could it be possible? Pin
Jon Hulatt23-Nov-06 3:48
Jon Hulatt23-Nov-06 3:48 
GeneralRe: Could it be possible? Pin
V.23-Nov-06 3:53
professionalV.23-Nov-06 3:53 
AnswerRe: Could it be possible? Pin
Guffa23-Nov-06 6:31
Guffa23-Nov-06 6:31 
GeneralRe: Could it be possible? Pin
V.23-Nov-06 20:31
professionalV.23-Nov-06 20:31 
JokeRe: Could it be possible? Pin
CPallini23-Nov-06 3:53
mveCPallini23-Nov-06 3:53 
GeneralRe: Could it be possible? Pin
V.23-Nov-06 3:54
professionalV.23-Nov-06 3:54 
QuestionHow to create hyperlink column in datagrid Pin
oxitai23-Nov-06 3:32
oxitai23-Nov-06 3:32 

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.