#include <cshelp/aiwe.hlp.hrh>
Multiple markers at this line
- the file 'cshelp/aiwe.hlp.hrh' cannot be opened
- Line breakpoint: AIWConsumerBasicsAppView.cpp
[line: 12]
I just import the "aiwconsumerbasics" project. How to solve the problem?
#include <cshelp/aiwe.hlp.hrh>
Multiple markers at this line
- the file 'cshelp/aiwe.hlp.hrh' cannot be opened
- Line breakpoint: AIWConsumerBasicsAppView.cpp
[line: 12]
I just import the "aiwconsumerbasics" project. How to solve the problem?
For this you need compile your project through command line to make hlp.hrh file.
This file would get created automatically in your chelp folder of your AIWconsumerBasic project.
This file is basically to open the context sensitive help from your application.
It has entry in bld.inf file. Where this file is being exported from cshelp folder of your project.
In this cas you misght not have cshelp folder in your project.
If you dont require help you can comment the files requirment from bld.inf to make the project build properly.
PRJ_EXPORTS
..\cshelp\aiwe.hlp \epoc32\data\Z\Resource\help\aiwe.hlp
..\cshelp\aiwe.hlp \epoc32\WINSCW\C\resource\help\aiwe.hlp
..\cshelp\aiwe.hlp.hrh \epoc32\include\cshelp\aiwe.hlp.hrh
You can refer to the following example codes:
http://www.forum.nokia.com/Tools_Doc...n_C++/UI.xhtml
To draw the UI in the Container. Like if u want to make the label there is class CEIkLabel and for editor there is ceikeditor.
To handle multiple contrls in the same window there are two functions that you need to make use of is "CountComponetControl()" and component control.
Better to start new thread for new question.
Anyway, if you are using UI Designer than just drop-down labels (as many you want) and past it in UI. If you are not using UI designer than check this article to know how to implement compound controls.