| Thread | Last Post | Replies |
|
| string to bitmask | 01 Jun 2006 00:48 GMT | 1 |
All, What's the easiest way to convert the string like 1001010101101010101 into a binary mask of type Int64 and back? ConvertBitmask or something like that? Just D.
|
| C# COM array issues when accessed through vbscript | 31 May 2006 23:46 GMT | 2 |
I'm trying to access C# COM object from a VBscript, where C# will modify the reference parameter to an array. I found simple reference parameter datatypes (i.e. int, string) yield to expected result, however, when I try to create an array of these
|
| How to Get Server Reboot Time? | 31 May 2006 23:42 GMT | 1 |
I am writing in C# .NET and am using System.Environment.TickCount (32-bit integer) to get the number of milliseconds since the server was rebooted. The problem is that the server has been up for over 30 days and the
|
| How to compile resource files via Nant? | 31 May 2006 23:14 GMT | 2 |
I am compiling a winform app using nant. I first compile via VS.NET, which generates *.resource files in obj\debug. Then I use the <resources> tag in the Nant script to complete a build via Nant. I did try the Nant build by accessing the *.resx file instead. The app
|
| How to... | 31 May 2006 23:09 GMT | 9 |
... make COM exposed object to have both constructors COM visible not only the first one?
|
| Class Object and override | 31 May 2006 22:46 GMT | 3 |
Hello!! You may correct me if I have made any wrong assumptions. Below I have some simple classes. When you have this t.ToString() below it's the ToString() method in Object
|
| Unable to load (unmanaged) dll | 31 May 2006 21:57 GMT | 1 |
Any ideas on how to resolve the run-time exception: "Unable to load DLL 'EventMgr.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)" It's raised when my app calls a static function in the dll. In my app I have:
|
| Navigating by attribute in XPath | 31 May 2006 21:43 GMT | 7 |
This code shows all values for the config node. I'm trying to retrieve the value for systrayenabled for attrib "jon". Something wrong? sXmlPath = Application.StartupPath.ToString() + "\\settings.xml"; XmlDocument xmlConfig = new XmlDocument();
|
| Important question about .NET 2.0 datasets... | 31 May 2006 21:20 GMT | 3 |
We've created a robust client server application over the past 3 years on the .NET framework version 1.1 using c#. We layed all of our marbles in creating strongly typed datasets and for the most part we are extremely happy we did that.
|
| background worker and win forms | 31 May 2006 20:55 GMT | 1 |
I need help with background worker and form I have a class (form1) that works with database. I need this: -Show form2 while form1 is geting data from database -When form1 is done, close form2, proced working form1
|
| Tool to find the unused methods and members in an assembly | 31 May 2006 20:53 GMT | 2 |
My application is splitted into more than one assembly. And I want to clean up the methods which are not called or not used among any of the assemblies. Can any one suggest me the tools available to find and remove the un used
|
| Deserialization with a removed class | 31 May 2006 20:41 GMT | 3 |
I'm trying to deserialize an object which has a few members which no longer exist. Is there anyway using a custom binder to remove the reference to these objects or just return a null? Thanks,
|
| XSD import using WSDL.exe | 31 May 2006 19:00 GMT | 5 |
Hi, Here is my problem. I have a serviced component that is exposed via a SOAP interface. This particular component, Person, has a method that takes in another object called PersonHobby. When I try and use wsdl.exe, it always
|
| FieldInfo class | 31 May 2006 18:46 GMT | 1 |
Posting on behalf of a colleague (no, really! ;) )... Hi, I was wondering if there is any equivalent of FieldInfo.SetValue(Object, Object) that is strongly typed or uses generics? I have been looking at
|
| Bit shift question. | 31 May 2006 18:30 GMT | 3 |
I am seeing a discrepancy on how bit shifts work in C# vs. C++. In C++, if you do a bit shift and it overflows, the bits are lost. i.e. in C++, -1 << 32 would produce 0. However, in C#, this same expression yields -1.
|