Hi,
how to data call?
More example? for more sdk.
Tanks a lot
SIlvia
Hi,
how to data call?
More example? for more sdk.
Tanks a lot
SIlvia
here is the link that i have answered.
http://forum.newlc.com/index.php/topic,17245.0.html
Use Qt-Quick to make your application UI more attractive.
http://store.ovi.com/content/271896 | http://store.ovi.com/content/276199 | http://store.ovi.com/content/276202 | http://store.ovi.com/content/280827
Hi write this code:
/* Define the client class */
#include <Etel3rdParty.h>
#include "Client.h"
#include <eikenv.h>
#include <etel.h>
CClientApp::CClientApp(TInt aPriority ) : CActive( aPriority )
{
ConstructL();
}
void CClientApp::ConstructL()
{
CEikonEnv::Static()->AlertWin(_L("inizio costruttore"));
iTelephony = CTelephony::NewL();
CActiveScheduler::Add(this);
CEikonEnv::Static()->AlertWin(_L("fine costruttore"));
}
CClientApp::~CClientApp()
{
/* Cancel(); // if any request outstanding, calls DoCancel() to cleanup
delete iTelephony;*/
}
void CClientApp::MakeCall()
{
_LIT(KNumberToDial, "+393282512955");
/*iTelephony->EstablishDataCall(iStatus,iDataPort,KNumberToDial);
iState = EEstablishing;
SetActive();*/
}
void CClientApp::RunL()
{
_LIT8(KDataToWrite,"1234567890");
/* if ( (iStatus == KErrNone) && (iState = EEstablishing) )
{
iDataPort.Write(iStatus,KDataToWrite);
iState = EWriting;
SetActive();
}
else
iTelephony->TerminateDataCall();*/
}
void CClientApp:oCancel()
{
/*iDataPort.Cancel();
iTelephony->CancelEstablishDataCall();*/
}
In my phone thi Applycation crach (nokia 6680).
In emulator done thi error : "system error (-2017)
What is the problem??
Thank
Silvia