Has anybody used the FNTTRAN v41? I am looking for a working example of the GDR font definition file - the .gd file. I am trying to create custom GDR fonts, converting from the existing TTFs.
...
Type: Posts; User: cvz; Keyword(s):
Has anybody used the FNTTRAN v41? I am looking for a working example of the GDR font definition file - the .gd file. I am trying to create custom GDR fonts, converting from the existing TTFs.
...
I've found the following error in the SDK Help:
INCORRECT:
------------------------
Location: fbs.h
Link against: gdi.lib
Class CFbsTypefaceStore
After inspecting the gdi.lib and a dozen...
I've found the following error in the SDK Help:
INCORRECT:
------------------------
Location: fbs.h
Link against: gdi.lib
Class CFbsTypefaceStore
After inspecting the gdi.lib and a dozen...
Hi guys,
I am writing Series 80 MTM mail client. I am stuck at the point where inside my service entry inbox I cannot remove (disable) the "Retrieve e-mail" button in the native CBA. At the first...
Here's how it works for me:
RStoreReadStream instream;
instream.OpenLC(aStore, aStreamId);
CArrayPtrFlat<CAgnEntry>* entryIdList = new (ELeave) CArrayPtrFlat<CAgnEntry>(1);...
In some previous posts I have found a comment by FN Developer Support that usage of CPbkContactEngine is not supported in Series 60 SDK v0.9.
My question - is the usage of CPbkContactEngine is...
In some previous posts I have found a comment by FN Developer Support that usage of CPbkContactEngine is not supported in Series 60 SDK v0.9.
My question - is the usage of CPbkContactEngine is...
Why is it when linking against PbkEng.lib during the construction of CPbkFieldsInfo with NewL() the linker reports a warning that no objects are used from library PbkEng.lib?
LINK : warning...
I'm attempting to construct CPbkFieldsInfo with NewL():
CPbkFieldsInfo* fieldsInfo = CPbkFieldsInfo::NewL(resourceFile, resourceFile);
The linker reports the following:
Supervisor.obj :...
s60 v1.0
CPbkFieldInfo.h refers to SDK resource file PbkFieldInfo.rh for the corresponding resource structure of PHONEBOOK_FIELD resource. This resource is required to define the contact item...
What is the way to make use of the following function, declared in CPbkContactItem?
/**
* Creates a new field based on aFieldInfo and adds it to this contact.
*
* @param aFieldInfo type of...
I have just downloaded s60 v1.2 SDK and PbkFieldInfo.rh is missing here too. It's frustrating. I wonder how is it possible to construct CPbkFieldInfo or CPbkFieldsInfo, required for CPbkContactItem...
I am creating CPbkContactItem to add it to the CPbkContactEngine phonebook. I first CreateEmptyContactL(), with only 8 default and empty fields. I then FindField(TPbkFieldId) each of the 8 created...
CPbkFieldInfo.h refers to SDK resource file PbkFieldInfo.rh for the corresponding resource structure of PHONEBOOK_FIELD resource. This resource is required to define the contact item fields for...
#include <eikedwin.h>
CEikEdwin* iEdit8; // declared in CAppView class
void CAppView::ConstructL()
{
iEdit8 = new (ELeave) CEikEdwin();
iEdit8->SetContainerWindowL(*this);...
#include <eikedwin.h>
CEikEdwin* iEdit8; // declared in CAppView class
void CAppView::ConstructL()
{
iEdit8 = new (ELeave) CEikEdwin();
iEdit8->SetContainerWindowL(*this);...
Hi,
I am trying to change text color for CEikLabel. I am using OverrideColorL():
iLabel1->OverrideColorL(EColorLabelText, KRgbRed);
It fails to work. Anybody knows why? It works for other...
Hi,
I've recently had the same problem. I found out that Symbian does not allow global and static variables. As a way out you would have to rearchitect your code to "hide" your globals. You may...
I am reading a single string of text from a text file into the TBuf8 descriptor. Then, I am converting the string I have read to the UNICODE character format with the function...
Hi,
Are there any guidelines or instructions on how to use the STDLIB file handling functions in Symbian environment? I am trying to read a text file using the STDLIB functions - fopen and fgets....
Hi,
I am trying to read single line of text from a text file and load it into an array and later load it into the CEikColumnListBox. My code works on the emulator, but later when I launch my...
What is the way to handle the OfferKeyEventL() for several CEikEdwin's in the view?
Example:
========
//
// Example for single CEikEdwin
//
TKeyResponse CKgAppView2::OfferKeyEventL(const...
I need my columns to be separated by a solid black line (CEikColumnListBox). Is it possible with CEikColumnListBox? Thank you.
I'm in a desparate need for CEikListBox usage example (Symbian Crystal, C++). Please help. Thank you.
Costya
PS. My code below doesn't work
==============================
void...
Every time I rebuild my application project (Crystal, 9210) in VC6 or in a command line I have to restart the epoc emulator. It takes from about 60 to 110 seconds for the emulator to load. Does...