Unfortunately I had to rewrite the istream and ostream classes.
I used a FILE* object as a protected variable to be able to have all functionnalities I needed from iostream.
I don't know if this...
Type: Posts; User: stopin; Keyword(s):
Unfortunately I had to rewrite the istream and ostream classes.
I used a FILE* object as a protected variable to be able to have all functionnalities I needed from iostream.
I don't know if this...
Hi Folks,
I would like to send several files to my application folder that I dfined on the phone. This is no exe files but could be images, text or other files. They are not part of my application...
It seems like my own extension has already been linked to the "Download" application since even if I do not intall my recognizer I still have the "Download" application that is launched when clicking...
Hi Folks,
I am looking for the ID-sequence code for the Nokia 3650.
I found it for the 7650 and do not know if this is the same or not...
//===== for 7650 ============
The ID-sequence code...
I still did not get any answer from Nokia ???
Is it a bug from the 3650?
So nobody from Nokia can tell me if a MIME recognizer developped for a 7650 should run on a 3650 without any modifications?
Seb
Hi Folks,
I built a Mime type recognizer for my image format and this works perfectly with the Nokia7650.
I just started test with the Nokia 3650 and have the following error when trying to...
Hi Folks,
I did create my own image format and I read it with my application viewer. I did create a type recognizer so that when I select my format in the Inbox folder, the viewer app is launched...
Hi folks,
I am trying to test application auto-launching by selecting a specific file format. That works fine on the device (Nokia 7650) when I send my own image file format by Bluetooth to the...
I think the problem comes from the fact that my additionnal format is an image format and if I try to put my own files in the Nokia/Image folder, the phone goes and try to find an image format in its...
Sorry about that...
I found my mistake. I was not poping up elements of the cleanup stack before leaving a function...
I can launch my application now by clicking on my file. However, once I...
Hi Folks,
I added my own recognizer (MyRecog.MDL) in system/recogs to launch my appllication when selecting my MIME type file in Inbox (received via Bluetooth).
When I select Myfile.MyMime I got...
Hi Folks,
I did follow the "Application developpers on Document Handler" to build my own recognizer that should associate my application to my own file format.
The MyRecognizer.MDL file loads...
Hi Folks,
I am looking for a way to exchange bitmaps (currently CFbsBitmap but that could be CWsBitmap) between the GUI thread and a worker thread.
Since that could be a large number of images, I...
Hi Folks,
Does that make sense to create a CFbsBitmap from a thread?
I am trying to store images in a tab using a thread different from the GUI thread.
When I do:
...
From what I understood if I want to use RSemaphore, I need to have my GUI thread waiting for a respond (thread termination) from the worker thread.
This is fine, except that I want my GUI thread to...
Hi Folks,
I am looking for a way to post events or messages from a worker thread to the GUI thread (the worker thread is launched by the GUI thread).
Do I absolutly have to implement a...
Hi Folks,
I've been looking around this forum trying to find some information on how to send a message (or an event) to the GUI thread from a "worker" thread, but I didn't find anything.
So...
Hi Folks,
I found on this news group infomation saying that "Currently there is no API for 3rd party applications to access and manipulate SIM information."
That was last april, so I was...
Hi Folks,
I found how to change the wallpaper manually for the Nokia7650 (http://nkn.forum.nokia.com/devrel/threadshow.cfm?mb=5061606466647644&msg=2658527158702773&page=1)
But still have two...
Hi Folks,
Can I simulate a softkey press from inside the program?
I would like to close automatically (instead of having to press OK key on the device) an information note when getting to a...
Hi Folks,
I would like to use a note (or dialog box) and I tried to use CAknInformationNote for that. The problem is that I do not know what kind of resource I need to add and how.
I put the...
Hi folks,
I am trying to display a 8-bit grayscale image and it looks like I am lossing colors (or gray shades).
I simply used this:
iBitmap->Create(size, EGray256);
to create the bitmap and...
Hi folks,
I found a bunch of questions about using gdbstub.exe to debug app on the device (Nokia7650), but no answers...
So is it possible to use gdbstub on Nokia7650, and if yes where can I find...
Hi folks,
I need to use a large matrix of 64 bits integer and I have a stack limitation size problem (unresolved external symbol __chkstk).
I did create my matrix the folowing way:
...