Thanks for answer what about this
iFocusControl = const_cast<MyClass*>(this)->ComponentControl(index);
Type: Posts; User: moja_a; Keyword(s):
Thanks for answer what about this
iFocusControl = const_cast<MyClass*>(this)->ComponentControl(index);
I saw this code work on some posts , but it did not work for me
ERROE:
Illegal assignment to const
iFocusControl = ComponentControl(index); //Illegal assignment to const
Is it possible to Debug an application while Emulator already running
(i.e. epoch.exe is running already)
because i could not do it.
I am trying to find White Spaces in a UNICODE txt file.
void MyApp::FindWhiteSpaces(const TDesC& aString)
{
TBuf<100>buf;
TBuf8<1> chr;
TInt len = aString.Length();
for (TInt i=0; i < len...
Now When I build the app
\S60\devices\Nokia_N97_SDK_v1.0\EPOC32\BUILD\Symbian\Carbide\workspace\GPS\group\GPS\GCCE\urel\ClientEngine.o: In function...
header file
class CGpsLocationEngine : public CBase, public MPositionObserver
{
public:
static CGpsLocationEngine* NewL();
sorry ???
can you explain more
regarding the Example in
http://wiki.forum.nokia.com/index.php/CS001376_-_Retrieving_GPS_location
the example is missing the class CSearchLocation can someone Please Help
thanks man
when I compile my app i Had this msg.
***Invoking abld command
perl.exe -S ABLD.PL \Symbian\Carbide\Gc\ resource winscw udeb
make -r -f...
OK I know the problem.
after so many changes I found that change the form property to
| EEikDialogFlagWait;
solve the problem.
when I try to follow this example
http://wiki.forum.nokia.com/index.php/How_to_solve_CONE_44_panic_problem_for_a_Form
I end up with panic kern exec 3 when the BACK key is pressed at the Form
...
void CPPAppView::LogPrintL(const TDesC& aText)
{
ActivateGc();
CWindowGc& gc = SystemGc();
TRect drawRect(Rect());
const CFont* font;
font = iEikonEnv->NormalFont();...
this the full code
case ELogPrint:
{
CPPForm* form = CPPForm::NewL(NULL);
form->PrepareLC(R_PP_DIALOG);
TPosition ipos;
ipos.SetCoordinate(21.45555,39.6666);
TPrayer*...
i DID
gc.DrawText(aText,TPoint(10,10));
DrawNow();
IS THAT THE CORRECT WAY.
void CAppView::LogPrintL(const TDesC& aText)
{
CWindowGc& gc = SystemGc();
TRect drawRect(Rect());
const CFont* font;
font = iEikonEnv->NormalFont();
gc.UseFont(font);...
Still craches
I have tried all of that but no help the App still Crashes.
I try to Call the iAppview to Draw a Text using a menu command
but my App craches when it reaches the last line.
this is the AppUi.cpp
case ELogPrint:
{
TBuf<50> msg;...
is there a flag to change the display of the EAknCtLocationEditor format
from 00,00,00.00
to 00,00.0
Is there a detailed tutorial for creating a custom designer widget in QT.
Please I have looked all over the place .
beecontainerview.cpp:246 is that line in the code
CBeeContainer* CbeeContainerView::CreateContainerL()
{
return CBeeContainer::NewL( ClientRect(), NULL, this );
}
I did some changes...
Hi I am Using the new Carbide.C++ 2.3 + S60_3rd_FP2_SDK_v1.1/
When Building myApp for gcce release I got this error on Carbide.
***Invoking abld command
perl.exe -S ABLD.PL...
I am trying to make an App to convert Calenders
I found this code works
InputDate = dateField.getDate();
long DateLong = InputDate.getTime();
final...
Thanks For Info.
I Tried to add 10 days , To Get the The same Entered Date.
InputDate = dateField.getDate();
ResultCalnder.setTime(InputDate);
...