microsoft.public.dotnet.framework.clr Archive - February 2004
Post a message to this list
Messages
Page: 123
Christina Aguilera nipple showing (3 replies)
microsoft.public.dotnet.framework.clr
Christina Aguilera naked V4V7^lu ?$v'kA.""@a28sX J SeGS0/AVR $*uBPt0.iDq EBKD/%LqQblrJrU0! vtv0s/;U7O#:kR4 dj*MBUmJ' U^f9qbRd
Build Warning (2 replies)
microsoft.public.dotnet.framework.clr
I am getting a warning on a custom control that is first in the build order, and is used throughout my main project, which is called Practice Management. This started appearing recently, and I am not sure why. More importantly, what do I have to do to fix it? Thanks. JT OUTPUT FILE FOLLOWS: Build started: Project: IntellicomboControl, Configuration: Debug .NET Preparing resources... Updating refer...
SecurityException & Request failed: How to know more ? (4 replies, VIP)
microsoft.public.dotnet.framework.clr
Maybe someone knows how to solve this one. My context is the following: a VB.NET WinForms app gives the following error message when launched in the Internet Zone. [...other dependent libraries loading...] Loaded 'C:\WINDOWS\assembly\GAC Neutral\System.Xml\1.2.3400.0 b77a5c561934e089\System.Xml.dll', No symbols loaded: 'Cannot find or open the PDB file.' An unhandled exception of type 'System.Secu...
Does Dispose method forces garbage collection. (4 replies, VIP)
microsoft.public.dotnet.framework.clr
I found that statement in some book but it does not comply with Framework SDK Documentation. Kamil Dworakowski
converting Unix datetime count to .Net DateTime object (2 replies)
microsoft.public.dotnet.framework.clr
I am being supplied a count of number of seconds since Jan 1st 1970, i.e. a Unix system time. How can I convert this into a valid .Net DateTime object ? thanks, Mark WinXP / C#.Net 2003
embedded winforms in IE wont cache (2 replies)
microsoft.public.dotnet.framework.clr
I have a problem. The issue is that my embedded winforms in IE will not cache no matter how hard i try. They seem to goto the download assembly cache but they dont load from there like the framework documentation has stated. I have tried versioning, strong naming, and everything else i can think of. Any response, esspecially from MS would be great! I would like to know if this is a bug that is exp...
CLR Profiler fun.... (2 replies, VIP)
microsoft.public.dotnet.framework.clr
So, I am here tyring to learn how to read and understand the information the CLR Profiler provides me. I have created a sample program that just goes nuts and builds larg strings. Basically here is the body of the code for ( int i 0; i 100 ; i ) { StringBuilder sb new StringBuilder(); for ( int j 0; j 50000; j ) { sb.Append( "Outer index "); sb.Append( i ); sb.Append( " Inner index "); sb.Append( ...
Creating publisher policies for DLLs (3 replies, VIP)
microsoft.public.dotnet.framework.clr
We have a .NET dll that we are deploying to our customers using a deployment project in VS .NET 2003. There is a lot of information about creating publisher policies on the web, but we have not been successful in creating one. Here's what the ultimate goal is: When the DLL is deployed to a customer's system, every application using this dll must point to the new version. This has to be an automate...
Where does managed heap belong? (2 replies, VIP)
microsoft.public.dotnet.framework.clr
Hi, Does managed heap belong to specified app domain? If it does then is the collection done independently for all app domains? Kamil
Performance, Scaling and GC (13 replies, VIP)
microsoft.public.dotnet.framework.clr
All, I am in the process of load testing an application and I am not happy with the scalabity of the preliminary system. Under a moderate load of 300 400 users per test machine (Dual P4 700,3 Gig of ram), I am noticing some very slow page loads. To simulate the load, I have been using ACT (although the results haven't been consistant is there a better tool?). Some observations/questions: 1) We are...
System.ExecutionEngineException (2 replies)
microsoft.public.dotnet.framework.clr
I'm getting the System.ExecutionEngineException from my data layer when I'm trying to Insert a duplicate row into the database using the ExecuteNonQuery method of command object. I'm using OLEDB connection in my application.I saw in the microsoft site saying that its an internal CLR error.So i tried reinstalling the whole .NET frame work and still of no use. Its highly appreciated if anyone can he...
Transitive references (6 replies, VIP)
microsoft.public.dotnet.framework.clr
If I create a BaseClass in a BaseAssembly, then derive a MiddleClass in a MiddleAssembly from the BaseClass, a TopAssembly that derives a TopClass from MiddleClass (or just creates a MiddleClass instance) needs to reference both MiddleAssembly and BaseAssembly at compile time, even if it does not directly use any code from BaseAssembly. Why? Why isn't the reference to MiddleAssembly which is the o...
Flaws in CTS rules? (7 replies)
microsoft.public.dotnet.framework.clr
Hi everyone, I was interested under which conditions the CTS grants access to program entities. So I took a closer look at the CLI Standard (mostly Partition I, section 8.5.3). What I found there didn't make sense to me. For instance, consider the following MSIL program: public class Outer { internal class Inner { public Foo f; } } I suppose referents from other assemblies shouldn't be permitted a...
CLR Profiler Setup Help (2 replies)
microsoft.public.dotnet.framework.clr
I am hoping this is a quick solution. I am trying to get the CLR Profiler working on my machine and it doesn't seem to be hooking into aspnet wp.exe Here is what I do: 1) Start the profiler on the web server, I choose "Profile ASP.NET" 2) It stops IIS, Restarts IIS and gives me the "Waiting for ASP.NET to start Common Language Runtime" 3) When I hit a web page that spawns the aspnet wp. the window...
Flaws in CTS rules? (2 replies)
microsoft.public.dotnet.framework.clr
Hi everyone, I'd like to understand the conditions under which the CTS grants access to program entities. So I took a look at the CLI standard (mostly Partition I, section 8.5.3). What I found there doesn't make sense to me. For instance, consider the following MSIL program: public class Outer { internal class Inner public static Foo f; } } I suppose referents from other assemblies shouldn't be pe...
Getting indexed property values (6 replies, VIP)
microsoft.public.dotnet.framework.clr
I'm writing a utility to dump out the contents of any object. I'm having trouble getting indexed property values because I can't find a way to get the indexes themselves. PropertyInfo.GetValue takes an object and a collection of indexes, but I don't know what the index values are for the object I'm dumping. I can get the PropertyType, so I tried testing for an integer type and iterating until GetV...
Serializing/DeSerializing System.Drawing.Cusrsor object looses the hotspot (4 replies, VIP)
microsoft.public.dotnet.framework.clr
Hi All, We are trying to Serialize a System.Drawing.Cursor object and Deserialize it. Before serializing the cursor behaves correctly but when we serialize and use a deserialized object, the hotspot (the cursor pointer) is not where it is expected to be. We tried both binary and soap formatters. TIA Sankar Nemani
DefineMethod causes TypeLoadException (3 replies, VIP)
microsoft.public.dotnet.framework.clr
I am using the COM Profiling API to hook into the CLR and dynamically modify the program. I have been successful with the modification of existing methods, but now I want to add my own. To do this, inside the ModuleLoadFinished() method, I add the following call to DefineMethod: COR SIGNATURE signature[8]; signature[0] IMAGE CEE CS CALLCONV DEFAULT HASTHIS | IMAGE CEE CS CALLCONV DEFAULT; signatur...
mscorwks.dll could not be loaded (although I have installed Framework 1.1) (5 replies, VIP)
microsoft.public.dotnet.framework.clr
With certain combinations of my app's dll's, my app fails at startup with the message: ...\V1.1.4322\mscorwks.dll could not be loaded. I do in fact have the .NET Framework 1.1 installed on my machine, and I can run other applications with it. I have a feeling it has to do with my trying to launch the .NET Framework too early in my application, or with a particular set of dll's I found the followin...
.NET Assembler Structure (5 replies, VIP)
microsoft.public.dotnet.framework.clr
Hello friends, I am finishing my Computer Science graduation this year, and I have to make a final project for it. As I'm working with Microsoft .NET, my idea is to write my project about the MSIL. A software that will disassemble the .EXE (generated by VS.NET 2k3 without obfuscation), and show the MSIL. Exactly like Microsoft's ILDasm.exe. I need to know if we have the structure of the .NET execu...
ANN: .NET Memory Profiler 2.0 Released (4 replies)
microsoft.public.dotnet.framework.clr
SciTech Software is pleased to announce that .NET Memory Profiler 2.0 has just been released. ..NET Memory Profiler is a powerful tool for finding memory leaks and optimizing the memory usage of .NET Programs. For more information see the .NET Memory Profiler web site at: http://www.scitech.se/memprofiler A fully functional evaluation version of .NET Memory Profiler can be downloaded from: http://...
Adding Printer and Printer Ports (report from framework group) (5 replies, VIP)
microsoft.public.dotnet.framework.clr
I have been attempting to find a way to [programmically] add printers to a server. This requires that a new port be added. I have not been able to find a means to accomplish this. I did find some *old* posts for using the AddPortEx/AddPrinter APIs from the winspool.drv, however, while I can get these to run, they do nothing (i.e. no entries entered in to the registry, and the port and printers are...
A DotNet Severe Limitation ? (3 replies, VIP)
microsoft.public.dotnet.framework.clr
I believe I have found a severe limitation of DotNet, with respect to hosting Windows Form Controls in WebPages. It appears this is only possible when the web is configured on Port 80. Any other port and the control will not display. After a couple of days of searching the newsgroups/various forums I have found other postings requesting information on this anomaly yet nobody has found a solution. ...
MSMQ Destruction (3 replies, VIP)
microsoft.public.dotnet.framework.clr
Hello, I have created MessageQueue called Req MSMQ and have a PeekCompleted event added as follow: Req MSMQ.PeekCompleted new PeekCompletedEventHandler(OnRequestPeeked); Req MSMQ.BeginPeek(); When I destroy this object (Req MSMQ) as follow, It doesn't clean up Memory properly. Req MSMQ.PeekCompleted new PeekCompletedEventHandler(OnRequestPeeked); Req MSMQ.Dispose(); But If i don't create the PeekC...
XmlSerializer.Serialize (4 replies, VIP)
microsoft.public.dotnet.framework.clr
Hey, I have made a method that would take any object o and an array of extraTypes to construct a XmlSerializer object then call .Serialize(stream, object)... When I have this called within the same method as the type it works fine but when I am passing this type and the extra types array Its got the subtypes but its not generating the XML. I am passing in ob.GetType(), and xtraTypes as the constru...
Ad
MBR BootFX
Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
 
 Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com