[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

Loading and working with DLLs

Asked by mzimmer74 in C++ Programming Language

Tags: c++

I'm attempting to write a c++ program to add a currently installed printer to the machine such that it is installed for all users.  I can accomplish that in dos by using this command:
RUNDLL32 PRINTUI.DLL,PrintUIEntry /ga /c\\machine /n\\machine\printer /j"LanMan Print Services"

I've gotten a lot of the program done (I'm using visual c++ 2008 Express Edition) but am having some problems figuring out the DLL portions (my background is in Java so I'm struggling with c++).  After browsing around and finding some solutions that were similar, I have the code I attached to this question.

Currently, I can load the dll into hDLL just fine.  However, the call to GetProcAddress is returning null.  Any idea what I'm doing wrong here?  Also, once the GetProcAddress call actually works, what do I need to do to make the dwParam1 compile?  I get error C2664 with a conversion problem.  I'm assuming that's the correct way to call the params, but if not what would be correct for the desired DLL call?

I'm not limited to using DLL loading, so if there is another method to do this I'd be glad to hear it.  However, as mentioned, I'm still learning C++ so simpler is better. :)

Thanks,
Matthew
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
typedef UINT (CALLBACK* LPFNDLLFUNC1)(DWORD,UINT); 
HINSTANCE hDLL;               // Handle to DLL
LPFNDLLFUNC1 lpfnDllFunc1;    // Function pointer
DWORD dwParam1;
UINT  uParam2, uReturnVal;
 
hDLL = LoadLibraryA("C:\\Windows\\system32\\printui.dll"); //this works
if (hDLL != NULL)
{
   lpfnDllFunc1 = (LPFNDLLFUNC1)GetProcAddress(hDLL, "PrintUIEntry"); //this fails
   if (!lpfnDllFunc1)
   {
      FreeLibrary(hDLL);       
      return -1;
   }
   else
   {
      dwParam1="/ga /c\\machine /n\\machine\printer /j\"LanMan Print Services\""
      uReturnVal = lpfnDllFunc1(dwParam1, uParam2);
   }
   return 0;
}
[+][-]07/29/08 08:04 AM, ID: 22112185Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: C++ Programming Language
Tags: c++
Sign Up Now!
Solution Provided By: jkr
Participating Experts: 3
Solution Grade: A
 
[+][-]07/29/08 08:09 AM, ID: 22112232Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 08:10 AM, ID: 22112241Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 08:11 AM, ID: 22112261Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/29/08 08:16 AM, ID: 22112334Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 08:19 AM, ID: 22112361Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 08:20 AM, ID: 22112367Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 08:47 AM, ID: 22112673Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/29/08 08:56 AM, ID: 22112785Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07/29/08 09:07 AM, ID: 22112896Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]07/29/08 11:45 AM, ID: 22114250Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92 / EE_QW_2_20070628