Re: AccessViolationException originating from mscorjit
Tue, 9 Sep 2008 07:07:01 +0000 (UTC)
Hello Pavel,
> If you're looking for a quick temporary workaround (assuming that
> creatively rearranging code didn't work), consider using
> MethodImplAttribute with MethodImplOptions.NoOptimization on the
> offending method.
Thanks, I didn't know about that one. Actually, creatively rearranging does
wor ...
|
FileSystemWatcher rename parent folder
Mon, 8 Sep 2008 22:28:53 -0700 (PDT)
Hi,
I am watching for file system events in a folder "D:\Watcher\Watch"
folder which is working perfectly fine. However, this prevents user
from renaming the parent folder (in this case "d:\watcher" folder).
Now customer wants the ability that the user should be able to rename
the parent folder. Does anyone h ...
|
File.WriteAllText fails: "file is being used by another process"
Mon, 8 Sep 2008 12:19:01 -0700
Hello, everybody.
We get strange error with File.WriteAllText(), and I cannot understand why.
The stack trace is the following:
Message: The process cannot access the file
'C:\WINDOWS\TEMP\_633558601793472408_2003786287.tmp.xml' because it is being
used by another process.
Type: System.IO.IOException
St ...
|
Triangle of Pascal
Mon, 8 Sep 2008 10:39:26 -0700 (PDT)
c #: Implementing the method Int [,] TrianglePascal (int n) which
returns the triangle to
the level of Pascal N.
public static int[,] TrianglePascal(int n)
{
int[,] arr = new int[n+1,n+1];
for(int i=0;i<n+1;i++)
{
for(int k=0;k<n+1;k++)
{
...
|
RE: AccessViolationException originating from mscorjit
Mon, 8 Sep 2008 13:53:56 +0000 (UTC)
Hi Jeffrey,
We have initially been focusing our efforts on creating a reduced test case. This is now completed, and we have an around 200 lines C# file which only refers System.dll, and only contains safe code. Reducing further generally removes the problem, which is centered around JITting the method ''FordelPræmie ...
|
Publisher 2002 error message
Mon, 8 Sep 2008 03:57:01 -0700
I made a copy of a Publisher document. Then I made some changes in the new
document and saved them and then closed the document. When I try to reopen
the new document, I get an error message. Please help.
Thanks. ...
|
Temp file collision when building with csc.exe
Mon, 8 Sep 2008 07:49:30 +0000 (UTC)
We use a build system which compiles in 3-6 processes in parallel, using
the csc.exe program (usually via the .NET interface to it). To save time
copying resulting build products, we set the output directory to the destination
we want directly, instead of building each project to its own local location
and c ...
|
|
|
Running framework version 2.0 application on version 3.0/3.5
Mon, 08 Sep 2008 12:07:08 +0530
Can anyone please tell me why it is not possible to run an application
developed in/on version 2.0 on version 3.0 or 3.5?
MSDN says "An application created with the .NET Framework version 2.0
can target only version 2.0."
I don't have much idea of framework 3.0 or 3.5 except that it contains
WPF/WCF...
...
|
Stretching a middle child control in WPF
Sun, 7 Sep 2008 11:19:01 -0700
In a row of a vertically-oriented StackPanel, I want a label, then a text
box, and then a checkbox. I want the label and checkbox as wide as their
text, and the text box to stretch based on the width of the parent (so that
the checkbox is docked to the right). How do I do this?
I tried the following (as a c ...
|
VC component inside solution become slow
Sun, 7 Sep 2008 01:29:16 -0700 (PDT)
I have an VC librabry inside solution, and it was running good until
yesterday.
But now, it's running good/fast inside Visual Studio (2005), but
outside it (when rebuild), it's running very slow.
What could cause it?
It's VS 2005 SP2 with Win XP SP2.
inside VS I disabled Tools/Options/Debugging: 'Load DLL ex ...
|