Forum: C# Jul 28th, 2009 |
| Replies: 1 Views: 401 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: 380 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: 380 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: 380 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: 546 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: 546 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: 546 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: C# Jun 24th, 2009 |
| Replies: 4 Views: 815 |
Forum: C# Jun 23rd, 2009 |
| Replies: 4 Views: 815 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: 815 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: C# Jun 13th, 2009 |
| Replies: 0 Views: 167 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,317 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: 395 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: 328 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: 328 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,030 [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,030 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,030 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,030 -- 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,030 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,030 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: 860 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... |