I had a working code in 2nd edition emulatar , while I tried to convert that to 3rd edition , after drawing an image to the buffer , I am trying to swap buffer elements and there I am getting this...
Type: Posts; User: gigglie; Keyword(s):
I had a working code in 2nd edition emulatar , while I tried to convert that to 3rd edition , after drawing an image to the buffer , I am trying to swap buffer elements and there I am getting this...
HELP .... I am getting a heap allocation panic with
__UHEAP_MARK;
TRAPD(
error,
BaseConstructL(CAknAppUi::EAknEnableSkin);
)
__UHEAP_MARKEND;
User::Heap().Check();
It is giving...
I tried creating my own texture using the following codes . Problem is
the emulator is exiting abruptly without any panic code . I am new in OpenGles . Please Help .
static const GLbyte...
Solved thanks Yucca...
Here are my codes
TBool CDataHandler::FileExists(TPtrC aFileName)
{
TBool iretval=EFalse;
TFindFile iAppFindFile=TFindFile(CEikonEnv::Static()->FsSession());...
Or we need to install one owrselves ?
Say I create one control inherited from CCoeControl with some editors on it . How to make it FEP enabled ? Do I make My container an FEP enabled one ?Which classes to add and inherit from and how? Do...
In a form we have a left marjin which displays the prompt , Can in any case we change the size of that left margin . I want to reduce it a bit and increse the size of my editable area .
Hi Mahbub
Yes I have checked at ordinal 4 I am executing the NewL for my AccessHttp class . I have put a debug pointer into that class and into subclasses . Cursor passes through them smoothly ,...
Could not get the error code
but if I insert a line
if(iCreateUrl!=NULL) before any function call , this line starts exiting instead . :( like there is no object .
I am creating an object in a NewL function of a dll class , called from an .exe. In another lookup function for the same dll I am trying to call a function for the created object in the dll class...
I am creating a log ,writing something, and trying to pass it through reference but my code exits at that line . :(.
Here is my code for reference
#include <gdi.h>
#include <flogger.h>
struct...
I am trying to create one into my console .exe file but I am getting this as build output . :( . I have already include bafl.lib into my mmp and badesca.h into respective file[s].
...........
And if changed into this . I am getting gibberish output .
EXPORT_C TDes CHTTPPortfolio::ExampleFuncAddCharL(TDes aBuf)
{
aBuf.Copy(_L("Thank you"));
return aBuf;//*iString;
}
Sorry my mistake . It should be this .
TRAPD(error,
typedef TDesC16& (*TMyFunt)();
TLibraryFunction theFunc1 = library.Lookup(3);
TMyFunt fu=(TMyFunt) theFunc1;
TPtrC...
Previously I had this one
EXPORT_C void CHTTPPortfolio::ExampleFuncAddCharL(const TChar& aChar)
{
__ASSERT_ALWAYS(iString != NULL, Panic(EHTTPPortfolioNullPointer));
if...
Yes , thanx , restarting my IDE solved it .:)
I changed the name right now I am getting this as build log
***Building project "HttpConn" for configuration "Emulator Debug (WINSCW) [S60_2nd_FP3]"
...
Working Directory:...
Yes I did in the build inf
I added
..\Http\group\Http.mmp
HttpConn.mmp
Import ?
I am creating my dll project into a subfolder of my exe . Do I need to import both dll and exe ?
Thanx ,I just added the respective header for dll into my .exe caller class file and no compiler error right now.
But still here when I am debugging ,pointer is not going into my NewL or NewLC...
Hmmm but the problem I am getting is My compiler is giving me "unidentified identifier CHTTP" on the line
CHTTP* mydll=(CHTTP*) NewL();
is it related to any load problem ?
Hmm , well I was only referring to an ECOM plugin only for my case . Now to elaborate my problem ....
I have one class derived from the Cbase as herein
class CHTTP : public CBase
{...
I have created a sample dll in sdk 2 fp3 and have seen the debugging the dll tutorials in sdk 3 . My question is can how can we place/use the dll into my code so as to refer it with LoadLibrary() and...
If so how ?
Hi there
I'm into my very first dll and I need to export a function and its possible set of argument values ,say ,I have my dll in this form .
class MyDll
{
public:
enum...