recently i was reading a tutorial about the ole api and i think i managed to get through the whole tutorial but when i try to use some of the functions the tutorial uses like oleuninitialize then i get an error saying undefined reference i would like to know what exactly i'm missing.
these files are supposed to be defined in windows.h from what the tutorial said. and i'd also like to know is there any way to turn ur custom defined window into a explorer like window so that when someone drops a file onto it, the icon of the file will be displayed on the window just like its done on the desktop. if you could provide any tutorials which would teach me this that would be great. thanks
marizion 0 Newbie Poster
Recommended Answers
Jump to Post#include <"windows.h"> #include <"iostream">
Do not use both angle brackets and quotes. One or the other. Use angle brackets for your compiler's header files and quotes for the header files that you create.
#include <windows.h> #include <iostream>
After a successful compile you will get …
Jump to PostIf you use MFC you can use a Splitter Window and Tree Control. I'm sure you can do it without MFC but it will be a whopping lots of work and code. And of course to use MFC you will have to use a Microsoft compiler (not the free Express …
All 7 Replies
Salem 5,265 Posting Sage
marizion 0 Newbie Poster
mitrmkar 1,056 Posting Virtuoso
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
marizion 0 Newbie Poster
Ancient Dragon 5,243 Achieved Level 70 Team Colleague Featured Poster
marizion 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.