Click here to Skip to main content
15,895,370 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to set VC6 to fit this useness? Pin
kcynic5-May-08 20:26
kcynic5-May-08 20:26 
QuestionCSpinButtonCtrl Pin
Chandrasekharan P5-May-08 19:32
Chandrasekharan P5-May-08 19:32 
AnswerRe: CSpinButtonCtrl Pin
Rajesh R Subramanian5-May-08 20:33
professionalRajesh R Subramanian5-May-08 20:33 
GeneralRe: CSpinButtonCtrl Pin
Chandrasekharan P6-May-08 20:26
Chandrasekharan P6-May-08 20:26 
Questionupdate the value of edit box Pin
shohel8995-May-08 19:26
shohel8995-May-08 19:26 
QuestionRe: update the value of edit box Pin
Rajesh R Subramanian5-May-08 19:31
professionalRajesh R Subramanian5-May-08 19:31 
AnswerRe: update the value of edit box Pin
_AnsHUMAN_ 5-May-08 19:32
_AnsHUMAN_ 5-May-08 19:32 
AnswerRe: update the value of edit box Pin
krmed6-May-08 0:44
krmed6-May-08 0:44 
Most likely you are trying to do this in some kind of loop - the update won't occur until you leave the loop (or function) and that's why you only see the last.

One option is to force an update after you set each value, so in your loop, you would do something like:
for (i = 0; i < SOMEBIGNUMBER; i++)
{
    ...
    ...
    UpdateData(FALSE);
    GetDlgItem(IDC_MYEDIT)->UpdateWindow();
}

Hope that helps.

Karl - WK5M
PP-ASEL-IA (N43CS)
PGP Key: 0xDB02E193
PGP Key Fingerprint: 8F06 5A2E 2735 892B 821C 871A 0411 94EA DB02 E193

GeneralRe: update the value of edit box Pin
shohel8996-May-08 1:30
shohel8996-May-08 1:30 
Questionrelated files of CDaoDatabase Pin
includeh105-May-08 18:14
includeh105-May-08 18:14 
AnswerRe: related files of CDaoDatabase Pin
Rajesh R Subramanian5-May-08 18:35
professionalRajesh R Subramanian5-May-08 18:35 
GeneralIt is not working Pin
includeh105-May-08 19:29
includeh105-May-08 19:29 
AnswerRe: It is not working Pin
Rajesh R Subramanian5-May-08 19:34
professionalRajesh R Subramanian5-May-08 19:34 
AnswerRe: related files of CDaoDatabase Pin
Ozer Karaagac5-May-08 22:17
professionalOzer Karaagac5-May-08 22:17 
QuestionInteresting results with consts and pointers... Pin
frozenkore5-May-08 17:44
frozenkore5-May-08 17:44 
AnswerRe: Interesting results with consts and pointers... Pin
Dan5-May-08 21:31
Dan5-May-08 21:31 
AnswerRe: Interesting results with consts and pointers... Pin
CPallini5-May-08 21:50
mveCPallini5-May-08 21:50 
AnswerRe: Interesting results with consts and pointers... Pin
markkuk6-May-08 0:22
markkuk6-May-08 0:22 
AnswerRe: Interesting results with consts and pointers... Pin
Mark Salsbery6-May-08 6:05
Mark Salsbery6-May-08 6:05 
QuestionSQL statement error: update record, why? Pin
includeh105-May-08 15:22
includeh105-May-08 15:22 
AnswerRe: SQL statement error: update record, why? Pin
Rajesh R Subramanian5-May-08 19:37
professionalRajesh R Subramanian5-May-08 19:37 
AnswerRe: SQL statement error: update record, why? Pin
toxcct5-May-08 21:51
toxcct5-May-08 21:51 
Questioncustom CSatusBar and double-buffering Pin
blamond5-May-08 15:02
blamond5-May-08 15:02 
AnswerRe: custom CSatusBar and double-buffering Pin
Rajkumar R5-May-08 21:51
Rajkumar R5-May-08 21:51 
GeneralRe: custom CSatusBar and double-buffering Pin
blamond6-May-08 8:46
blamond6-May-08 8:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.