Forum: C# Jul 28th, 2009 |
| Replies: 1 Views: 442 I need a list of Active Directory fields dynamically - meaning - that i should pass the domain and it should display the list of active directory fields for that domain.
thanks,
jeet |
Forum: C# Jul 15th, 2009 |
| Replies: 4 Views: 392 thanks,
i want exact data which are successfully copied to the table and not count. I want CSV file to be generated for which data is not transferred to the destination table
thanks,
jeet |
Forum: C# Jul 15th, 2009 |
| Replies: 4 Views: 392 I am using C# SqlBulkCopy class to transfer one table of SQL server into multiple tables of sql server |
Forum: C# Jul 14th, 2009 |
| Replies: 4 Views: 392 Hi all,
I am using SQLbulkCopy to transfer source data to multiple destination tables of SQL server 2005. I want to show the user - log file (text format) which data are transferred and which are... |
Forum: C# Jul 3rd, 2009 |
| Replies: 5 Views: 627 Hi all,
came across to wonderful code...now i am allowing to create files and deleting archieves!
protected void CleanImageFolder()
{
string imgFolder =... |
Forum: C# Jul 3rd, 2009 |
| Replies: 5 Views: 627 thanks Ramy, yes I am operating upon Active Directory data - every two minutes I need updated Active Directory data - CSVDE works fine. thanks for your suggestion but in that manual process - for... |
Forum: C# Jul 3rd, 2009 |
| Replies: 5 Views: 627 Hi all,
I have one windows service made in C#. I want My service to create CSV file every two minutes... but it should overwrite the existing file every two minutes. but whenever I try - it says... |
Forum: Pascal and Delphi Jun 25th, 2009 |
| Replies: 2 Views: 789 Hi Friend,
Thanks for the reply, I am using two components of Indy 10.1.5 and Delphi 2006. For attachment of file I am using TIdMessage and the other control is TIdSMTP, despite of giving all... |
Forum: Pascal and Delphi Jun 25th, 2009 |
| Replies: 2 Views: 789 Hi all,
I want to send automatic mail from my Delphi application with attachment without invocation of any client tool like outlook. Actually My application runs as a windows service and every 5... |
Forum: C# Jun 24th, 2009 |
| Replies: 4 Views: 889 |
Forum: C# Jun 23rd, 2009 |
| Replies: 4 Views: 889 thanks friend, this is solved, how do I get the original string back?
Means converting back year.month.day.hour.minute.sec to the system default datetime... I am sorry for throwing second question... |
Forum: C# Jun 23rd, 2009 |
| Replies: 4 Views: 889 Hi All,
I want to convert any (current datetime differs in format depending regional setting) into 20090622172120 format.
How do I do that? I want solution that work with any regional setting.
... |
Forum: MS SQL Jun 19th, 2009 |
| Replies: 3 Views: 535 Thanks for the reply, and of course I will take care of the posting place!
3. It is defined at table design level and not in trigger
thanks
Jeet
1. No work around as far as I know. Most... |
Forum: MS SQL Jun 19th, 2009 |
| Replies: 3 Views: 535 Dear All,
I have developed C# application to import data from CSV to SQL Server
using sqlBulkCopy. However I am facing couple of problems listed below
1. whole transfer fails when one record... |
Forum: C# Jun 13th, 2009 |
| Replies: 0 Views: 185 Hi all,
is there anyway to log SqlBulkCopy records, if that s correctly written over database table or not and if failed, the reasons? I am using C#.
regards
Jeet |
Forum: C# Jun 10th, 2009 |
| Replies: 2 Views: 1,461 Hi friends,
I have a checkedlistbox control on my windows form. Now when Application runs, every item is unchecked and user checks the items as per his choice. I want that - next time when user... |
Forum: C# Jun 5th, 2009 |
| Replies: 1 Views: 401 Hi friends,
I am developing one application - in which on click event of a button, I am calling several functions and other sub-routines (e.g. creation of CSV file, Copy them to SQL table, load... |
Forum: C# May 26th, 2009 |
| Replies: 2 Views: 335 Yes, I can try-catch....
but the problem is that error occurred by windows utility is not being trapped..... and which is right too....as error is not from my application...
e.g. my utility... |
Forum: C# May 25th, 2009 |
| Replies: 2 Views: 335 Hi all,
In my windows application written in C#, I am calling one windows utility...but it is likely to fail the execution of that windows utility execution...How do I log the error of that... |
Forum: C# May 25th, 2009 |
| Replies: 14 Views: 1,073 [Hi friends,
it was as simple as it looks!
arrFieldList = new ArrayList(strAllFields.Split(new char[] { ',' }));
for (int i = 0; i < arrFieldList.Count; i++)
{... |
Forum: C# May 23rd, 2009 |
| Replies: 14 Views: 1,073 Hi friends,
it was as simple as it looks!
arrFieldList = new ArrayList(strAllFields.Split(new char[] { ',' }));
for (int i = 0; i < arrFieldList.Count; i++)
{
... |
Forum: C# May 22nd, 2009 |
| Replies: 14 Views: 1,073 I read it - but please forgive . I do not understand - how can it help me solve my problems?
regards
Jeet |
Forum: C# May 22nd, 2009 |
| Replies: 14 Views: 1,073 -- Yes I see....thanks all..but I am still not sure how to do with the checkedlistbox of windows application in C#?
regards
Jeet |
Forum: C# May 21st, 2009 |
| Replies: 14 Views: 1,073 Thanks for your reply - i checked first one and it seems checkedlistbox does nt have DataSource or DataBind() as members!
Second - I have nt given try yet - but seems to be working!
Thanks again,... |
Forum: C# May 21st, 2009 |
| Replies: 14 Views: 1,073 Hi all,
I have two problems
1. I have a comma separated string values. I want to load them all into checkedlistbox as items.....HOW?
2. how do I get the itemindex of checkedlistbox, passing... |
Forum: C# May 16th, 2009 |
| Replies: 6 Views: 926 Hi All,
I have a checkedlistbox on my windows form. whatever Items user selects - I want them to be remembered by application for next time run - Means next time same items should be checked. To... |