Click here to Skip to main content
15,891,316 members
Home / Discussions / C#
   

C#

 
AnswerRe: Read every single keyboard press? Pin
Midnight Ahri16-Jan-13 20:27
Midnight Ahri16-Jan-13 20:27 
AnswerRe: Read every single keyboard press? Pin
Dave Kreskowiak16-Jan-13 17:32
mveDave Kreskowiak16-Jan-13 17:32 
AnswerRe: Read every single keyboard press? Pin
Eddy Vluggen17-Jan-13 0:41
professionalEddy Vluggen17-Jan-13 0:41 
GeneralRe: Read every single keyboard press? Pin
jschell17-Jan-13 8:30
jschell17-Jan-13 8:30 
AnswerRe: Read every single keyboard press? Pin
Eddy Vluggen17-Jan-13 9:39
professionalEddy Vluggen17-Jan-13 9:39 
AnswerRe: Read every single keyboard press? Pin
Abhinav S16-Jan-13 17:16
Abhinav S16-Jan-13 17:16 
AnswerRe: Read every single keyboard press? Pin
Midnight Ahri16-Jan-13 18:09
Midnight Ahri16-Jan-13 18:09 
QuestionJoining 2 DataSets Pin
RickSharp16-Jan-13 7:19
RickSharp16-Jan-13 7:19 
Hello all,

I have 2 datasets from 2 different Web Services and reading them into DataSets:

DataSet dsLoans = new DataSet();
dsLoans.ReadXml(XmlReader.Create(new StringReader(myWLSreference.GetCustomLoanExport2())));


DataSet dsCompany = new DataSet();
dsCompany.ReadXml(XmlReader.Create(new StringReader(myWLSreference.GetCustomCompanyExport2())));

I have done multiple searches and have come across:
http://forums.asp.net/t/1708173.aspx/1?how+can+i+inner+join+tables+within+DATASET+[^]

http://stackoverflow.com/questions/10502512/c-sharp-datatable-inner-join-with-dynamic-columns?lq=1[^]

http://support.microsoft.com/kb/326080/en-us[^]

But no joy yet. I have searched and searched.

I cant use Datatables because i'm reading the dataset into a List<> with a foreach statement like so:

C#
foreach (DataRow row in JoinedDataSet.Tables["Loan"].Rows)
       {

           WireEntryLoan newEntryLoan = new WireEntryLoan();

           newEntryLoan.custName = row["MtgeeLoanName"].ToString();
           newEntryLoan.loanWLSID = row["LoanNumber"].ToString();


Then binding that to GridView.

How in the world can I join 2 DataSets on a common field?!
SuggestionRe: Joining 2 DataSets Pin
HuorSwords17-Jan-13 2:16
HuorSwords17-Jan-13 2:16 
Questionwpf OR windows forms ??? Pin
Mohamad Shahmardan16-Jan-13 3:56
Mohamad Shahmardan16-Jan-13 3:56 
AnswerRe: wpf OR windows forms ??? Pin
Richard MacCutchan16-Jan-13 4:20
mveRichard MacCutchan16-Jan-13 4:20 
AnswerRe: wpf OR windows forms ??? Pin
Pete O'Hanlon16-Jan-13 4:26
mvePete O'Hanlon16-Jan-13 4:26 
AnswerRe: wpf OR windows forms ??? Pin
Dave Kreskowiak16-Jan-13 4:57
mveDave Kreskowiak16-Jan-13 4:57 
AnswerRe: wpf OR windows forms ??? Pin
Thomas Daniels16-Jan-13 5:26
mentorThomas Daniels16-Jan-13 5:26 
AnswerRe: wpf OR windows forms ??? Pin
Abhinav S16-Jan-13 7:19
Abhinav S16-Jan-13 7:19 
AnswerRe: wpf OR windows forms ??? Pin
Mohamad Shahmardan16-Jan-13 8:26
Mohamad Shahmardan16-Jan-13 8:26 
AnswerRe: wpf OR windows forms ??? Pin
PIEBALDconsult16-Jan-13 11:16
mvePIEBALDconsult16-Jan-13 11:16 
QuestionWMI causing Access is denied Pin
vanikanc16-Jan-13 3:36
vanikanc16-Jan-13 3:36 
AnswerRe: WMI causing Access is denied Pin
Dave Kreskowiak16-Jan-13 3:41
mveDave Kreskowiak16-Jan-13 3:41 
GeneralRe: WMI causing Access is denied Pin
vanikanc16-Jan-13 3:56
vanikanc16-Jan-13 3:56 
GeneralRe: WMI causing Access is denied Pin
vanikanc16-Jan-13 4:31
vanikanc16-Jan-13 4:31 
GeneralRe: WMI causing Access is denied Pin
Dave Kreskowiak16-Jan-13 4:55
mveDave Kreskowiak16-Jan-13 4:55 
GeneralRe: WMI causing Access is denied Pin
Dave Kreskowiak16-Jan-13 4:57
mveDave Kreskowiak16-Jan-13 4:57 
QuestionProblem getting data from a stored procedure (Oracle) Pin
GDavy16-Jan-13 3:11
GDavy16-Jan-13 3:11 
AnswerRe: Problem getting data from a stored procedure (Oracle) Pin
micke.andersson28-Jan-13 3:39
micke.andersson28-Jan-13 3:39 

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.