Windows service with timer on VISTA is not working
(1 messages)
Date: Wed, 22 Aug 2007 16:46:02 -0700
Hi,
I've written one simple windows service using .NET 2003 with Timer. When I
install the service on Win XP it works as expected, but on Vista I can see
the service getting installed but Timer is not working.
Please HELP. ...
|
oswamfvzgi
(1 messages)
Date: Mon, 20 Aug 2007 17:11:16 -0700
Hello! Good Site! Thanks you! qegmdgdblwi ...
|
Problem linking library
(1 messages)
Date: Mon, 20 Aug 2007 16:03:38 -0500
I am trying to port an existing app with libraries to VC.net. For some
reason one of the libraries does not appear to be included in the link. I
get unresolved references to functions in that library. I am not getting any ...
|
What is a Bitmap
(7 messages)
Date: Sun, 19 Aug 2007 21:35:23 -0400
I trying to learn what a Bitmap is. Not a Managed Bitmap Object but one
that, for example, comes from the clipboard with CF_BITMAP.
I'm guessing that a CompatableBitmap is an array of indices that point to
the colors ...
|
Multi-level namespace?
(3 messages)
Date: Sun, 19 Aug 2007 08:32:22 -0700
In C#, this is legal
namespace MyNamespace.MyApp
{
}
But when I did that in VC++, it didn't compile.
I had to change it to
namespace MyNamespace
{
namespace MyApp
{
}
}
If the level is more than two, it ...
|
cl command for lint/splint
(2 messages)
Date: Sat, 18 Aug 2007 07:54:07 -0700
Hello,
gnu g++ offers something similar to lint/splint for statically checking
C programs with the following command:
g++ -W -Wall -Wshadow -Wwrite-strings -Wold-style-cast
-Woverloaded-virtual -pedantic -Os -fno-exceptions ...
|
best memory allocation function for dealing with large (possibly
in the 100s of MBs) byte arrays?
(2 messages)
Date: Sat, 18 Aug 2007 20:17:33 +0800
I am working on some software which has to deal with data that could be as
large as 500mb or so. Currently I am using new[] and delete[] to manage
this memory but I find it is not ideal and sometimes gives out of memory ...
|
generics method?
(5 messages)
Date: Sat, 18 Aug 2007 04:25:23 -0000
What's the best approch to having a common method that takes a
collection ( List<> ), goes through its elements and deletes them.
public ref struct Struct1
{
public:
Struct1( );
~Struct1( );
};
public ...
|
Accessing C++ #defines and typedefs in a .NET project
(3 messages)
Date: Fri, 17 Aug 2007 14:53:22 -0700
I have this situation where I need to access the #defines and typedefs
defined in a C++ header file from a .NET Project (specifically C#). The C++
header file is from a medical device manufacturer which my software needs ...
|
Interlocked methods documentation have bad C++/CLI examples
(2 messages)
Date: Fri, 17 Aug 2007 14:59:26 -0500
Please validate:
https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=293850
...
|
|
ibejrfypnr
(1 messages)
Date: Thu, 16 Aug 2007 11:13:59 -0700
Hello! Good Site! Thanks you! itorczhlwzclg ...
|
imzuiipsav
(1 messages)
Date: Thu, 16 Aug 2007 11:14:05 -0700
Hello! Good Site! Thanks you! jruoaihhzfobp ...
|
Wierd problem with VS2003&vista
(5 messages)
Date: Thu, 16 Aug 2007 15:23:03 +0300
I've got code that works when started normally (explorer, command
whatever) but fails when started from VS2003. It crashes in different
place when started with debugging (F5) and other place when started
without debugging ...
|
header and code files structure
(3 messages)
Date: Thu, 16 Aug 2007 08:19:55 -0400
I had originally posted this to the comp.lang.C++.moderated group, and
was advised to bring this question here.
I haven't used C++ in quite a few years, and that was when I was
learning and made only console applications ...
|
Using C++/CLI class from VB
(5 messages)
Date: Thu, 16 Aug 2007 02:14:02 -0700
Hi,
I need to access methods from a C++/CLI class in VB.NET .
How can I do that?
Is should be something along the lines of "registering" the C++
program with the .NET framework and then probably adding a reference
to ...
|
Beginner C++/CLI questions
(6 messages)
Date: Wed, 15 Aug 2007 14:54:00 -0700
Hello,
I've got what I'm sure are some dumb questions. I've got some existing C++
code that I want to move to a C++/CLI assembly to make it easier to use in a
..NET app as well as continuing to use it in an existing C++ ...
|
My Hello World failed!
(9 messages)
Date: Wed, 15 Aug 2007 00:56:13 +0530
I have never been so embarassed! :-) I have played with C++, and even
created a few simple programs, but decided to learn it properly. So I crack
a book, get into Visual Studio and follow the instructions to create the ...
|
MFC Project abnormal editor behaviour
(1 messages)
Date: Tue, 14 Aug 2007 13:10:53 GMT
I couldn't find anything on the internet about what I am experiencing.
When I add an MFC ActiveX control project to my solution, I cannot work with
the files in that project.
When a file from such project is open, the ...
|
Font selection in COleControl::OnDraw
(1 messages)
Date: Tue, 14 Aug 2007 12:54:17 GMT
I designed a font "WAG Symbols" that contains symbols in the private use area of unicode.
Now I want to develop an insertable object that can handle these characters so they become visible in, let's say MS Word.
In Word, when ...
|
converting string in enum !!!
(3 messages)
Date: Tue, 14 Aug 2007 14:31:09 +0200
Hi, sorry if this is not the best group for this...
In C# I have string values that correspond to enum member names. I need a
conversion from the string value to the corresponding enum value - if
possible without a big ...
|