Click here to Skip to main content
16,012,107 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Answerplease help us Pin
Rajesh R Subramanian9-Apr-07 0:04
professionalRajesh R Subramanian9-Apr-07 0:04 
AnswerRe: please help me Pin
ThatsAlok9-Apr-07 0:14
ThatsAlok9-Apr-07 0:14 
GeneralRe: please help me Pin
eclairs_db9-Apr-07 0:44
eclairs_db9-Apr-07 0:44 
AnswerRe: please help me Pin
Naveen9-Apr-07 1:05
Naveen9-Apr-07 1:05 
QuestionRe: please help me Pin
eclairs_db9-Apr-07 1:08
eclairs_db9-Apr-07 1:08 
AnswerRe: please help me Pin
Naveen9-Apr-07 2:06
Naveen9-Apr-07 2:06 
GeneralRe: please help me Pin
eclairs_db9-Apr-07 2:17
eclairs_db9-Apr-07 2:17 
GeneralRe: please help me Pin
Naveen9-Apr-07 2:28
Naveen9-Apr-07 2:28 
And in the Other thread what all are available. I mean will you get the handle of the edit box or dialog?

1. If you have the handle of the edit box, you can directly use SetWindowText() and GetWindowText() functions

eg:
::SetWindowText( hEdit, "Some text to set" );

2. if you have the handle of the dialog, you can use SetDlgItem() function.

eg:
::SetDlgItemText( hDialog, IDC_EDIT_URL, "Some text to set" );

in the place of the IDC_EDIT_URL, specify the id of the edit control.

Do you have any pblm in using this. More over using UpdateData() function is not good. Now a days I do not create any value type variable for controls. Smile | :) . Cause i hate calling UpdateData() function.


nave

GeneralRe: please help me Pin
eclairs_db9-Apr-07 2:42
eclairs_db9-Apr-07 2:42 
GeneralRe: please help me Pin
eclairs_db9-Apr-07 2:54
eclairs_db9-Apr-07 2:54 
GeneralRe: please help me Pin
Naveen9-Apr-07 17:11
Naveen9-Apr-07 17:11 
AnswerRe: please help me Pin
David Crow9-Apr-07 2:54
David Crow9-Apr-07 2:54 
GeneralRe: please help me Pin
eclairs_db9-Apr-07 2:59
eclairs_db9-Apr-07 2:59 
QuestionRe: please help me Pin
David Crow9-Apr-07 3:05
David Crow9-Apr-07 3:05 
AnswerRe: please help me Pin
eclairs_db9-Apr-07 3:10
eclairs_db9-Apr-07 3:10 
GeneralRe: please help me Pin
David Crow9-Apr-07 3:19
David Crow9-Apr-07 3:19 
Questionplease help me Pin
sahar.safi8-Apr-07 22:30
sahar.safi8-Apr-07 22:30 
AnswerRe: please help me Pin
Naveen8-Apr-07 22:43
Naveen8-Apr-07 22:43 
GeneralRe: please help me Pin
sahar.safi8-Apr-07 22:49
sahar.safi8-Apr-07 22:49 
GeneralRe: please help me Pin
Rajesh R Subramanian8-Apr-07 22:56
professionalRajesh R Subramanian8-Apr-07 22:56 
GeneralRe: please help me Pin
sahar.safi8-Apr-07 22:58
sahar.safi8-Apr-07 22:58 
General? Pin
sahar.safi8-Apr-07 22:53
sahar.safi8-Apr-07 22:53 
GeneralRe: ? Pin
Naveen8-Apr-07 23:13
Naveen8-Apr-07 23:13 
GeneralRe: ? Pin
David Crow9-Apr-07 3:04
David Crow9-Apr-07 3:04 
GeneralRe: ? Pin
Hamid_RT9-Apr-07 3:08
Hamid_RT9-Apr-07 3:08 

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.