Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,892 questions

51,823 answers

573 users

To convert an ostringstream to an LPCSTR in a C++ Win32 API

2 Answers

0 votes
#include <Windows.h> 
#include <sstream>

int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    
    std::ostringstream oss;
        
    oss << "C++";
    oss << " ";
    oss << 26;

    std::string s = oss.str();

    MessageBoxA(0, s.c_str(), "info", MB_OK);
}



/*
run:

C++ 26

*/

 



answered Dec 6, 2024 by avibootz
0 votes
#include <Windows.h> 
#include <sstream>

int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
    
    std::ostringstream oss;
        
    oss << "C++";
    oss << " ";
    oss << 26;

    std::string s = oss.str();

    LPCSTR lpcstr = s.c_str();

    MessageBoxA(0, lpcstr, "info", MB_OK);
 }



/*
run:

C++ 26

*/

 



answered Dec 6, 2024 by avibootz
...