|
|
|
Monday, 19 December 2011 02:18 |
This will help you only when you have to filter distinct records based on specified fields.
e.g. I have a table called UserDetail which contains the following fields:
UserID | Name | Mobile | Email | City | State
Now I want to only display distinct records with Name, City and State, then you can use:
string[] TobeDistinct = {"Name","City","State"};
DataTable dtDistinct = GetDistinctRecords(DTwithDuplicate, TobeDistinct);
//Following function will return Distinct records for Name, City and State column.
public static DataTable GetDistinctRecords(DataTable dt, string[] Columns)
{
DataTable dtUniqRecords = new DataTable();
dtUniqRecords = dt.DefaultView.ToTable(true, Columns);
return dtUniqRecords;
}
 Read more: |
|
|
|
|
Friday, 03 September 2010 07:00 |
 | About Records Master
A secure file manager that allows you to collect important records (such as bank statements, credit card statements, investment records, bills, or receipts) or PDFs in a database and allow for:
- easy addition of new files (importing),
- organization of files in hierarchical folders,
- optional organization of files by date,
- easy access to existing files (browsing, finding, smart folders exporting, printing)
- the ability to associate notes with files or folders,
- the ability to associate attributes with files (e.g., cost) and produce reports based on those attributes, reminders to download or scan in recurring records such as financial statements, (including an integrated website password manager with advanced features to make it easy for you to go to websites to download the records),
- Many more features. |
Read more: |
|
Thursday, 02 September 2010 07:00 |
 | About Amadeus Pro
Lets you use your Macintosh computer for any audio-related task, such as live audio recording, digitizing tapes and records, converting between a variety of sound formats, editing a podcast, etc.
Thanks to its outstanding direct-to-disk abilities and waveform caching, edits on arbitrarily large sounds (even beyond the usual 2GB limit) are performed at lightning speed. The handling of large sounds is furthermore facilitated by the extensive support of markers. Its advanced sound repairing and denoising abilities make Amadeus Pro particularly suitable for transferring vinyl records on CD. |
Read more: |
|
|
|
|
|
|
|