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

C#

 
GeneralRe: Proper way of creating a form with multiple pages Pin
Christian Graus29-Jun-09 16:19
protectorChristian Graus29-Jun-09 16:19 
GeneralRe: Proper way of creating a form with multiple pages Pin
EliottA29-Jun-09 15:51
EliottA29-Jun-09 15:51 
QuestionNeed to search a webpage for a word OR search links in it Pin
p3rson29-Jun-09 12:47
p3rson29-Jun-09 12:47 
AnswerRe: Need to search a webpage for a word OR search links in it Pin
scottgp29-Jun-09 13:38
professionalscottgp29-Jun-09 13:38 
AnswerRe: Need to search a webpage for a word OR search links in it Pin
EliottA29-Jun-09 13:49
EliottA29-Jun-09 13:49 
GeneralRe: Need to search a webpage for a word OR search links in it Pin
p3rson29-Jun-09 22:39
p3rson29-Jun-09 22:39 
GeneralRe: Need to search a webpage for a word OR search links in it Pin
J4amieC29-Jun-09 23:19
J4amieC29-Jun-09 23:19 
GeneralRe: Need to search a webpage for a word OR search links in it Pin
DaveyM6929-Jun-09 23:33
professionalDaveyM6929-Jun-09 23:33 
GeneralRe: Need to search a webpage for a word OR search links in it Pin
EliottA30-Jun-09 2:45
EliottA30-Jun-09 2:45 
AnswerRe: Need to search a webpage for a word OR search links in it Pin
p3rson30-Jun-09 8:53
p3rson30-Jun-09 8:53 
QuestionProblem with reading excel 2007. Pin
hdv21229-Jun-09 12:43
hdv21229-Jun-09 12:43 
QuestionFilter DataTable Pin
skyline9229-Jun-09 12:26
skyline9229-Jun-09 12:26 
AnswerRe: Filter DataTable Pin
Henry Minute29-Jun-09 13:35
Henry Minute29-Jun-09 13:35 
GeneralRe: Filter DataTable [modified] Pin
skyline9230-Jun-09 6:38
skyline9230-Jun-09 6:38 
Hey!

Thank you for your answer!
That helped me a lot!

My current solution looks as follows:
frmMailBatchMalformedMails frm_malformedMails = new frmMailBatchMalformedMails();
frm_malformedMails.GridViewDataSource = this._boMailbatch.GetMalformedAddressesView();
frm_malformedMails.Show();

-----------------------

public DataView GetMalformedAddressesView()
{
    EnumerableRowCollection<DataRow> malformedMailsQuery =
        from addressRow in AddressTable.AsEnumerable()
        where !ValidateMailAddress(addressRow[MailColumnIndex].ToString())
        select addressRow;

    return malformedMailsQuery.AsDataView();
}


I think that is a good solution (also includes LINQ for filtering the malformed mail addresses in the rows).
Is it possible to save the changes in the second datagridview temporary and show the changes in the first datagridview only then, when the user clicks the save-button?
How would you solve that?

Thank you very much! Thumbs Up | :thumbsup:

modified on Tuesday, June 30, 2009 12:57 PM

GeneralRe: Filter DataTable Pin
Henry Minute30-Jun-09 9:59
Henry Minute30-Jun-09 9:59 
GeneralThere is no editor available FOR WAP FORM Make sure the application for the file type (.xaml) Pin
rodbiser29-Jun-09 11:36
rodbiser29-Jun-09 11:36 
GeneralRe: There is no editor available FOR WAP FORM Make sure the application for the file type (.xaml) Pin
donglotus23-Jun-11 6:54
donglotus23-Jun-11 6:54 
QuestionCancelEventArgs - multiple subscribers Pin
DaveyM6929-Jun-09 11:08
professionalDaveyM6929-Jun-09 11:08 
AnswerRe: CancelEventArgs - multiple subscribers [modified] Pin
DaveyM6929-Jun-09 22:20
professionalDaveyM6929-Jun-09 22:20 
QuestionInvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 10:20
para para29-Jun-09 10:20 
AnswerRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
Christian Graus29-Jun-09 10:44
protectorChristian Graus29-Jun-09 10:44 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 10:48
para para29-Jun-09 10:48 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
Christian Graus29-Jun-09 11:37
protectorChristian Graus29-Jun-09 11:37 
GeneralRe: InvalidOperationException - object is currently in use elsewhere - red cross Pin
para para29-Jun-09 19:14
para para29-Jun-09 19:14 
Questionweb automation using axwebbrowser Pin
T_Teef29-Jun-09 9:59
T_Teef29-Jun-09 9:59 

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.