如何在静态文本中显示一个数组

qq_29870449 2015-07-21 10:31:03
编程新手求教。静态文本ID:IDC_STATIC2.数组:char *receiveData。还有是不是要UpdateData,是的话应该怎么放。
...全文
126 8 打赏 收藏 转发到动态 举报
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
worldy 2015-07-26
  • 打赏
  • 举报
回复
必须搞清楚,char *receiveData接收的数据是什么类型的数据,数据类型不是程序确定的,是由通信协议确定的,虽然你定义的char*,但你接收到不一定是按char*来解释。
Eleven 2015-07-26
  • 打赏
  • 举报
回复
SetDlgItemText(IDC_STATIC1, CString(receiveData)); receiveData是以'\0'结束的。
jacksonfan 2015-07-26
  • 打赏
  • 举报
回复

SetDlgItemText(IDC_STATIC2,receiveData);
zgl7903 2015-07-22
  • 打赏
  • 举报
回复
如果数据是文本数据 可以直接使用 ::SetDlgItemTextA(m_hWnd, IDC_STATIC2, pRcvData); 如果是特殊的,可以用CString做变量拼接,SetDlgItemText(IDC_STATIC2, str); 标准的MFC架构,可以类向导中添加一字符串变量,构造出合适的变量数据后UpdateData(FALSE) 1楼函数是str.Format 非常接近于C的printf
二班的码农 2015-07-22
  • 打赏
  • 举报
回复
引用 2 楼 qq_29870449 的回复:
[quote=引用 1 楼 mengfeihong 的回复:] 给控件添加成员变量,比如变量名m_st1,然后把数组成员转为字符串,比如CString str;for(int i = 0;i<recvSize;i++){CString str1;str.Fomat("%d",receiveData[i]);str += str1;} m_st1.SetWindowText(str);
error C2039: “Fomat”: 不是“ATL::CStringT<BaseType,StringTraits>”的成员,这个错误额[/quote] 怎么会是ATL错误,CString 是MFC中的类,楼主是不是头文件包含有问题 CString::Format void Format( LPCTSTR lpszFormat, ... ); void Format( UINT nFormatID, ... ); Parameters lpszFormat A format-control string. nFormatID The string resource identifier that contains the format-control string. Remarks Call this member function to write formatted data to a CString in the same way that sprintf formats data into a C-style character array. This function formats and stores a series of characters and values in the CString. Each optional argument (if any) is converted and output according to the corresponding format specification in lpszFormat or from the string resource identified by nFormatID. The call will fail if the string object itself is offered as a parameter to Format. For example, the following code: CString str = "Some Data"; str.Format("%s%d", str, 123); // Attention: str is also used in the parameter list. will cause unpredictable results. When you pass a character string as an optional argument, you must cast it explicitly as LPCTSTR. The format has the same form and function as the format argument for the printf function. (For a description of the format and arguments, seeprintf in the Run-Time Library Reference.) A null character is appended to the end of the characters written.
qq_29870449 2015-07-21
  • 打赏
  • 举报
回复
引用 1 楼 mengfeihong 的回复:
给控件添加成员变量,比如变量名m_st1,然后把数组成员转为字符串,比如CString str;for(int i = 0;i<recvSize;i++){CString str1;str.Fomat("%d",receiveData[i]);str += str1;} m_st1.SetWindowText(str);
error C2039: “Fomat”: 不是“ATL::CStringT<BaseType,StringTraits>”的成员,这个错误额
蒙飞鸿 2015-07-21
  • 打赏
  • 举报
回复
给控件添加成员变量,比如变量名m_st1,然后把数组成员转为字符串,比如CString str;for(int i = 0;i<recvSize;i++){CString str1;str.Fomat("%d",receiveData[i]);str += str1;} m_st1.SetWindowText(str);

16,504

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC相关问题讨论
社区管理员
  • 基础类社区
  • AIGC Browser
  • encoderlee
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

        VC/MFC社区版块或许是CSDN最“古老”的版块了,记忆之中,与CSDN的年龄几乎差不多。随着时间的推移,MFC技术渐渐的偏离了开发主流,若干年之后的今天,当我们面对着微软的这个经典之笔,内心充满着敬意,那些曾经的记忆,可以说代表着二十年前曾经的辉煌……
        向经典致敬,或许是老一代程序员内心里面难以释怀的感受。互联网大行其道的今天,我们期待着MFC技术能够恢复其曾经的辉煌,或许这个期待会永远成为一种“梦想”,或许一切皆有可能……
        我们希望这个版块可以很好的适配Web时代,期待更好的互联网技术能够使得MFC技术框架得以重现活力,……

试试用AI创作助手写篇文章吧