it crashes while receiving
if(State() == EConnectedToServer)
{
if ( iActiveSocket )
{
iActiveSocket->RecvFrom( iBuffer,adress, 0, iStatus, iLen );
...
Type: Posts; User: noussaENSI; Keyword(s):
it crashes while receiving
if(State() == EConnectedToServer)
{
if ( iActiveSocket )
{
iActiveSocket->RecvFrom( iBuffer,adress, 0, iStatus, iLen );
...
thx for your quik reply
this is my receiving code:
CConnection::~CConnection()
{
if ( State() == EConnectedToServer )
{
hi everybody, i have to trasfere about 50 messages. i got 16 and then my application crashes with the error code -2.
can any body explain the meaning of this error?
hi everybody,
i wanted to create icons using .bmp files this
in my .mk:
START BITMAP design.mbm
TARGETPATH \resource\apps
HEADER
SOURCEPATH ..\gfx
hi every body, i never worked with icons in s60 (3rd).
can any body help me to find a little example to begin with(an example that can show me where to put icon files and how to display them)...
hi everybody,
i want to have a softkey botton : the right for exit and the middle (ok) for recording:
i used this code:
RESOURCE CBA r_softkeys_record_exit
{
buttons =
{
i did this once, this is my OfferKeyEventL function (the first container)
TKeyResponse CMyViewContainer::OfferKeyEventL(const TKeyEvent& aKeyEvent,
TEventCode /*aType*/)
{
...
my program is for audio recording. i used the audio stream example!
it works fine on the emulator but not on the phone!
these are capabilities i included:
UserEnvironment ReadUserData...
this my connection code:
void Connect()
{
SetState( EConnectingToServer );
iActiveSocket=&socket;
adress.SetAddress(INET_ADDR(192,168,50,169));...
yes, i have network service capability
hi everybody,
my application uses socket connection to a remote server.
i tested it using emulator and every thing works fine but when i tried to use the phone(N 93& N80) my aplication crashes...
in my application, i used recording and reading data using MdaAudioInputStream.h and MdaAudioOutputStream.h ( as in the audio stream example) but i added another view where i tried to show a...
hi everybody!
i used recording audio in pcm format ( i saw the audio streaming example ).
my program works fine on the emulator but don't begin recording using the phone!
i used...
hi, in my container I have a text editor. the cursor is in the text zone. how can I get it out of this zone to permit user to navigate between tabs!
how can i reduce the space between lines in a richtexteditor?
this is the code i use to Set the Text's line-break policy:
...
yes, they are!
hi,
in my container i have 2 RichTextEditor: one for writing and the other for displaying history.
in my view (doActivate) i want to call my function (FillHistory) defined in the container...
this is how i instanciated iAppui:
iAppui=(CMyViewAppUi*)(CEikonEnv::Static()->AppUi());
i have implemented a class MyClass
i instanciated it in my AppUi class:
CMyClass *iMyClass;
iMyClass = MyClass::NewL();
and i instanciated it in my view calss:
CMyClass *iClass;
iClass =...
i tried to have a thread for receiving data:
TInt CSIPConnection::threadFunc(TAny * aPtr)
{
RSocket *socket1 = (RSocket *)aPtr;
TBuf8<KChatTextBufLength> Buffer;
TInetAddr adress1;...
my application crashes when doing this (renaming my function)
i'm using 3rd edition
the list box is used in the container, in my view class i use this:
AppUi()->AddToStackL( *this, iContainer );
but i can't get scrolling in my listbox!
I work with 3rd edition and i did this: BaseConstructL(0x08 | EAknEnableSkin);
but i still have the problem!
I have a list box and i want to navigate between items using keys
i used HandleKeyEventL function:
TKeyResponse CMyViewContainer::HandleKeyEventL(const TKeyEvent& aKeyEvent,
TEventCode...