After more than 300 posts and more than half year of contributing, you might consider start using CODE tags.
After more than 300 posts and more than half year of contributing, you might consider start using CODE tags.
hi,
what are CODE tags??i have no idea about CODE tags.
rohanwaugh
hi all,
Nobody has solution to my problem???
Rohanwaugh
sir
i have one doubt is it possible to import code warrier to carbide c++
if you mean code warrior project to carbide project, why not import the inf file ?
Amit Kankani
Nokia Developer Champion
sir
please give me KStandbyScreenAppIdDevice of N80
thank you
sir
i have written a program for sending a message when long key pressed. which works on my N95 StandBy Screen App id
are "const TInt KStandbyScreenAppIdDevice = 0x12;" but is not working my N80 please help me
sir
i have written program. the SDK are S60 3rd edition . i want run this program to s60 2nd edition please help me
sir
Any tool is Available for converting S60 3rd edition to 2nd edition
my program is running in 3rd edition phones with out any problem.my necessity now is to run this program in 2nd edition phones.please help me
You can find porting guide on FN for the 2nd->3rd direction (Docs above, Symbian C++, Compatibility), basically you have to do that in the reverse direction.
Note that you have triple-hijacked this thread (#94, #96 and #99 starts discussion about topics independent from the original topic and also from each other), which is considered extreme ignorance and rudeness.
what are the changes to be made to work this on 2nd edition phones
Code:#include <sendas.h> #include <sendasmessage.h> #include <smut.h> void SendSmsL(const TDesC& aAddr, const TDesC& aMsg) { CSendAs sendAs; User::LeaveIfError(sendAs.Connect()); CleanupClosePushL(sendAs); CSendAsMessage sendAsMessage; sendAsMessage.CreateL(sendAs, KUidMsgTypeSMS); CleanupClosePushL(sendAsMessage); // prepare the message sendAsMessage.AddRecipientL(aAddr, CSendAsMessage::ESendAsRecipientTo); sendAsMessage.SetBodyTextL(aMsg); // send the message sendAsMessage.SendMessageAndCloseL();