1. Held needed: Debugger not working anymore (Machine Debug Manager)
I recently installed Windows Scipt 5.6. Since then my VS doesn't startup
properly anymore. At startup a popup appears:
Microsoft Machine Debug Manager
usage: mdm [option]
options: /dumpjit: ...
Even worse VS says my debugger (I used every day) isn't installed properly.
In the event viewer I see a DCOM error log like:
The server {2C44C9B1-CB5D-...} didn't response in time.
I receive such a log whenever I want do do anything related to the debugger
(option setting, ...)
Hope someone has a hint keeping me from reinstalling everything.
Thanks.
2. I am unable to understand why this use of Substring does not work - CSharp/C#
4. NEWBIE: Not sure why i am getting this type of error
5. Why is this not allowed anymore (anymore being with a more recent compiler)?
So I tried to compile code that my boss wrote with a newer compiler
than I was previously using (FYI, the code compiles fine on g++ 3.4.4
but not on 4.1.1). I condensed it into this simple testprogram:
#include <string>
class Foo
{
private:
static const std::string LETTERS;
};
using namespace std;
namespace
{
const string Foo::LETTERS("abc");
}
int
main()
{
Foo f;
(void)f;
}
I must admit I'm not entirely sure what he want the anonymous (correct
term?) namespace for, but the more recent compiler sure doesn't like
it:
$ g++ --version
g++ (GCC) 4.1.1
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
$ g++ -Wall -Wextra -std=c++98 -pedantic foo.cpp -o runme.exe
foo.cpp:13: error: definition of 'Foo::LETTERS' is not in namespace
enclosing 'Foo'
I need you gurus on this one. :-)
/ E
6. I am trying to convert a C# file to VB.NET - need help - VB.Net
7. Need help for COM working from .NET Web app, but not working from .NET EXE app
Hi, I am currenly buliding a .NET app based on a third party software. Since the third party software was implemented using COM technology, I am using .NET TlbImp utility to wrapper COM dlls, then I can use them in my .NET application. However, those new .NET dlls (after wrapping) can only work correctly from a Web app (ASP.NET or Web Service), and it will not work correctly from .NET exe app (Windows Form app or Window Service app). The error message is "mscorlib Exception has been thrown by the target of an invocation.". I am guessing those old COM dlls relying on a web environment, but just can't figure it out how to solve it. It will be appreciated if anybody can help me. Thanks, Jeff
8. findcontrol("PlaceHolderPrice") why why why why why why why why why why why - Asp.Net