nokia

J2ME: platformRequest Issue

无人久伴 提交于 2019-12-08 04:12:29
I want to call a number in below format using platformRequest: platformRequest("tel:*123*33584744#"); But it gives me error Invalid number on the phone. But if i call this number manually by typing on phone then it works fine. Even below works fine: platformRequest("tel:33584744"); So i suspect problem lies when i put * or # chars in the number. As i said when i type these chars in the number manually and press the call button on the mobile it works fine but not with platformrequest. What is wrong I am doing? Any alternative to platformrequest method? How to call a number in below format: *123

using AT commands. of service in response encoding and read Chinese or Arabic for Nokia phones

江枫思渺然 提交于 2019-12-06 16:25:54
问题 I am developing an application for GSM Modems using AT commands. I have a problem reading Unicode messages or ussd example: that dcs=17 not 7 or 15 or 72 Two years ago, and I'm looking for a solution to no availI was able to find a partial solution through the use of Chinese phone where the phone can read Chinese codingBut all Nokia phones do not support the codec Arabic or ChineseAnd service responses appear incomprehensible symbols Example: +CUSD: 0,"ar??c ?J <10???@d@??? @0@??@D? ?Z?xb @ $

how do i get a checkbox item from a QTableView and QStandardItemModel alone?

北慕城南 提交于 2019-12-06 15:40:15
Seems using model.setData(index, Qt::Checked,Qt::CheckStateRole) is not enough to get the checkbox working right. Any suggestions? I believe you would need to subclass QStandardItemModel; override flags method and return Qt::ItemIsUserCheckable along with other flags for the column with check boxes. Below is an example: class TableModel : public QStandardItemModel { public: TableModel(); virtual Qt::ItemFlags flags ( const QModelIndex & index ) const; }; TableModel::TableModel() { //??? } Qt::ItemFlags TableModel::flags ( const QModelIndex & index ) const { Qt::ItemFlags result =

how to add menu dynamically in Qt

对着背影说爱祢 提交于 2019-12-06 07:16:39
问题 I want to add, submenu to a menu item dynamically. How can I achive this? I tried like this, I have created an Action and submenu. Then I have added the submenu to action. But, I have connected the “triggered” signal of action. its getting crash if I click on the action.. I have also handled the “aboutToShow” signal of menu, same its also getting crash when I click on action.. Here is the sampe code. Submenu = new QMenu(this); connect(Submenu, SIGNAL( aboutToShow()), this, SLOT(move ()));

Need C# sample for sending sms with Nokia PC Suite?

瘦欲@ 提交于 2019-12-06 06:19:16
Nokia N70; PC Suite 7.1.40.1 I'm able to send sms with pc suite and connected phone via bluetooth. But i want to be able to automate this and write some wraper (my own app) which will trigger send sms command in PC Suite... maybe somebody has some simple sample for start? thanks It looks like you need the Nokia PC Connectivity API (note: Forum Nokia registration required for download). According to the blurb Developers can use the Content Access API to build PC applications that create, modify, and delete SMS and MMS messages. The API can be used to send and receive SMS and MMS messages. 来源:

How to Increase heap size in Java ME?

人走茶凉 提交于 2019-12-06 04:36:34
Is there any way to increase the heap size for Java ME on a device? I'm developing an application for a Nokia N95, but am bumping into memory issues when I try to do image processing of larger images. The phone has plenty of heap space available, but seems to restrict the amount allowed to be used by Java ME to 1MB. Short answer: No. Longer answer: Heap-size is hardcoded in device VM. If you are running out of memory you need to split you task into more smaller sub tasks to allow GC to kick in. With limited memory only limited operations are possible. You figure... On some J2ME handsets

Is there any SDK for the new Nokia 3310? [closed]

匆匆过客 提交于 2019-12-05 19:08:39
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . As confirmed by Nokia, the old phone is returning with new hardware. Will we be able to easily develop anything for the beloved phone? 回答1: I can’t speak for the 2G version, but the new Nokia 3310 3G does appear to support some J2ME apps. I was able to install the last release of the Google Maps app, a weather app

using AT commands. of service in response encoding and read Chinese or Arabic for Nokia phones

半世苍凉 提交于 2019-12-04 22:07:56
I am developing an application for GSM Modems using AT commands. I have a problem reading Unicode messages or ussd example: that dcs=17 not 7 or 15 or 72 Two years ago, and I'm looking for a solution to no availI was able to find a partial solution through the use of Chinese phone where the phone can read Chinese codingBut all Nokia phones do not support the codec Arabic or ChineseAnd service responses appear incomprehensible symbols Example: +CUSD: 0,"ar??c ?J <10???@d@??? @0@??@D? ?Z?xb @ $@?@?@Z@@?? @-@H?@???@b@@$? @3@h?P???@??(??",17 But when you use the phone shows the Chinese response

Sms via a nokia phone over a serial port

ぃ、小莉子 提交于 2019-12-04 14:33:35
问题 I'm trying to send a sms via a Nokia phone over serial which is easy enough via putty. The commands from the nokia documentation works fine. However, trying to send the same commands from a c# application fails miserably. I've run Sysinternals PortMon and can see the commands come through OK, the only difference I can see is in the way it connects but I am having trouble finding the commands that would iron out those differences. The code I'm running looks a little bit like this using

how to add menu dynamically in Qt

守給你的承諾、 提交于 2019-12-04 13:42:26
I want to add, submenu to a menu item dynamically. How can I achive this? I tried like this, I have created an Action and submenu. Then I have added the submenu to action. But, I have connected the “triggered” signal of action. its getting crash if I click on the action.. I have also handled the “aboutToShow” signal of menu, same its also getting crash when I click on action.. Here is the sampe code. Submenu = new QMenu(this); connect(Submenu, SIGNAL( aboutToShow()), this, SLOT(move ())); QAction *test = new QAction(tr("Selection"), this); test ->setMenu(Submenu); menubar()->addAction(test); I