August 28th, 2009 10:14 AM
Hi guys,
today I tried to integrate an autocomplete into my combobox but it does not work. Seems I am forgetting something. Maybe anyone can help me.
I have a collection of items and these...
October 7th, 2008 11:06 AM
They verify the domain from where the emails comes not the whole email addresse. If your domain is registered as serious email provider you won't have any problem. Otherwise you have one. And I think...
October 6th, 2008 04:21 AM
Your question will be answered here.
And creating a singleton can be made easier without using lock.
public sealed class Singleton
{
private static readonly Singleton _instance = new...
September 30th, 2008 06:40 AM
This question was asked and answered many times. Please use the search function.
September 19th, 2008 06:19 AM
Try this:
public class MyList: List<UInt64>
{}
List<MyList> myLists = new List<MyList>();
September 4th, 2008 09:50 AM
I believe I understood the question but why you want to do it? Is there any good reason to parse a .cs file, compile it at runtime and use the generated IL code? For me it sounds you are try to make...
September 3rd, 2008 05:01 AM
I use the ziplib library for compressing data. Have a look at it here.
August 26th, 2008 04:22 AM
Maybe the Convert class works a little bit faster.
...
...
...
double[] arrDouble = new double[arrString.Length];
for(int i=0; i<arrString.Length; i++)
{
arrDouble[i] =...
August 22nd, 2008 10:15 AM
VS 2005 give you the possibility to encapsulate fields in properties. To do this write your field declaration and open the context menu on the field name. Then choose Refactore->Encapsulate Field...
August 8th, 2008 07:54 AM
Can you repeat your questions in english?