|
First
|
Prev |
Next
|
Last
Pages: 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
Forwarding DLL I want to make a DLL to forward some classes from a LIB. So, I have a solution in VS.NET2005 which contains 3 projects presented in their build order: ForwardLib [Win32.Static Library -pch] ~ no reference ForwardDll [Win32.DLL + Export Simbols] ~ reference to Lib ForwardApp [Win32 Application] ~ refe... 28 Jun 2006 21:28
hex string What is the easiest way to convert a hex string to binary? Thank you. ... 27 Jun 2006 12:48
rs232 -help! Hello, At this point if anyone has used the CSerialWnd class from code project, I am desperately in need of a code sample doing a Read task from rs232. I have been exploiting this subject with some of the most credible fellows on this newsgroups and I fully appreciated their support and wish to continue. I ... 29 Jun 2006 11:36
lnk 2019..... hello every1, I am new to VC++. I have assignement in which i am trying to port VC 6 code to VC 2005. Although I removed some of the common errors, I am getting some linking errors while building the sol'n. These are as follows: LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs;... 27 Jun 2006 12:48
rs232- [C] Hello, It *was* a success... however not for long! :-) Please consider the following code: ============================================ #include "Serial.h" #include "SerialEx.h" #include "SerialWnd.h" CSerialWnd MySerial; LRESULT CALLBACK WndProc_CW1 (HWND hwnd, UINT message, ... 28 Jun 2006 14:11
rs232-[B] Success! rs232 communications between VC++ and a PIC microcontroller have been established! What a relief! I *must* be very thankfull to the news groups for this ! You guys were great, and I would of never of made it without your help! Although all was constructive, I ran into one last but simple questi... 23 Jun 2006 21:06
Finding dependencies I'm moving a project from VS6 to VS2005 and am having a problem linking: cannot open file 'mfc42.lib' Is there a way to determine what file has this dependency? Thanks, Drew ... 19 Jun 2006 18:25
Monitor a directory using WaitForMultipleObjects Platform : Windows2000, XP, Microsoft Visual C++ .NET (Version 7.1), Hello, I need to process the files in a directory immediately the moment it gets deposited in a directory. I am trying to achieve this by running WaitForMultipleObjects , FindFirstChangeNotificationAPI, FindNextChangeNotification in a While ... 20 Jun 2006 09:01
enum problem - getting C4482 I've got this enum defined in a base class Beverage: enum SIZE { TALL, GRANDE, VENTI }; and the following in a decorator class Mocha ( Beverage <-- CondimentDecorator <-- Mocha ) double Mocha::cost() { double cost = this->pBeverage->cost(); switch (this->getSize()) { case SIZE::TALL: cost += 0.... 13 Jun 2006 11:35 |