One such from the NewLC forums:
Please tell me everything about C++, I want to learn it. Is it similar to Basic?
Also please to tell me how to program in Symbian. I want to know it everything. I am is already knowing Cobol.
I have to write program to solve world hunger and global conflict, But How do I begin? I start to write it but it doesn’t work, what is wrong with it? Please to write it for me and post the files here when you are finished.
Also what does it mean?:
“fileERROR: Dll ‘IMALAZYNUMPTYIDIOTWHODOESNTKNOWHOWTOSEARCHTHEINTERNET
ORHOWTOSEARCHNEWLCFORPASTPOSTINGSANDWANTSTORUNBEFORETHEYCANWALK
ANDEXPECTSEVERYBODYELSETOSOLVEMYPROBLEMSWITHNOEFFORTONMY
PART[01000001].APP’ has uninitialised data.make[1]:”
also
how to automatically launch program at boot up. My boss give me boot up arse, how to make program launch when this happen?
Explain to me what is leave? My wife leave me yesterday, is it similar concept in Symbian? I didn’t trap her, should I? What is this leave I read in SYmbian?
Awaiting your response.
Categories: Programming · Symbian OS
Recently, Nokia released Carbide.c++ and Carbide.j, the first versions of the new generation of IDEs for Symbian OS development based on the open Eclipse platform. This is good news indeed, as Eclipse seems to be the only viable challenger (albeit still some way to go to become a real challenger, at least in the C++ department anyway, see below) to the Visual Studio family of products. (more…)
Categories: Programming · Symbian OS
I’ve seen this a few times and asked too, what’s the difference between Send & Write, Recv & Read in the RSocket API. The answer is, very simple: Both Write and Read are just wrappers over Send and Recv, providing a default value (0), for the flags parameter (the flags can specity options like reading out of band data or peeking into the available socket buffer. The default value just reads, nothing special).
IMPORT_C void Write(const TDesC8 &aDesc, TRequestStatus &aStatus);
IMPORT_C void Send(const TDesC8 &aDesc, TUint flags, TRequestStatus &aStatus);
IMPORT_C void Read(TDes8 &aDesc, TRequestStatus &aStatus);
IMPORT_C void Recv(TDes8 &aDesc, TUint flags, TRequestStatus &aStatus);
The reason its like this is probably because of the BSD Socket APIs, which have analogous functions and is for maintaining compatibility I think. It should be noted that Microsoft skipped Read/Write in Winsock, for this reason I guess.
Categories: Programming · Symbian OS · Windows