Hi OviAndrew!
And thanks for your very precise reply. It should figure in the publisher's guide!
Our first application is intended to be distributed freely. So according to your explanations it...
Type: Posts; User: MrAlt; Keyword(s):
Hi OviAndrew!
And thanks for your very precise reply. It should figure in the publisher's guide!
Our first application is intended to be distributed freely. So according to your explanations it...
Hi symbianyucca!
And thanks for your help.
The links are just inserted in the help menu. It's just a text displayed. The application do not open a web page directly. Does it change anything?
...
Hi Tam!
You're right but we'd prefer for the moment the user to subscribe properly on the web site. Moreover it would drive us to another development cycle (that can be long if we would like...
Hi all!
We are about to publish an application on OVI store. But in the publisher guide, it is mentioned that "Content that includes links to external sites will be rejected by QA".
The user...
Hi Paul!
I've just found what was going on. It's my openssl command that was wrong. The key and initialization vector must be written in hexadecimal format. This one works:
Where...
Hi Paul!
First, thanks a lot for trying to help me!
I tried with:
openssl enc -d -aes-128-cbc -in EnOutput.txt -out test.txt -K "1234567890abcdef" -iv "1234567890abcdef" -nosalt
But I've...
Hi!
I've tried to encrypt a test file with Paul's blog entry on encryption...
Thanks all for your help!
Someone has shared the library on the symbian developer website:
http://developer.symbian.org/forum/showthread.php?t=5010
It's up to Symbian now to update their site.
Thanks Lucian. I've posted a thread on symbian developer website. I'll copy/paste the link here if they make it downloadable.
Apparently the "SymbianCryptographyLibraries.exe" must be downloaded and installed to have access to that kind of library. But I'm not able to find it on the web especially on the symbian developer...
Hi sumit.rathi!
Maybe I'he missed something but I only find explanations concerning hash algorithms and random generator number. I don't find any API for public or private keys.
Thanks for your...
Hi all!
I'd like to use crypto (use of symetric and/or asymetric encryption) for protecting extra content of my application. But it seems that crypto API is hidden or something like that.
I've...
Hi everyone!
We are considering the possibility of developping an application with downloadable additional contents. These contents would be bought by the user.
We have seen in the publisher...
Sorry! I've just found the solution I must do this:
iEdit1->SetCursorPosL(0,EFalse);
iEdit1->SetFocus(EFalse);
Instead of this:
iEdit1->SetFocus(EFalse);
Hi All!
I've created an editor (CEikEdwin) to display a help text. The text is long so I have a scroll bar.
When the text is displayed, we can see the begining of the text. But when pressing...
Yes you're right! I'm about to change the file saving with your solution.
But I'm wondering if it would cost a lot of memory to do so. My first try with file saving method gave me a file of about...
You're right oracle3 (and so shafali gupta)!
I've made a confusion when I read this solution! Sorry!
For now, I've used the solution I mentioned (saving and loading bitmap). But this is a very...
Hi shafali gupta! And thanks for your help!
copyBitmap=new(ELeave)CFbsBitmap;
copyBitmap->Create(capturedBitmap->SizeInPixels(),capturedBitmap->DisplayMode());
CFbsBitmapDevice...
Hi RB_Sahu!
Thanks for your help but I need a real copy (a new instance) of the original bitmap. Because I will modify the original while the copy will be used elsewhere.
Hi All!
I'd like to make a copy of a CFbsBitmap instance. The idea is to display the copy and have the possibility to modify the original. But there's no constructor or copying method for that. Do...
OK! Thanks pawan_G! I'm going to take a look at this.
Thanks for your help pawan_G!
Your solution looks like the .ini files:
http://wiki.forum.nokia.com/index.php/Saving_settings_with_Dictionary_store...
Hi hotcheese!
In fact, it's about storing and parsing.
In need to store these settings and parse them later.
I'm just trying to find an easy and clean way of managing settings (storing and...
OK Thanks deepchand86! I'll try to use CSenXML* classes.
Hi deepchand86! And thanks for your help.
When I said:
Actually I was talking about CPArser, CSenXMLreader. But it seems that they are only readers.
I don't know expat lib, I'm going to...