 | Updating dataGridView from different thread than UI thread How do i update dataGridView from seperate thread than UI thread. I get runtime exception when i update datagridview from seperate thread.
Any suggestion .. | 2 months 5 days ago | Lalita P | 5 replies | |
 | power operation v = Convert.ToDouble (txtencrypt.Text);
t = Math.Pow(v, d);
MessageBox.Show(Convert.ToString(t));
MessageBox.Show(""+t.ToSt ... | 3 months 4 days ago | Cs Ss | 2 replies | |
 | Problem using Encoding.UTF8.GetString() and Encoding.UTF8.GetBytes() I get binary data from my encryption class. I tried to convert my binary data to string using Encoding.UTF8.GetString() so that I can store in string field in database. Later I read my s ... | 4 months 2 wks ago | Sagnik Majumder | 4 replies | |
 | Split alphabet character and number from alphanumeric string C# I have a alphanumeric string which starts with Alphabet and ends with number. I need to separate/split this string into alphabet and number. I will always have my string starting with al ... | 6 months 3 wks ago | RaKumar | 6 replies | |
 | Create Triple DES key in C# .NET How to create Triple DES key in C# .NET? I read that tripleDES key should include parity check. | 8 months 4 wks ago | Sam Buchana | 3 replies | |
 | CRVS2010 sp1 - crdb_adoplus.dll not found I recently installed vs2010 on my machine and i am getting following error on reports
Could not load file or assembly 'file:///C:\Program Files\SAP BusinessObjects\Crystal Repo ... | 10 months 2 days ago | Hanni Tun | 6 replies | |
 | How to create compressed Zip file using C#? I am trying to compress and Zip my deployment files using C#. Is there any way to Zip files using C# in .NET? I am also looking for zip compression for other part of my application where ... | 10 months 1 wk ago | Priya B | 5 replies | |
 | How to execute embedded application as resource using C# I have a .NET tool which is compiled as .EXE. Now I need to include this .NET executable application inside another .NET application as embedded resource and execute from memory on the f ... | 10 months 3 wks ago | Steve Hoow | 8 replies | |
 | NepaliDateTime Picker Hi everyone
I have been trying to develop a tool in C# called NepaliDateTime Picker similar to builtin DateTime Picker but I am not finding any scientific rules of the Bikram Sambat ca ... | 11 months 3 hrs ago | Mohd Qasim | 7 replies | |
 | How to validate XML using schema (XSD) in C# .NET? I created a schema (XSD) for my XML file. During runtime I need to validate if the XML file is valid based on the schema that I created. Is there any way in .NET to validate XML file aga ... | 1 yr 1 month ago | SBajra | 4 replies | |
 | Create dynamic array in C# I am looking for way to create dynamic array that I can easily insert/add new elements. How do I create dynamic array in C# .NET? | 1 yr 1 month ago | Harshal Chaudhari | 3 replies | |
 | Split Six digit numeric value from a sentence I have a alphanumeric sentence starting with a six digit number. I need to separate/split that six digit number from the sentence. There is a mix of Alpha nad numbers in the entire sente ... | 1 yr 2 months ago | SBajra | 1 replies | |
 | Should I initialize string variable with String.Empty or NULL? string myString = NULL;
or
string myString = String.Empty;
What is the preferred initialization for string? | 1 yr 5 months ago | SBajra | 1 replies | |
 | C# - Hashtable or generic Dictionary<> ? I am trying to implement lookup service and I am debating on using Hashtable or generic Dictionary. Which one is better and which one is preferred one? Is there any benefit on using one ... | 1 yr 5 months ago | RaKumar | 1 replies | |
 | Ternary / tertiary operator and nullable INT type I am trying to assign null to nullable int using ternary operator but keep getting compile error.
int? nullableInt = null;
nullableInt = boolIndicator ? 100 : null;
... | 1 yr 5 months ago | Bikram Shrestha | 2 replies | |