all groups > visual c libraries > november 2004
how to change the dialog background color by clicking a button?
Posted by Mark at 11/28/2004 4:23:02 AM
i can change the dialog background color by calling the
function----SetDialogBkColor(RGB(0,0,255),RGB(255,0,0))-----in the function
InitInstance(), but i want to change the background color only by clicking a
button on the dialog. what should i do? thanks!!... more >>
how to export functions from dll
Posted by Dirk Reske at 11/27/2004 12:45:21 AM
Hello,
I try to write a managed c++ dll
that exports some functions that should be called by a c++ app.
in this functions i will call a function in a c# dll
int __declspec(dllexport)plugin_main(char *event, void *data)
{
//Here I call my C# functions
}
Is this declaration right... more >>
Article : Soapsuds.exe (.Net Framework tools series)
Posted by Namratha Shah \(Nasha\) at 11/26/2004 9:30:29 PM
Hey Group,
Today we gonna discuss Soapsuds tool.
Soapsuds is shipped with .Net FrameWork and is used by .Net remoting Client
Applications to generate xml schema,proxy class or assembly for their HTTP
Remoting Server. Client App can use this proxy class or the assembly as a
reference to the... more >>
Getting R6016 when trying to start new thread
Posted by Greno Zee at 11/19/2004 4:37:01 AM
Hi all!
I'm new to these discussion boards and my C/C++ experience is not very deep.
So please be patient with my and forgive me if I don't grasp the structures
here at first glance.
I'm trying to implement some multithreading to my current project and I want
to see how mutexes and event... more >>
Getting a build error from libary file, excpt.h
Posted by gordonbm at 11/18/2004 7:19:04 PM
This is the error when building code from Article 307398 - File I/O:
C:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\excpt.h(36):
fatal error C1075: end of file found before the left brace '{' at
'c:\Q307398\Form1.h(5)' was matched
I cannot find whats not correct and at what p... more >>
Need Help with Runtime Library
Posted by boats013 at 11/11/2004 12:34:03 PM
I am getting a Runtime Error! at Program: C:\Program Files\Microsoft
Office\Office\Outlook.exe
"This application has requested the Runtime to terminate it in an unusual
way. Please contact the application's support team for more information."
"Unable to display the folder. Errors have been d... more >>
How to print a txt file into a printer?
Posted by Mark at 11/10/2004 1:55:01 AM
i can print a string into a printer,for example
FILE *pFile = fopen("LPT1", "w");
fprintf(pFile, "i like c++");
fclose(pFile);
But now i want to print a txt file into a printer, what should i do?
thanks!!!!!... more >>
msvcprt.lib
Posted by Christian Galbavy at 11/6/2004 3:02:45 PM
Hello!
Hope somebody can help me.
I need the lib msvcprt.lib to link my program, but I do not have this lib. I
have installed Visual C++ Toolkit 2003, Visual Studio .NET 2003, Microsoft
..NET, Microsoft Platform SDK for Windows XP Sp2 but this lib is not included
anywhere.
Where can I get th... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Article : Resource File Generator (Resgen.exe .Net FrameWork Tools Series)
Posted by Namratha Shah \(Nasha\) at 11/3/2004 12:26:01 AM
This is a multi-part message in MIME format.
------=_NextPart_000_0039_01C4C13B.B2BAE300
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
Hi All,
This is a resource file generation tool which converts an xml based =
resource formats to .net res... more >>
Sleep() and SleepEx() inaccuracy
Posted by D. Uptagrafft at 11/2/2004 12:25:02 PM
The accuracy of the Sleep() and SleepEX() functions have changed with newer
processors/PCs. The code listed at the end of this message should execute
100 times for each delay value. I ran this code on several PCs. I get
different results depending on the PC hardware used for the test.
Th... more >>
|