Click here to Skip to main content
15,923,197 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionResolution problem with Gdiplus.. Pin
HuddartG15-Apr-07 22:12
HuddartG15-Apr-07 22:12 
AnswerRe: Resolution problem with Gdiplus.. Pin
Mark Salsbery16-Apr-07 6:51
Mark Salsbery16-Apr-07 6:51 
GeneralRe: Resolution problem with Gdiplus.. Pin
HuddartG16-Apr-07 21:23
HuddartG16-Apr-07 21:23 
GeneralRe: Resolution problem with Gdiplus.. Pin
Mark Salsbery17-Apr-07 6:22
Mark Salsbery17-Apr-07 6:22 
GeneralRe: Resolution problem with Gdiplus.. Pin
HuddartG18-Apr-07 0:52
HuddartG18-Apr-07 0:52 
Question.msi file Pin
prathuraj15-Apr-07 21:53
prathuraj15-Apr-07 21:53 
QuestionRe: .msi file Pin
sthotakura16-Apr-07 7:22
sthotakura16-Apr-07 7:22 
Questionhow to access string table of .lib file from an EXE Pin
GANsJob15-Apr-07 21:33
GANsJob15-Apr-07 21:33 
Hello all,

I linked a lib file say sss.lib with myapp.exe.
when I tried to access a string from a string table of sss.lib, I got '1814' error msg.

The code is
{
#if defined _ATL
HINSTANCE hInst = _Module.GetModuleInstance();
#else
HINSTANCE hInst = GetModuleHandle(NULL);
#endif
TCHAR buff[1025];
GetModuleFileName(hInst,buff,sizeof(buff)/sizeof(TCHAR));
unsigned nID = 101;
DWORD dw;

LoadString(hInst,nID,buff,sizeof(buff)/sizeof(TCHAR));
if(!LoadString(hInst,nID,buff,sizeof(buff)/sizeof(TCHAR)))
dw = GetLastError();


AfxMessageBox(buff);
}

I don't know how to pull off this.Can you halp me?

Thanks,
GAN
Questionhow can i debug my dll in officexp Pin
ytfrdfiw15-Apr-07 21:31
ytfrdfiw15-Apr-07 21:31 
AnswerRe: how can i debug my dll in officexp Pin
Gospodin Baron15-Apr-07 22:13
Gospodin Baron15-Apr-07 22:13 
GeneralRe: how can i debug my dll in officexp Pin
ytfrdfiw15-Apr-07 22:26
ytfrdfiw15-Apr-07 22:26 
GeneralRe: how can i debug my dll in officexp Pin
toxcct15-Apr-07 22:29
toxcct15-Apr-07 22:29 
GeneralRe: how can i debug my dll in officexp Pin
ytfrdfiw15-Apr-07 23:26
ytfrdfiw15-Apr-07 23:26 
GeneralRe: how can i debug my dll in officexp Pin
Gospodin Baron15-Apr-07 23:47
Gospodin Baron15-Apr-07 23:47 
GeneralRe: how can i debug my dll in officexp Pin
ytfrdfiw26-Mar-10 3:16
ytfrdfiw26-Mar-10 3:16 
Questionscope in functions Pin
minkowski15-Apr-07 21:21
minkowski15-Apr-07 21:21 
AnswerRe: scope in functions Pin
Programm3r15-Apr-07 21:26
Programm3r15-Apr-07 21:26 
AnswerRe: scope in functions Pin
CPallini15-Apr-07 21:34
mveCPallini15-Apr-07 21:34 
GeneralRe: scope in functions Pin
minkowski15-Apr-07 21:39
minkowski15-Apr-07 21:39 
GeneralRe: scope in functions Pin
cp987615-Apr-07 21:50
cp987615-Apr-07 21:50 
GeneralRe: scope in functions Pin
minkowski15-Apr-07 21:54
minkowski15-Apr-07 21:54 
GeneralRe: scope in functions Pin
toxcct15-Apr-07 22:12
toxcct15-Apr-07 22:12 
GeneralRe: scope in functions Pin
CPallini15-Apr-07 22:05
mveCPallini15-Apr-07 22:05 
GeneralRe: scope in functions Pin
minkowski15-Apr-07 22:12
minkowski15-Apr-07 22:12 
GeneralRe: scope in functions Pin
toxcct15-Apr-07 22:15
toxcct15-Apr-07 22:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.