- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am building an executable and I keep getting this message when trying to link
ifconsol.lib(for_m_console.obj) : error LNK2019: unresolved external symbol _for__issue_diagnostic referenced in function __QWINGethWnd
zozo.exe : fatal error LNK1120: 1 unresolved externals
inside the code I am trying to make this call for a message box...I compile using intel 9.1 (32 bit) and it pass nicely but when I try to link I get the message showb above
ifconsol.lib(for_m_console.obj) : error LNK2019: unresolved external symbol _for__issue_diagnostic referenced in function __QWINGethWnd
zozo.exe : fatal error LNK1120: 1 unresolved externals
inside the code I am trying to make this call for a message box...I compile using intel 9.1 (32 bit) and it pass nicely but when I try to link I get the message showb above
Imessage = messageboxqq('problem'C,'ERROR DETECTED'C, MB$OK)
anybody have an idea what need to be done ?
IF I can not call this message box to appear ...what else I could do to tell the user that there is a problem in the execution
Thanks
Zain
Link Copied
2 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - zdweik
I am building an executable and I keep getting this message when trying to link
ifconsol.lib(for_m_console.obj) : error LNK2019: unresolved external symbol _for__issue_diagnostic referenced in function __QWINGethWnd
zozo.exe : fatal error LNK1120: 1 unresolved externals
inside the code I am trying to make this call for a message box...I compile using intel 9.1 (32 bit) and it pass nicely but when I try to link I get the message showb above
ifconsol.lib(for_m_console.obj) : error LNK2019: unresolved external symbol _for__issue_diagnostic referenced in function __QWINGethWnd
zozo.exe : fatal error LNK1120: 1 unresolved externals
inside the code I am trying to make this call for a message box...I compile using intel 9.1 (32 bit) and it pass nicely but when I try to link I get the message showb above
Imessage = messageboxqq('problem'C,'ERROR DETECTED'C, MB$OK)
anybody have an idea what need to be done ?
IF I can not call this message box to appear ...what else I could do to tell the user that there is a problem in the execution
Is this a QuickWin application? It appears no, so you cannot call MessageBoxQQ.
In any case, it's better to call plain vanilla MessageBox API (use IFWIN; you may supply 0 for the hWnd argument). Or, if it's a console application, just write an error thext to the console.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
USE IFWIN
INTEGER RET
RET= MESSAGEBOX(0,"YOUR MESSAGE HERE"C,"MESSAGEBOX TITLE HERE"C,MB_OK)
INTEGER RET
RET= MESSAGEBOX(0,"YOUR MESSAGE HERE"C,"MESSAGEBOX TITLE HERE"C,MB_OK)
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page