| Thread | Last Post | Replies |
|
| Is there any point in ommitting arguments from main method definition? | 05 Dec 2006 14:33 GMT | 2 |
static void Main(string[] args) { } If you know your programme will not take any string arguments, would it
|
| Why is P/Invoke called P/invoke? | 05 Dec 2006 14:22 GMT | 2 |
For example i'm told the following is an example of P/Invoke: - [DllImport("User32.dll")] static extern Boolean MessageBeep(UInt32 beepType); but i see no mention of Pinvoke in this code, where does the name
|
| CollectionBase InnerList with Arrays | 05 Dec 2006 14:19 GMT | 2 |
I am trying to use a collection of String Arrays in an inherited instance of CollectionBase, but the InnerList.IndexOf does not seem to work, any ideas? My code is:
|
| Generics: force type initialiser of T | 05 Dec 2006 14:16 GMT | 10 |
Given a generic method "of T", is there a good way of ensuring that any static ctor on T has executed? Following code demonstrates (TestClass1) that via generics you can use the Type instance long before the static ctor fires.
|
| reference a property value as comparer in ArrayList.BinarySearch | 05 Dec 2006 12:31 GMT | 1 |
My Array list contains a collection of InternetExplorer object. One of properties of this object is HWND. I'm trying to search my arraylist for the InternetExplorer object that has a certain value for its HWND property. But i don't know the syntax
|
| C# com Objects | 05 Dec 2006 12:17 GMT | 5 |
I am trying to create a C# Com object and call it from unmanaged Cpp. I have created a call library. I was able to create the interfaces for the functions and call them from cpp code //in c#
|
| Reading variables from non .net running processes? | 05 Dec 2006 12:13 GMT | 5 |
Hello. I have two programmes both a couple of years old but not .net. One is a DOS based programme and one is a C++ programme. They both run under windows. I would like to write a programme that is capable of reading variables
|
| Boost and C# | 05 Dec 2006 11:38 GMT | 3 |
Is C# generics programmatically compatible with Boost and C++ templates or is there such a difference that one cannot possible convert C++ templates into generics? I'm wondering but I just looked at teh boost spirit library and would love
|
| DROPDOWN SELECTED PROPERTY PROBLEM | 05 Dec 2006 10:46 GMT | 3 |
I have a Datagrid and it has a dropdown. <asp:DropDownList DataSource="<%# PopulateList() %>" OnLoad="SelectIndex" > I assign selected index of the my dropdown in SelectIndex function. protected void SelectIndex(object source, System.EventArgs e)
|
| path for assemblies of referenced projects | 05 Dec 2006 10:35 GMT | 1 |
I realised that the path for assemblies that are genereated by referenced projects seems to have changed in VS2005. In my project if I look at bin and see the path in "properties". It looks like "....\bin\debug\common.dll". It used to be "...\obj\debug\common.dll".
|
| Urgent Help regarding Cryptography Application group. | 05 Dec 2006 09:33 GMT | 1 |
I have built an application that uses Cryptography Application block 2.0, It runs fine on my machine. Now i copy this application the complete debug folder along with .config and .key file to another machine.It does not Run.
|
| Help with talking to Excel from C# | 05 Dec 2006 09:24 GMT | 2 |
Hi all, I am trying to convert some old VB6 code to .NET. Take this first section (there is more, but hey-ho...) Dim XLApp As Object Dim XLSheet
|
| vs2005 excel workbook problem | 05 Dec 2006 09:03 GMT | 3 |
When try to create an excel workbook in vs2005 I get the following error message: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
|
| C#.net equivalent of system() | 05 Dec 2006 08:48 GMT | 2 |
I'm looking for a C#.net equivalent of the c command "system()"? Sample Code for reference C++ code long nRetVal = system("Login.exe -u userName -p Password");
|
| webservice and typed datasets | 05 Dec 2006 08:19 GMT | 3 |
I'm delevloping a webservice that returns typed datasets with visual studio 2005. The problem is, that the typed data set in the client app is not the same as in the webservice. If I change the property 'NullValue' of the row to (empty) the dataset on the client does still
|