| | Rating Thread /
Thread Starter | Last Post  | Replies | Views |
|  | for a given path, I want to load all of the assemblies so
that I can later walk the dependency graph. This function
works fine...
static void...
howard dierking
|
12-24-2003 12:13 AM
Peter Koen | 1 | 23 |
|  | I am having an odd problem using the DateTime.ParseExact() method that
I'm hoping someone can help me with.
I have XML files that use 2 different...
Fred Strauss
|
12-23-2003 06:52 AM
Fred Strauss | 2 | 30 |
|  | Only for pedants :
I dicovered a memory leak in the
interface ICorPublish (mscordbi.dll)
ICorPublish::GetProcess(DWORD id, ICorPublishProcess**...
Hanno Lewandowski
|
12-19-2003 06:30 PM
AT | 3 | 20 |
|  | Hi.
What is the difference between these two approaches?
My thought is that CCW automatically loads the runtime, with default
settings, while with...
AT
|
12-19-2003 12:19 PM
AT | 3 | 17 |
|  | Hi
I have run into a problem using ZeroDeployment.
I short, IEExec loads a VB application, which uses a DLL
written in C++. VB calls into managed...
Tommy R. Larsen
|
12-16-2003 04:54 AM
Tommy R. Larsen | 3 | 14 |
|  | I was recently set to release an app that used very common single instance
code and hit the oddest issue.
After many hours of full build tests I...
smith
|
12-16-2003 02:05 AM
Gang Peng | 3 | 14 |
|  | I'm having some problems running an application hosted
within IE that do not appear to occur when running
normally.
I start the application from...
Bill Dines
|
12-15-2003 09:56 AM
Bill Dines | 1 | 14 |
|  | Is the default 'false' for the CLSCompliant attribute at the assembly level
? Are there any tools to check for CLS compliance for the various...
Edward Diener
|
12-14-2003 10:13 PM
Edward Diener | 0 | 20 |
|  | Hi all.
What's the difference, from the OS point of view, between Monitors and
Mutexes?
I'm almost sure that the Mutex object is a wrapper to the...
Gianluca Varenni
|
12-14-2003 10:07 PM
Peter Koen | 4 | 19 |
|  | Hi everyone,
I've been struggling with this for a while to no avail.
I have an internal application which uses remoting to
launch AppDomains and...
Gordon Henriksen
|
12-13-2003 05:53 PM
Sebastien Lambla | 2 | 18 |
|  | Is there a good in depth (web) reference describing the process that
the CLR goes through when it runs a .NET executable.
In particular we are...
AT
|
12-12-2003 06:31 AM
Mark Hurd | 2 | 14 |
|  | What I am trying to do:
I want to write a regression test program that will automatically select and
use a specific version of a DLL, based on...
AT
|
12-11-2003 10:13 PM
Mark Hurd | 5 | 19 |
|  | When I run debug with a breakpoint set the breakpoint
appears with a "?". When I place the mouse pointer over
the breakpoint the following...
Marc
|
12-11-2003 01:19 PM
Jan | 2 | 14 |
|  | I seem to have found a bug in the BitVector32 structure.
Programatically, it is not possible to check the value of
the highest bit (32nd) using...
Paul Reeder
|
12-11-2003 07:29 AM
Sebastien Lambla | 3 | 12 |
|  | my problem is as follows:
abstract class A
{
abstract Foo();
static Doit()
{
A = new B();
}
}
cody
|
12-10-2003 02:17 PM
Gianluca Varenni | 1 | 14 |
|  | In Visual Basic .Net, I am trying to figure out how to
get a reference to the open window that the mouse is in.
Suppose I select (highlight) text on...
Ed White
|
12-09-2003 09:30 PM
Ed White | 0 | 16 |
|  | I have seen a very strange piece of code being generated by the C# compiler
and was hoping someone might be able to shed some light on it. I've...
Brian Tyler
|
12-09-2003 08:16 AM
Gabriele G. Ponti | 10 | 30 |
|  | The questions I have may be obvious and perhaps somewhat nitpicky, but I'd
like some clarification so I know that I am not misinterpreting...
Dave
|
12-08-2003 08:48 PM
Dave | 8 | 18 |
|  | I posted this message on microsoft.public.dotnet.framework.windowsforms
since the original thread related to an error that results when trying...
David Battams
|
12-08-2003 10:34 AM
David Battams | 2 | 17 |
|  | I'm guessing that it has something to do with VB's loose type-safety.
Try adding "Option Strict" and compile the code again. I know that VB
without...
Matthew W. Jackson
|
12-08-2003 12:34 AM
Matthew W. Jackson | 0 | 21 |
|  | Hi
I'm using the Compact Framework and I want to create an instance of a
delegate from a MethodInfo but Delegate.CreateDelegate() isn't supported...
Mike Scott
|
12-06-2003 11:22 PM
xor | 1 | 21 |
|  | "Klaus Löffelmann" <fornewsgroups (AT) loeffelmann (DOT) de> wrote
YIKES! You should definitely not be doing this. The documentation...
Ted Miller
|
12-06-2003 12:25 AM
Ted Miller | 0 | 20 |
|  | This code (in a containing class which is re-instantiated for the second
compile) results in a generated executable that is stuck "in use" (can't...
Phil Wilson
|
12-05-2003 11:43 AM
AT | 3 | 27 |
|  | Excellent question Klaus,
I'm not sure if I know the exact answer to that, however I have a hunch that
there exists a one-to-many correspondence to...
Ben Rush
|
12-04-2003 12:43 PM
Ben Rush | 4 | 16 |
|  | I am trying to profile a managed window service and I am not having any
luck.
Here is what I am doing:
1) Click on file menu and choose Profile...
Raghu
|
12-04-2003 10:34 AM
Peter Sollich [MSFT] | 5 | 26 |
|  | Hi,
Binding policy can happen at several levels :
- Application-policy resolution (e.g. myapp.exe.config)
- Publisher-policy resolution ...
Chris
|
12-04-2003 02:42 AM
Conrad Zhang | 1 | 18 |
|  | I am trying to generate a class hierarchy like this:
public class A {
public class A.Helper {
}
}
public class B: A {
public new class B.Helper:...
Microsoft public
|
12-03-2003 04:36 PM
AT | 1 | 16 |
|  | We host bunch of singleton remoting objects in different app domains in a
window service. The service runs with admin user identity. The...
Raghu
|
12-03-2003 02:24 PM
Raghu | 0 | 15 |
|  | Hi:
I have problem. I have move VC++ 6.0 code to VC++ .Net. That code
statically links to a third part native dll's. I have used the
Microsoft's...
AT
|
12-03-2003 02:12 PM
AT | 0 | 22 |
|  | I am trying to scan an method or constructor at runtime for whatever local
variables it may have using Reflection.
So far my code looks basically...
Luke Oliver
|
12-03-2003 01:29 PM
AT | 6 | 18 |
|  | Hi all,
I hope this is the right NG for this question.
I got a problem generating IL via Reflection.Emit.
I cannot generate the code for this...
Zanna
|
12-03-2003 01:14 PM
AT | 1 | 11 |
|  | Isn't it true, though, that since he "could" call Dispose(), say, on the
FileStream object that there's no chance that it would have been...
Ben Rush
|
12-03-2003 11:04 AM
Ben Rush | 3 | 23 |
|  | If Chris does not have right to access anything on system drive, I don't
think Chris can change that reg key.
Basically, you have to be admin to...
Chris
|
12-02-2003 11:42 AM
Conrad Zhang | 2 | 15 |
|  | Hi
I am facing a assembly reference issue
I have a assembly A that refers B
B has custom permission attributes defined.
In Assembly A i refer those...
AT
|
12-02-2003 06:08 AM
AT | 0 | 20 |
|  | "Sebastien Lambla" <sebastien.lambla (AT) 6sens (DOT) com> wrote
My web application allows users to create little VB.NET scripts to execute.
That...
None
|
12-01-2003 10:42 PM
None | 13 | 27 |
|  | #include <vcclr.h
To keep our code a little "cleaner" I'd like to encapsulate the converting of System::Strings to char pointers
I know putting the...
Steve W TSI
|
12-01-2003 11:58 AM
MS support | 1 | 27 |
|  | Problem 1
I added an icon to the resource files folder in my project. I've look everywhere for the selection "Embedded Resource". I've right...
Steve W of TSI
|
12-01-2003 08:36 AM
Steve W of TSI | 1 | 13 |
|  | Hi all,
A question: when I have 2 values (let's say A and B) and want to assign A to
B, if A and B are of different type I need to (please say me if...
Zanna
|
11-30-2003 01:40 PM
Michael Giagnocavo [MVP] | 4 | 18 |
|  | If I run some code in the default domain of a console applicaiton, all works fine, if I create a new domain:
AppDomain newDomain =...
Matt Davey
|
11-28-2003 06:07 AM
Matt Davey | 12 | 30 |
|  | Hi,
here's a hopefully simple question. On our test server we have installed the
..NET Framework but without any Visual Studio .NET utilities. I...
Mauro
|
11-26-2003 05:56 AM
Jon Skeet [C# MVP] | 1 | 16 |
|  | Hello,
We're currently trying to identify the source of a memory leak in a web
application. We notice that the privates bytes increases constantly...
Ben Rush
|
11-25-2003 06:02 PM
Kerry Sanders | 6 | 18 |
|  | AppDomainSetup has "PrivateBinPath" property. How do I apply something like
this for the current AppDomain, so that I can load the dependencies of...
Jon Davis
|
11-25-2003 02:48 AM
Marc Scheuner [MVP ADSI] | 1 | 23 |
|  | I am having really tough time finding anywhere on the web
concrete explanation (if any) of how Garbage Colletor
decided for C++ managed objects when...
Joe
|
11-24-2003 08:08 PM
JuQiang | 7 | 19 |
|  | Hello,
I'm having a problem with a weakreference. The situation is that I
have some classes in my application that act as a target for...
AT
|
11-24-2003 12:07 PM
AT | 1 | 15 |
|  | Hi everyone,
I am developing an embedded app in vb.net with CF,when I use a dll
which built in PB4.2 to access physical memory I found it makes...
sheng shan
|
11-23-2003 09:03 PM
sheng shan | 0 | 14 |
|  | This is a bit of longshot because I'm sure not a lot of people know the
major details of this, but I was wondering if anyone out there might be...
Ben Rush
|
11-23-2003 08:06 AM
Fabian Schmied | 1 | 15 |
|  | Hi,
For an application whose Thread state is
ApartmentState.STA, is there any difference between
current domain and default domain. If so how can i...
Ravichandra
|
11-21-2003 06:09 PM
Peter Koen | 2 | 13 |
|  | Hi need some help here.
Since i have run the CLR Profiler, after that my computer
start running asp.net application very slow even though
i'm close...
websparc
|
11-21-2003 04:02 PM
David Browne | 5 | 20 |
|  | Klaus Löffelmann <fornewsgroups (AT) loeffelmann (DOT) de> wrote:
Not necessarily.
See http://www.pobox.com/~skeet/csharp/memory.html
They only...
Jon Skeet [C# MVP]
|
11-21-2003 02:01 PM
Ben Rush | 1 | 12 |
|  | I have asked this question many times and never a response from MS....so
please...respond this time before I switch to Java.
I simply want to know...
decrypted
|
11-20-2003 01:07 PM
decrypted | 7 | 20 |