Thanks Fuzzbender.
I was able to fix this by using the following code snipppet in main.cpp:
QApplication::setAttribute(Qt::AA_S60DontConstructApplicationPanes);
QApplication a(argc, argv);
...
Type: Posts; User: lpradeepa; Keyword(s):
Thanks Fuzzbender.
I was able to fix this by using the following code snipppet in main.cpp:
QApplication::setAttribute(Qt::AA_S60DontConstructApplicationPanes);
QApplication a(argc, argv);
...
We have bulk data received through, QNetworkReply. While trying to set the content to the QDomDocument, the application panics with CActiveScheduler::RunIfReady error -4.
void...
Hey,
My application is in FULL SCREEN mode with softkeys only visible. My application widget has a different background color. While the Menu Bar is having the default theme.
In the widget...
Hi all,
Am working with Qt 4.6.3. My application is set to FULL SCREEN MODE. All the widgets and the main window displays properly.
But, when a QMessageBox and QProgressDialog.is displayed, the...
The code goes like this: Can anyone help me out wer am i making a mistake..
void MyNativeClass::updateUI()
{
QListWidgetItem *item;
for(int i= 0; i< psoterList->count();i++) //...
Hi,
I wonder what could be the maximum number of items that can be inserted to a QListWidget. I am useing a custom item and add it to a QListWidget. unfortunately, the qpplication crashes with the...
Tats s gud link. Thanks, Wil make use of it.
Nope. I am careful about it.
Anyways, i will check it again. Thanks, Landy.
Hi divanov,
With all work around i was unsucessful in getting this work.
Can you pls advice me on how to find if the Wi-fi is ON or OFF.
Tried adding,
QNetworkConfigurationManager manager;
But while compilation i gor the following error: Undefined symbol: '__declspec(dllimport)...
Hey,
Try this...
iNetworkReply ->abort();
- Landy
Hi,
I am trying to find the list of available networks in the device. I tried the following code but not able to get the expected output.
QNetworkInterface wlan =...
As said by Oracle3, you really have to create a custom dialog that derives from CCoeControl or CAknDialog to bring out a customised look..
Hi Keerthi,
You hav reached the correct link for reference as you mentioned.
May be this link would add support to ur research - http://discussion.forum.nokia.com/forum/showthread.php?t=104932
http://discussion.forum.nokia.com/forum/showthread.php?t=158587
you can be bit detailed in your query.
:)
Hi,
I havent understood your query completly. But taking into account that you are looking to write a server side code i suggest you to refer this link....
Hi zumbo_oxinia,
I think you should refer this link before talking about storing your custom data.
http://wiki.forum.nokia.com/index.php/Data_caging
Also u can have access to application's...
Have you reffered this ?
http://wiki.forum.nokia.com/index.php/KIS000609_-_Bldmake_fails_with_%22EPOCROOT_environment_variable_must_be_capitalised%22_error
Also already discussed about this in...
In 3rd edition, the target type is a .exe file whereas in 2nd edition it was .app file. Inorder to load the .app file we need a dll entry point.
But we dont need it for 3rd edition.
Kindly look in...
This link may help u,
http://wiki.forum.nokia.com/index.php/Set_text_on_navigation_pane
Also,
You may be looking for something like this..?...
in SetItemTextArray Pass only 5 elements that needs to be displayed..
Inroder to show ScrollBar in it,
try,
CEikScrollBar *scrollBar = iListBox->ScrollBarFrame()->GetScrollBarHandle(...
As u see the fundtion, it is a leaving function. So u get the error KErrPathNotFound.
It means there is no existing path to scan.
Try this way,
First check this,
(scanning->NextL() != NULL)...
Hi david, can u please explain a bit on this how this function would help in finding if the session is connected or not?
A lay man solution:
I would suggest u to look at the example of multiviews example in SDK how to switch between views. Implement an active object to it.
I have implemented one such, First...