Problems setting text. PLZZZ Help!

Ok, I have an int that I want to display in an edit control. I used stringstream to convert the int to a char, but when I compile it tells me that I can only use a const char. This simply will not work for me, because from what I understand of constants, they cannot change.

Is there a way to set text to a char or even a string variable? If not, is there a different type of edit control that I should be using?
It might be helpful if you posted the relevant code with the error.

You code should look something like:
1
2
3
4
5
std::ostringstream os;
os << iValue;

std::string str = os.str();
control.SetWindowText(str.c_str());
Ok heres the code that I was trying to use NumFIN is the int, NumConverted is a char, and ss is the stringstream.

The error that I get is "invalid conversion from char to const char"

NumFIN = GetDlgItemInt(hwndTextbox, ID_TEXTBOX, NULL, NULL);
            ss <<NumFIN;
            ss >>NumConverted;
            Func();
            SetWindowText(hwndAnswerbox, NumConverted);
Can you show the declaration of NumConverted? We need to see the type.

And what line is the error referring to?
Last edited on
The error refers to line 148 the SetWindowText command. Heres the code I've been using hope this helps.



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#include <windows.h>
#include <sstream>
#include <string.h>

/*  Declare Windows procedure  */
LRESULT CALLBACK WindowProcedure (HWND, UINT, WPARAM, LPARAM);

/*  Make the class name into a global variable  */
char szClassName[ ] = "WindowsApp";

int WINAPI WinMain (HINSTANCE hThisInstance,
                    HINSTANCE hPrevInstance,
                    LPSTR lpszArgument,
                    int nFunsterStil)

{
    HWND hwnd;               /* This is the handle for our window */
    HDC hdc;
    MSG messages;            /* Here messages to the application are saved */
    WNDCLASSEX wincl;        /* Data structure for the windowclass */

    /* The Window structure */
    wincl.hInstance = hThisInstance;
    wincl.lpszClassName = szClassName;
    wincl.lpfnWndProc = WindowProcedure;      /* This function is called by windows */
    wincl.style = CS_DBLCLKS;                 /* Catch double-clicks */
    wincl.cbSize = sizeof (WNDCLASSEX);

    /* Use default icon and mouse-pointer */
    wincl.hIcon = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hIconSm = LoadIcon (NULL, IDI_APPLICATION);
    wincl.hCursor = LoadCursor (NULL, IDC_ARROW);
    wincl.lpszMenuName = NULL;                 /* No menu */
    wincl.cbClsExtra = 0;                      /* No extra bytes after the window class */
    wincl.cbWndExtra = 0;                      /* structure or the window instance */
    /* Use Windows's default color as the background of the window */
    wincl.hbrBackground = GetSysColorBrush(COLOR_3DFACE);

    /* Register the window class, and if it fails quit the program */
    if (!RegisterClassEx (&wincl))
        return 0;

    /* The class is registered, let's create the program*/
    hwnd = CreateWindowEx (
           0,                   /* Extended possibilites for variation */
           szClassName,         /* Classname */
           "AAF App",           /* Title Text */
           WS_SYSMENU,          /* default window */
           CW_USEDEFAULT,       /* Windows decides the position */
           CW_USEDEFAULT,       /* where the window ends up on the screen */
           500,                 /* The programs width */
           375,                 /* and height in pixels */
           HWND_DESKTOP,        /* The window is a child-window to desktop */
           NULL,                /* No menu */
           hThisInstance,       /* Program Instance handler */
           NULL                 /* No Window Creation data */
           );

    /* Make the window visible on the screen */
    ShowWindow (hwnd, nFunsterStil);

    /* Run the message loop. It will run until GetMessage() returns 0 */
    while (GetMessage (&messages, NULL, 0, 0))
    {
        /* Translate virtual-key messages into character messages */
        TranslateMessage(&messages);
        /* Send message to WindowProcedure */
        DispatchMessage(&messages);
    }

    /* The program return-value is 0 - The value that PostQuitMessage() gave */
    return messages.wParam;
}
#define ID_BTN 1
#define ID_TEXTBOX 2
#define ID_TEXTBOX2 3
#define ID_TEXTBOX4 4

static HWND hwndTextbox;
static HWND hwndAnswerbox;
std::stringstream ss;
int NumFIN = 10;

void Func(){
       MessageBox(NULL, NumFIN+"", "Message Box", MB_OK);
       }



