Can someone advise as to what the best practice is to create a simple automated report email application that is based on 3 tab delimited files? I started using arrays then I started playing with DataTable but got stuck on a read-only exception. Before I spent too much time fixing that problem I wondered if this was the best approach or of there was a better object to contain these tables. Especially given that I do not need to read back to them.
And once I do have the tables how does one best hunt for records that meet a criteria? An example might be from 3 tables Client, SalesReps, and SalesRepContact which are related using a key SalesRepID. I might want to make a list of all the sales reps who are missing their contacts or email addresses in a contact for all the active clients.
And once I do have the tables how does one best hunt for records that meet a criteria? An example might be from 3 tables Client, SalesReps, and SalesRepContact which are related using a key SalesRepID. I might want to make a list of all the sales reps who are missing their contacts or email addresses in a contact for all the active clients.