what errors?
Type: Posts; User: anwar21387; Keyword(s):
what errors?
try to create sis file using command prompt, u might see error when creating sis file there.
what happen if u put directly iInputBox2->SetTextL(buf); ?
im sure either i can help much, but normally each time i create a file, i put this 2 header f32file.h (for creation) and s32file.h (for storing). Just in case it might be needed in some other places....
did u able to do it?
oh k. thanx for the info
oh k, how bout ussd? is there any possibilities to send sms through USSD service?
hi, im currently running on a project to prevent phone stolen based on IMSI and IMEI. So this imsi and imei will be sent to the server if 2nd party simcard insert into the mobile phone. So this...
u can use simple coding like
CAknInformationNote Info = new (ELeave) CAknInformationNote;
info->ExecuteLD(//data to output)
Thanx, it works, i used both coding, User::Exit(0); for the file.close, and the CEikonEnv::Static()->EikAppUi()->HandleCommandL(EEikCmdExit); replacing the cleanup.
it works 100%.. thanx so so...
void CTelephonyReader::RunL()
{
RFile file;
TInt err = file.Open(CCoeEnv::Static()->FsSession(),_L("C:\\data\\imsi.txt"),EFileRead);
file.Close();
CleanupStack::PopAndDestroy();
if(err ==...
i try dat, it shows no error.. but it din read my code.. those higlighted is not happenning
void CTelephonyReader::RunL()
{
RFile file;
TInt err =...
thanx alot savaj,
Appreciate much.
sory, im nt sure which 1 is it. however, i try to put CEikAppUi::HandleCommandL(EEikCmdExit),
it come up with this error
'CEikAppUi::HandleCommandL(int)' (non-static)...
hi, im trying to make the application close after the "IF" statements
void CTelephonyReader::RunL()
{
RFile file;
TInt err =...
hi, im trying to make the application close after the "IF" statements
void CTelephonyReader::RunL()
{
RFile file;
TInt err =...
Hi, im trying to make my application to run background without the user notice it. Is there any link? i couldnt find 1.
thank u.
hi hi, i found it already. The error "Already in use" means there are certain file "open" nt yet close. I just have to close it and now it works perfectly.. thanx for everythng
yeah error, i wrote KErrNone before this, thats im trying.. thanx for giving me the link for the error, but the page shows CAS Authentication failed
sry not "else" function, but "if" function
Here i show my full coding.
void CTelephonyReader::RunL()
{
RFile file;
TInt err =...
RFile ReadFil;
RFs fs;
User::LeaveIfError(fs.Connect());
User::LeaveIfError(ReadFil.Open(fs,_L("C:\\data\\imsi.txt"),EFileRead));
TBuf8<25> fileData;
ReadFil.Read(fileData);...
u mean my function actually read nuthing in my txt file even though there's content in the file because of the pass length is 0? what should it be?
means i add iObserver->GetImsi(iImsiV1.iSubscriberId); at "else" first for the system to notify?
hi,
HBufC8* FilBuff(NULL);
RFile ReadFil;
TInt FilSiz(0);
ReadFil.Open(CCoeEnv::Static()->FsSession(),_L("C:\\data\\imsi.txt"),EFileRead);
//CleanupClosePushL(ReadFil);...
able to settle it. thanx for the ideas.