/*  This function is called by the Windows function DispatchMessage()  */

LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{       
        int len = GetWindowTextLength(hwndTextbox) + 1;
        static char title[50];
      
        char NumConverted = 0;
        
        
switch (message)                  /* handle the messages */
    {
      case WM_CREATE:{
 
         hwndTextbox = CreateWindow(TEXT("EDIT"), TEXT(""),
             WS_VISIBLE | WS_CHILD | WS_BORDER | ES_NUMBER | ES_MULTILINE | WS_VSCROLL,
             10,50, 250, 265,
             hwnd, (HMENU) ID_TEXTBOX, NULL, NULL
              );
              
        hwndAnswerbox = CreateWindow(TEXT("EDIT"), TEXT(""),
             WS_VISIBLE | WS_CHILD | WS_BORDER | ES_READONLY | ES_CENTER | WS_VSCROLL | WS_HSCROLL | ES_MULTILINE,
             270, 100, 200, 215,
             hwnd, (HMENU) ID_TEXTBOX2, NULL, NULL
              );
              
         CreateWindow(TEXT("EDIT"), TEXT("Final Answer"),
             WS_VISIBLE | WS_CHILD | WS_BORDER | ES_READONLY | ES_CENTER,
             300, 50, 125, 25,
             hwnd, (HMENU) ID_TEXTBOX4, NULL, NULL
              );
              
              
         CreateWindow(TEXT("button"), TEXT("Compute"),
             WS_VISIBLE | WS_CHILD, 
             10, 10, 250, 30,
             hwnd, (HMENU) ID_BTN, NULL, NULL
              );
              
              break;
        
        } 
        
 case WM_COMMAND:{
      // this is pretty much a function that will handle
      // button events and 
        // Actions for default buttons
        if (LOWORD(wParam) == ID_BTN){
            //create default variables
            
            GetWindowText(hwndTextbox, title, len);
            // create the message box
            if (len > 0){        
           // NumFIN = GetDlgItemInt(hwndTextbox, ID_TEXTBOX, NULL, NULL);
            ss <<NumFIN;
            ss >>NumConverted;
            Func();
            //TextOut(hdc, 300, 5, NumConverted, len);
            SetWindowText(hwndAnswerbox, NumConverted+"");
           // MessageBox(hwnd, "Too Long", "Message Box", MB_OK);
            }else{
            MessageBox(hwnd, "Too Short", "Message Box", MB_OK);
            } 
                 
          }
            
        break;
        }
            
        case WM_DESTROY:
            PostQuitMessage (0);       /* send a WM_QUIT to the message queue */
            break;
        default:                      /* for messages that we don't deal with */
            return DefWindowProc (hwnd, message, wParam, lParam);
    }

    return 0;
}
Ok, it's a char. It should be string. Also, try to declare variables where they're used.

If you define it to be a string, you get:
1
2
3
4
5
std::string NumConverted;
NumFIN = GetDlgItemInt(hwndTextbox, ID_TEXTBOX, NULL, NULL);
ss <<NumFIN;
ss >>NumConverted;
SetWindowText(hwndAnswerbox, NumConverted.c_str());


or if you opt for a char array for whatever reason:

char NumConverted[MAXLEN];
NumFIN = GetDlgItemInt(hwndTextbox, ID_TEXTBOX, NULL, NULL);
ss <<NumFIN;
ss >>NumConverted;
SetWindowText(hwndAnswerbox, NumConverted);


But you should use std::string for strings unless there's a reason to do otherwise.
It yould be better if you used the approach kbw first suggested; using the str() method to obtain the string rather than the extraction operator. Then you can use an ostringstream rather than a stringstream; you can even do it without the string variable.

Also, there is no need for either ss or NumFin to be global. It would be better if they wer declared where they're needed.

1
2
3
4
int NumFIN = GetDlgItemInt(hwndTextbox, ID_TEXTBOX, NULL, NULL);
std::ostringstream ss;
ss <<NumFIN;
SetWindowText(hwndAnswerbox, ss.str().c_str());


Andy

PS The broken function on line 84 would be better as

1
2
3
4
5
6
// hWnd is the parent window's handle
void Func(HWND hWnd, int NumFIN){
    std::ostringstream ss;
    ss <<NumFIN;
    MessageBoxA(hWnd, ss.str().c_str(), "Message Box", MB_OK);
}
Last edited on
Topic archived. No new replies allowed.