在 TAB Control 子页直接传递数值(遇到数据转换问题)
CString strTemp111;Page_one->GetDlgItem(IDC_Attachment_Edit)->GetWindowText(strTemp111);
Page_five->GetDlgItem(IDC_Maxa)->SetWindowText(strTemp111);
问题背景:我从 PageOne计算得的结果会自动传递给PageFive, 是通过strTemp111 传递。
问题:但是我在Page_five->GetDlgItem(IDC_Maxa)得到的值,需要是strTemp111的 9.8 倍而不是strTemp111 本身,我能怎么乘呢? 因为 这个是 CString型的变量,不知道怎么转换或者可以有什么别的方法传递么? (因为 Tab control 里面我不能domodal对话框,所以通过指针传递)
谢谢!!