70 if (valtl!=_T(
"")) valtlBox->SetWindowText(valtl);
72 sntprintf(buf, LMNAME, _T(
"%d"), val);
73 valBox->SetWindowText(buf);
151 if (valtl!=_T(
"")) valtlBox->SetWindowText(valtl);
153 sntprintf(buf, LMNAME, _T(
"%8f"), val);
154 valBox->SetWindowText(buf);
259 for (
int i=0; i<6; i++) {
260 if (valtl[i]!=_T(
"")) {
261 valtlBox[i]->SetWindowText(valtl[i]);
262 sntprintf(buf, LMNAME, _T(
"%8f"), val[i]);
263 valBox[i]->SetWindowText(buf);
268 valtlBox[i]->SetWindowText(mesg);
269 valtlBox[i]->EnableWindow(FALSE);
270 valBox[i]->SetWindowText(_T(
"0.0"));
271 valBox[i]->EnableWindow(FALSE);
329 LPCTSTR t3,
double* v3, LPCTSTR t4,
double* v4, LPCTSTR t5,
double* v5)
334 for (
int i=0; i<6; i++) {
339 if (t0!=NULL && v0!=NULL) {
343 if (t1!=NULL && v1!=NULL) {
347 if (t2!=NULL && v2!=NULL) {
351 if (t3!=NULL && v3!=NULL) {
355 if (t4!=NULL && v4!=NULL) {
359 if (t5!=NULL && v5!=NULL) {
365 (LPCTSTR)ttl[2], val[2], (LPCTSTR)ttl[3], val[3],
366 (LPCTSTR)ttl[4], val[4], (LPCTSTR)ttl[5], val[5]);
367 if (inpdlg->DoModal()!=IDOK) {
372 if (v0!=NULL) *v0 = inpdlg->
val[0];
373 if (v1!=NULL) *v1 = inpdlg->
val[1];
374 if (v2!=NULL) *v2 = inpdlg->
val[2];
375 if (v3!=NULL) *v3 = inpdlg->
val[3];
376 if (v4!=NULL) *v4 = inpdlg->
val[4];
377 if (v5!=NULL) *v5 = inpdlg->
val[5];
BOOL InputMultiFloatNumDLG(LPCTSTR t0, double *v0, LPCTSTR t1=NULL, double *v1=NULL, LPCTSTR t2=NULL, double *v2=NULL, LPCTSTR t3=NULL, double *v3=NULL, LPCTSTR t4=NULL, double *v4=NULL, LPCTSTR t5=NULL, double *v5=NULL)