I here is the definition I found in gulutil.h for Symbian 6.1 / Series 60:
class TMargins8
{
public :
TInt8 iLeft;
TInt8 iRight;
TInt8 iTop;
TInt8 iBottom;
public :
Type: Posts; User: nlecomte; Keyword(s):
I here is the definition I found in gulutil.h for Symbian 6.1 / Series 60:
class TMargins8
{
public :
TInt8 iLeft;
TInt8 iRight;
TInt8 iTop;
TInt8 iBottom;
public :
Hi,
From your question I understand that you have Symbian v6.0 on your 7650. I am very surprised as I thought that Symbian v6.1 - Series 60 was installed on Nokia 7650.
Are you sure to use v6.0?...
Hi,
Has anyone been able to change buttons (CBA) dynamically.
I am trying to do this by using the method:
CEikCommandButton* CEikButtonGroupContainer::ButtonById(TInt aCommandId)
It seems...
Hi,
I have redefined my CBA buttons, but it seems has if this makes my application crash at starting time while it runs nicely on the emulator (I get a system error).
Do you know what could...
Hi,
I think i am experiencing the same issue, let me bring a few more information:
I have spent some time going through all the discussion, I am quite confident that my code is correct.
I...
Hi,
I have exactly the same issue.
It seems that the client doesn't receive or consider the ACK from the server.
Can you please tell me how you've solved this issue
THANKS a LOT,
Hi,
I am experiencing an error for the same command, AddNewContactL() when I try to add a contact that I have created myself (Note: I can access its fields succesfully).
I am wondering if there...
Sorry, I got my answer:
1. add the following path to your 'path'-environment var: "c:\program files\microsoft visual studio\vc98\bin"
2. if step 1. didnt work, add the following path to your...
Hi,
thanks for your help, I have exactly the same problem on a new machine.
But I can't execute all your commands: I am told -by DOS prompt- that nmake is not a valid command (I have installed...
Hello,
I found the reference of CEikNumberEditor in the SDL v7.0 (note that at it is form EIkon it should exists but this is not certain) and more precisely at the chapter
Developer Library...
Hi,
It is possible to set all your values (1) in your static ressource file (.rss), you just have to find the correct key-words.
You can also do it dynamically (much more useful), by creating...
Hi,
My guess is that CAknWaitDialog (derived from CAknNoteDialog) is NOT an active object.
So when this thread is executed, as it is in the same process as your socket, and is always running,...
Hello,
I am trying to do approximately the same thing, could you post your code so I can have a look at it.
I hope to solve this issue, I am sure I will run into something similar.
Nicolas
Hi,
I want to use a progress. I tried several solutions but none worked. Though, I think I have all the required info to do what I want, I just can't put it into the right order. Can you please...
Hi,
I am not to sure if this behavior is normal, but I had something similar.
It was just as if the code never did anything until you finally isue a request to a server. I guess the way it...
Hi,
I think you could experience some poblems if the network connection and the display aren't Active Objects, because only one will be able to execute, and if it's the display, then you won't...
Hi,
In your code the waiting note & the socket (a GUI & a network part) should both be AO. Is it the case?
Nicolas
Sorry, I forgot the most important part,
SEARCH
the developper knownledge base, you will find many questions about this topic, with a more detailed code (like one I posted like 2 weeks ago).
Hi,
What you should do is look into your developper library (SDK Help), and search for the objects that you declare in this code. Then you will see the type required by each function and you will...
Hello,
I have created a WAP application that gets a file from a server through my own gateway. The code works fine on the emulator.
Now, when I run it on the phone (7650), I have from my...
Hello,
You need to configure your gateway in such a way that it knows the type (.sis?) of your file. I am sure you do not have an error when you ask for a .txt file?
Please tell me if you can...
Hello,
If you create an object using NewLC() command, then you have to delete it using the CleanupStack. If you use NewL(), it is done automatically for you.
Be carefull when you use the...
Hello,
There are no HTTP stacks included in Symbian before the version 7 of the OS -no luck for us. So no clients. You have to create you own stack, which Digia did.
They sell it, I don't know...
Hello,
In order to create you WAP connection you have handles to the WSP protocol through the classes:
RWAPServ; RWSPCOConn; RWSPCOTrans (CO: connection oriented), and the same thing with CL,...
Hello,
you probably always have to pop up this list bc the user has to know you are going to create a connection, and he is going to pay for it.
I am interested on your solution if you have...