Tag: Symbian

  • S60 View Architecture with UI Design For Symbian OS

    Overview This example shows how to develop S60 UI applications similar to the native “Settings” application available on every S60 device. This application was chosen because it has different views and uses tabs and a main view to switch between them. The example is based on the S60 UI view architecture. The article discusses the…

  • Read a .txt file in Symbian

    If you want to read a file and display that on alert screen the following code snippet will do that for you. TBuf8<128> rcvr; TBuf<128> tDsply; RFs fSessionRd; User::LeaveIfError(fSessionRd.Connect()); RFile fileRd; TInt retRd=fileRd.Open(fSessionRd, _L(“C:\\testFile.txt”), EFileRead); if(!retRd){ fileRd.Read(rcvr); tDsply.Copy(rcvr); iEikonEnv->AlertWin(tDsply); }