| Thread | Last Post | Replies |
|
| #include file conflict | 30 Oct 2005 12:59 GMT | 4 |
we have an MFC app where the database interface is ADO.NET. The rest of the app is unmanaged. We want to interface to another app by using OLE. We have done this before with other vendors and it works fine. But with the #import directive with the .tlb from this vendor VS reports ...
|
| FtpWebRequest ServerProtocolViolation calling GetRequestStream method | 27 Oct 2005 22:51 GMT | 1 |
I am working on a service that uploads METAR weather information to the National Weather Service FTP site. The service I'm authoring is hosted on a Windows 200 server, and the NWS FTP host is on a Unix server. I'm using the FtpWebRequest and FtpWebResponse classes to do the file ...
|
| WOW64 | 26 Oct 2005 19:36 GMT | 3 |
How does the 64Bit CLR handle .NET Framework 1.1 assemblies in the following scenario? App.exe <--- .NET Framework 2.0 100% Managed MyLib.dll <--- .NET Framework 1.1 100% Managed
|
| Exception message localization | 26 Oct 2005 16:10 GMT | 2 |
I am somewhat confused with Brad Abrahms' Exception Message Guidelines (http://blogs.msdn.com/brada/archive/2004/01/28/64255.aspx), also published now in the book. One of his suggestions is: "Do localize exception message".
|
| Mixed Mode trust situation | 25 Oct 2005 19:16 GMT | 1 |
This was previously posted in dotnet.framework.interop, but no replies were received. Hello, We've got a mixed mode application, which includes MFC/ATL and is written in
|
| Accessing embedded resources | 24 Oct 2005 21:18 GMT | 1 |
I would like to "package" a few files that my program needs into a single executable, I have successfully added them to my resources. But I would like to know how I can access the files directly. So let's say I have a pdf added, is there a way to open the pdf and access
|
| Rectangle class | 21 Oct 2005 22:04 GMT | 1 |
try this (C# syntax for the example) Rectangle rect = new Rectangle( 1,1,3,3); // make a rectangle at 1,1 that is 3 wide and 3 high. Debug.Assert (rect.Left == 1); // true
|
| Problem with Diagnostics.Process.GetProcesses(String machineName) | 21 Oct 2005 11:55 GMT | 3 |
For some reason I cannot look at the processes running on one machine on the network. I always get the following error: System.InvalidOperationException: Couldn't get process information from remote machine. ---> System.ComponentModel.Win32Exception: The network
|
| How to disable Local Settings\Application Data\ApplicationHistory\ ini file generation | 21 Oct 2005 08:59 GMT | 5 |
We have a requirement to disable Local Settings\Application Data\ApplicationHistory\ ini file generation for our app only or globally on some customer machines. I found out that i can disable it globally by setting the following registry value:
|
| Security for remote EventLog access? | 20 Oct 2005 22:06 GMT | 1 |
It's great that the CLR gives us this cool EventLog object for managing event logs. And they even give you this cool property "MachineName" to allow you to deal with event logs on a remote server. But what access rights are needed by an application if it is to do this?
|
| VS 2005 RC .pdb and .dll files don't match? | 19 Oct 2005 18:59 GMT | 2 |
I'm running the RC version of VS 2005 handed out at the PDC. I'm working on something where seeing what's going on all the way down the stack would be very handy. I'm using 2.0.50727 of the CLR, and whenever mscorwks.dll appears on the stack, I can't see the entries (and ...
|
| How can I have SortedList sort descending? | 18 Oct 2005 18:03 GMT | 2 |
I am using the SortedList class to sort an array of items. I want to bind the SortedList to a DataGrid, but I want the list to go in descending order. Is there anyway to change the sort order in SortedList when databinding so that I can reverse the sort order?
|
| Creating dynamic assemblies - almost there | 18 Oct 2005 16:25 GMT | 1 |
I've been working on having my application create dynamic assemblies within the current domain of the application and loading them at a later point inside new domains (so they can be unloaded as necessary) and I feel I'm almost there thanks to great help from people in the
|
| System.Appdomain.CreateDomain(...) returns __TransparentProxy | 18 Oct 2005 13:12 GMT | 2 |
I wondered if anyone could make sense of this undocumented object (System.Runtime.Remoting.Proxies.__TransparentProxy) being returned from the static method call to System.Appdomain.CreateDomain(...). Normally (in my mono-assembly testing application),
|
| Strong name to assemblies deployed privately | 16 Oct 2005 12:06 GMT | 2 |
It is a good practice to set that all assemblies in my company must to have a strong name even the privately deploying. I'm looking for a simples rules. Thanks in advance Javier
|