all groups > dotnet clr > may 2004 > threads for may 1 - 7, 2004
Filter by week: 1 2 3 4 5
Severe limitation for IE-hosted .NET controls (classid is truncated to 128 chars)
Posted by M. Shawn Dillon at 5/7/2004 6:17:51 PM
I am using IE 6 with all patches applied on Windows Server 2003 and Windows
XP SP1.
Recently, I installed the tech preview of Visual Studio .NET 2005 and
attempted to view the IE Sourcing QuickStart sample to see if it had the
same problems. It does (IE Binding log information is below), but ... more >>
Profiling NGEN'ed modules
Posted by Simon Sheffield at 5/7/2004 3:01:09 PM
Hi.
My profiler needs to profile some of the Framework libraries, and so the
contents of the native image cache need to be changed.
I would really like to be able to just do a "ngen.exe /prof mscorlib.dll"
and then have this version or mscorlib picked up when profiling (and when
not profiling, ... more >>
CLRProfiler Managed Windows Services
Posted by Ice at 5/6/2004 4:27:32 PM
Folks -
Has anyone been able to start a managed windows service through CLRProfiler
and actually get it to profile?
I've gone through the sparse posts that exist out there and my situation is
the same. I get the "Waiting For Connection" box. I verified that the
service is being started us... more >>
Usage of AppDomain.CreateInstanceFromAndUnwrap method
Posted by Vineeth Karinta at 5/5/2004 6:16:03 PM
i am trying to load a Windows Form Assembly at run time to a seprate AppDomain.
I don't want that this Assembly to be loaded in the Caller Domain, so i used the metho
CreateInstanceFromAndUnwrap instead of AppDomain.Load(..
// I am passing the Control's parent through the constructor argumen
Obj... more >>
R6025 error during VisualStudio shutdown.
Posted by RameshK at 5/5/2004 3:33:38 PM
Hi All,
Laucnhing a VC7.0 custom wizard using DTEClass of ENVDTE namespace.
Subscribed to events like OnBeginShutDown,AfterClosing...
During manual close of the wizard generated program getting R6025 error
after exitting hte OnBeginShutDown event handler in my program.
Any help is app... more >>
Sorting
Posted by James P at 5/5/2004 2:45:14 PM
Hi All,
I have an xml file as listed below. This is a list of scripts. Some of the
scripts depend on the output of other scripts. I want to sort this xml in
such a way that the scripts are listed in the correct order of execution. I
created an IComparer class and implememted the Compare method... more >>
diassembling a program into IL
Posted by Altex at 5/5/2004 12:47:42 PM
Hi
If I compile a program I've got program.exe
with ILDASM I've seen that it is possible to diassemble the program.exe to
the IL format
in this way, isn't it to easy for someone else modify my code?
is there a way to prohibit the diassembling of my code?
... more >>
how to call an unmanaged __fastcall function from CLR in C/Winforms ?
Posted by andrea catto' at 5/5/2004 10:06:10 AM
I 'managed' to be able to call a regular unmagaged function from within a
clr bases winforms, but....
I can not call functions that are compiled as __fastcall....
there has to be a way, otherwise how would be possible for the world to
migrate or use old static libraries ???
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Find parent object?
Posted by Rob Nicholson at 5/4/2004 11:40:55 PM
Consider an class object:
Public Class DataLink
Sub New()
' Is there anyway to get an pointer to the parent object here?
End Sub
End Class
Which is used as a field in another object class:
Public Class ParentLink
Private m_DataLink As New DataLink
End Class
Crea... more >>
StrongNameIdentityPermission does not working with WinForm
Posted by Bnaya at 5/4/2004 9:05:31 PM
I'm invoking the same Dll from Console application and WinForm application
Both signed with SrongName.
the class that I'm invoking is protected with StrongNameIdentityPermission
Demand
and hear is what happened:
the console application pass the demand but the WinForm failed
... more >>
how to call an unmanaged static library's member from winforms ?
Posted by andrea catto' at 5/4/2004 1:50:37 PM
how to call an unmanaged static library's member from winforms ?
... more >>
MSIL Optimizer?
Posted by cody at 5/4/2004 1:16:59 PM
is there any tool which can optimize msil? for example:
if (a is MyType)
{
MyType mt = (MyType)a
}
could turn into:
MyType mt = mt as MyType ;
if (mt!=null)
{
}
Maybe there are much more such situations.
I know that the jitter *could* do such Optimisations, but does it?
--
... more >>
unmanaged old static library, how to call its functions from managed code in Win Forms, VC++ ?
Posted by andrea catto' at 5/4/2004 11:47:05 AM
Yes I did some research on google but nowhere I could find a working
example.
I have a header file and its .lib/static library.
I'd like to design an UI application using Windows Forms which seems cool
but..........
I can NOT call a regular unmanaged static library's method.
it tells m... more >>
duplicate assemblies in GAC
Posted by jc at 5/4/2004 11:10:40 AM
In the GAC there are duplicate assemblies like System.Design, Native Images,
1.0.5000.0, b03f5f711d50a3a...
How is it possible ?
... more >>
WebRequest without IE dependency
Posted by Thana N. at 5/4/2004 11:03:16 AM
Hi,
I would like to know how to use WebRequest without IE dependency. I know
that if I has my own proxy setting via WebProxy, it will use value from
WebProxy. But how can I do if I want to set my program with no proxy when
IE has its own proxy settings.
Thanks in advance,
Thana N.
... more >>
OLE controls!!!! HELP
Posted by Noel Garcia via .NET 247 at 5/4/2004 9:25:10 AM
I love OLE controls. I have an application I wrote in VB 6 using the OLE control, I need to upgrade it to .NET but there is no OLE controls in .NET. HHHHHEEEEELLLPPPP!
Anybody Please!!!
--------------------------------
From: Noel Garcia
-----------------------
Posted by a user from .NET 2... more >>
Finding Implemented Interfaces with Reflection
Posted by Rick Strahl [MVP] at 5/4/2004 3:28:48 AM
Does anybody know how to retrieve only the implemented interfaces of a
specific, class, not those that are implemented by inherited classes?
Type.GetInterfaces() gets me everything, but I'm only interested in the
immediately implemented interfaces.
It looks like GetInterfaces() returns the... more >>
Instance members change after it's constructor returns
Posted by koverton at 5/3/2004 10:46:04 AM
Here's an example, this is the constructor for an object (plus a member it initializes):
public class MyObj {
//etc.
private Hashtable idlist;
public MyObj (string localityName) {
// etc.
idlist = new Hashtable();
}
//etc
}
Under the debugger, as I step into this constructor and create a... more >>
ANN: 9Rays.Spices.Net [asm.browser, analyzer, obfuscator, decompiler, modeler]v3.4.2 released
Posted by Al Ponomarev at 5/3/2004 5:39:12 AM
New version of Spices.Net v3.4.2 has been released.
A lot of improvements, corrections and bug fixes.
1.. Spices.Net Decompiler: Significantly improved speed of GUI output.
2.. Spices.Net Decompiler: Incorrect work with stack bug is fixed.
3.. Spices.Net Decompiler: new improvements,... more >>
|