How can i capture the data i've typed into a text editor so i can store it and later reload the data on the same text editor... any suggestion or codes available... thanks
How can i capture the data i've typed into a text editor so i can store it and later reload the data on the same text editor... any suggestion or codes available... thanks
CEikEdwin::GetText()??
What kind of a control are you using?
im confused on what kind of control this is coz (a newbie confusion) im just using the application UI design of the carbide c++. But anyways, it says this editor is under the class name of CEikEdwin, resource type EDWIN...
Can you show me some codes on how to store this?
You can write in your Dialog classes SaveFormDataL() function as this:
Code:if ( ControlOrNull( EYourProjectDlgCtrlIdEdwinId ) ) { GetEdwinText(iYourMemberVar, EYourProjectDlgCtrlIdEdwinId ); }
how about if im going to use this data to make this as my password... will it be the same?
and can you give me some links where i could study the topic im asking... pdf much better...
You may refer the Forms example with the SDK.
Carbide.c++ UI Designer White Paper.
Introduction to S60 UI Components.
You can find more Symbian C++ documents here:
Symbian/C++ Documentation.