Click here to Skip to main content
15,918,742 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: print an MS-Access table Pin
S Douglas28-Nov-05 21:59
professionalS Douglas28-Nov-05 21:59 
GeneralRe: print an MS-Access table Pin
Ankush Mehta28-Nov-05 22:51
Ankush Mehta28-Nov-05 22:51 
GeneralRe: print an MS-Access table Pin
S Douglas28-Nov-05 23:45
professionalS Douglas28-Nov-05 23:45 
QuestionProblem in getting TooTip from ToolBar Pin
rajan.msmy27-Nov-05 18:49
rajan.msmy27-Nov-05 18:49 
QuestionGetProcAddress Problems :( Pin
Bobamagoo27-Nov-05 18:01
Bobamagoo27-Nov-05 18:01 
AnswerRe: GetProcAddress Problems :( Pin
sunit527-Nov-05 18:55
sunit527-Nov-05 18:55 
GeneralRe: GetProcAddress Problems :( Pin
Bobamagoo27-Nov-05 19:28
Bobamagoo27-Nov-05 19:28 
AnswerRe: GetProcAddress Problems :( Pin
Gavin Taylor27-Nov-05 19:05
professionalGavin Taylor27-Nov-05 19:05 
Ok for starters drop the _T macro from the GetProcAddress call, function names in libraries aren't stored in Unicode - you'll just get compiler errors when you trying moving to a Unicode build.

Next try searching under the Visual Studio folder for a file called 'depends.exe' and open the DLL using it, it will show show you a list of all the functions exported by the library. Check the function is being exported with the name you think it should be, the chances are it's not and it's got a load of giberish trailing after it. If it does you will need to declare any functions you wish to export using the extern "C" keyword, if your not sure what it does check MSDN for more details[^] but it basically tells the compiler to export the function without mangling the export name - sorry thats a really bad explanation of what it's doing but i'm just entering my 28th hour of a serious coding session and running low on coffee Smile | :)


Gavin Taylor
w: http://www.gavintaylor.co.uk

GeneralRe: GetProcAddress Problems :( Pin
Bobamagoo27-Nov-05 19:25
Bobamagoo27-Nov-05 19:25 
GeneralRe: GetProcAddress Problems :( Pin
Gavin Taylor27-Nov-05 20:26
professionalGavin Taylor27-Nov-05 20:26 
QuestionLog off Window Pin
trunghd27-Nov-05 16:55
trunghd27-Nov-05 16:55 
AnswerRe: Log off Window Pin
Cool Ju27-Nov-05 17:14
Cool Ju27-Nov-05 17:14 
GeneralRe: Log off Window Pin
trunghd28-Nov-05 17:01
trunghd28-Nov-05 17:01 
QuestionISO DVD / CD Burning Libraries Pin
raddog27-Nov-05 16:36
raddog27-Nov-05 16:36 
AnswerRe: ISO DVD / CD Burning Libraries Pin
Saksida Bojan27-Nov-05 19:10
Saksida Bojan27-Nov-05 19:10 
QuestionHow to avoid word wrap in MFC Pin
lkeller27-Nov-05 15:32
lkeller27-Nov-05 15:32 
AnswerRe: How to avoid word wrap in MFC Pin
raddog27-Nov-05 16:51
raddog27-Nov-05 16:51 
Questioncompiling error when use type_info::operator== Pin
followait27-Nov-05 14:57
followait27-Nov-05 14:57 
AnswerRe: compiling error when use type_info::operator== Pin
PJ Arends27-Nov-05 15:27
professionalPJ Arends27-Nov-05 15:27 
GeneralRe: compiling error when use type_info::operator== Pin
followait28-Nov-05 3:28
followait28-Nov-05 3:28 
QuestionIntelligent bitmap depth conversion 1,4,8,16,24 bits Pin
Sumit Kapoor27-Nov-05 14:52
Sumit Kapoor27-Nov-05 14:52 
AnswerRe: Intelligent bitmap depth conversion 1,4,8,16,24 bits Pin
John R. Shaw27-Nov-05 18:13
John R. Shaw27-Nov-05 18:13 
AnswerRe: Intelligent bitmap depth conversion 1,4,8,16,24 bits Pin
normanS27-Nov-05 18:47
normanS27-Nov-05 18:47 
GeneralRe: Intelligent bitmap depth conversion 1,4,8,16,24 bits Pin
Sumit Kapoor27-Nov-05 21:31
Sumit Kapoor27-Nov-05 21:31 
QuestionModal vs Child CDialog style. BIG PROBLEM Pin
xSoptik27-Nov-05 12:13
xSoptik27-Nov-05 12:13 

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.