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

C#

 
Questionc# to vb.net Pin
Member 387988129-Mar-07 0:46
Member 387988129-Mar-07 0:46 
AnswerRe: c# to vb.net Pin
Colin Angus Mackay29-Mar-07 0:50
Colin Angus Mackay29-Mar-07 0:50 
GeneralRe: c# to vb.net Pin
Member 387988129-Mar-07 0:55
Member 387988129-Mar-07 0:55 
GeneralRe: c# to vb.net Pin
Colin Angus Mackay29-Mar-07 1:04
Colin Angus Mackay29-Mar-07 1:04 
GeneralRe: c# to vb.net Pin
Member 387988129-Mar-07 1:09
Member 387988129-Mar-07 1:09 
AnswerRe: c# to vb.net Pin
Kevin McFarlane29-Mar-07 11:01
Kevin McFarlane29-Mar-07 11:01 
AnswerRe: c# to vb.net Pin
Dave Doknjas29-Mar-07 13:24
Dave Doknjas29-Mar-07 13:24 
QuestionProblem with datagridview Pin
t4ure4n29-Mar-07 0:41
t4ure4n29-Mar-07 0:41 
Hello every 1

I am trying to make certain row of a datagridview invisible through my program but i am receiving following

InvalidOperatoinException:

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


I have noticed that this problem occurs only if a row is selected in the datagridview
(My Solution: I have set the row selection property to single row and i deselect the row before making it invisible) even then the error is still coming
<code> private void button1_Click(object sender, EventArgs e)
        {
            
            this.dgvActiveHorse.SelectedRows[0].Selected = false;
            
            foreach (DataGridViewRow dRow in this.dgvActiveHorse.Rows)
            {
                if (isClear(1, dRow.Index))
                {              
                    //dRow.Selected = false; (I have done this as well)
                    dRow.Visible = false;
                    Application.DoEvents();
                }
            }</code> 


o O º(`'·.,(`'·., ☆,.·''),.·'')º O o°
»·'"`»* *☆ t4ure4n ☆* *«·'"`«
°o O º(,.·''(,.·'' ☆`'·.,)`'·.,)º O o°

AnswerRe: Problem with datagridview Pin
Saso Tepina31-Mar-09 8:38
Saso Tepina31-Mar-09 8:38 
QuestionRead/Write Pin
7129-Mar-07 0:24
7129-Mar-07 0:24 
AnswerRe: Read/Write Pin
Colin Angus Mackay29-Mar-07 0:31
Colin Angus Mackay29-Mar-07 0:31 
GeneralRe: Read/Write Pin
7129-Mar-07 1:35
7129-Mar-07 1:35 
GeneralRe: Read/Write Pin
Colin Angus Mackay29-Mar-07 3:18
Colin Angus Mackay29-Mar-07 3:18 
AnswerRe: Read/Write Pin
gauthee29-Mar-07 0:32
gauthee29-Mar-07 0:32 
GeneralRe: Read/Write Pin
Colin Angus Mackay29-Mar-07 0:35
Colin Angus Mackay29-Mar-07 0:35 
QuestionProblem regarding memory allocation Pin
Farhan Ali28-Mar-07 23:42
Farhan Ali28-Mar-07 23:42 
AnswerRe: Problem regarding memory allocation Pin
Pete O'Hanlon29-Mar-07 2:04
mvePete O'Hanlon29-Mar-07 2:04 
Questionformat problem Pin
darkcalin28-Mar-07 23:34
darkcalin28-Mar-07 23:34 
AnswerRe: format problem Pin
mabo4228-Mar-07 23:50
mabo4228-Mar-07 23:50 
GeneralRe: format problem Pin
darkcalin28-Mar-07 23:53
darkcalin28-Mar-07 23:53 
Questionreading data from dataset to xml Pin
JacquesDP28-Mar-07 23:31
JacquesDP28-Mar-07 23:31 
AnswerRe: reading data from dataset to xml Pin
darkcalin28-Mar-07 23:36
darkcalin28-Mar-07 23:36 
GeneralRe: reading data from dataset to xml Pin
JacquesDP28-Mar-07 23:40
JacquesDP28-Mar-07 23:40 
GeneralRe: reading data from dataset to xml Pin
darkcalin28-Mar-07 23:43
darkcalin28-Mar-07 23:43 
GeneralRe: reading data from dataset to xml Pin
JacquesDP29-Mar-07 0:53
JacquesDP29-Mar-07 0:53 

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.