Hello friends,
I am making an small application of the form in which label is not visible.
(As form is made of data field containing label and control and each data field is divided by separator. )
I am using S60_3rd edition,carbide c++.Is there are some methods or labels that can be used to do do??
As i m attaching here .rss file form resourse
Any help,suggestion,code snippet,advise will be highly appreciated.Code:RESOURCE DIALOG r_SimpleEx_dialog { flags=EEikDialogFlagNoDrag|EEikDialogFlagFillAppClientRect| EEikDialogFlagNoTitleBar|EEikDialogFlagWait| EEikDialogFlagCbaButtons; buttons=R_AVKON_SOFTKEYS_OPTIONS_BACK; form=r_SimpleEx_form; } RESOURCE FORM r_SimpleEx_form { flags = EEikFormEditModeOnly | EEikFormUseDoubleSpacedFormat; items= { DLG_LINE { type=EEikCtEdwin; prompt="Text"; id=ESimpleExText; itemflags=EEikDlgItemSeparatorAfter | EEikDlgItemSeparatorBefore; // to seperator after field. control=EDWIN { width=10; maxlength=256;}; }, DLG_LINE { type=EAknCtPopupFieldText; prompt="Color"; id=ESimpleExPopup; itemflags=EEikDlgItemTakesEnterKey | EEikDlgItemOfferAllHotKeys |EEikDlgItemSeparatorAfter | EEikDlgItemSeparatorBefore; control = POPUP_FIELD_TEXT { popupfield=POPUP_FIELD { width=10; }; textarray=r_color_list; }; } }; } RESOURCE ARRAY r_color_list { items= { LBUF { txt="Black"; }, LBUF { txt="Red"; }, LBUF { txt="Green"; }, LBUF { txt="Blue"; } }; }
Thank.
Pankaj Gupta.

Reply With Quote

