I have a legacy vb6 application that needs to run on a server 2008 machine. I have been unable to get comdlg32.ocx to register, which the application depends on. Any suggestions?

link|improve this question

49% accept rate
Is the server a 32 bit or 64 bit version of Win2008? – David Stratton Sep 22 '09 at 21:38
64-bit seems likely. Probably not using a proper installer, but manually copying into System32 instead of SysWOW64. Hard to say without some basic info though. – Bob Riemersma Sep 23 '09 at 0:58
Is there any error message? Are you using regsvr32 or some other method? Are you trying to register it as administrator? – MarkJ Sep 23 '09 at 8:42
Thanks for comments, all. 32 bit server. Used regsvr32 and rebooted yesterday and the app wasn't working. Today the application worked fine, but nothing else was changed. Wish I could give more information, but the issue seems to have resolved itself. – cabgef Sep 23 '09 at 22:26
feedback

3 Answers

up vote 0 down vote accepted

Hmm, does this link help you at all?

My only other suggestion is that often dependency walker is useful in these sorts of situations, in particular if you are running this vb6 application on a 64 bit OS then pay attention to whether or not comdlg32.ocx has all of its dependencies present as 32 bit libraries.

link|improve this answer
Good link. It says comdlg32.ocx is supported on Windows Server 2008, but you need to distribute it yourself. Therefore mikeh can contact Microsoft technical support if we can't help (I bet it's something simple though). – MarkJ Sep 23 '09 at 8:41
feedback

The obvious, but are you running Regsvr32 as an Admin?

link|improve this answer
Yes, commented above that the app is working now (but do not know why). Thanks. – cabgef Sep 23 '09 at 22:28
feedback

If you do not want to bother about copying and registering the comdlg32.ocx file (for which you might need administrator rights anyway), check out following project, that shows how you can use the common dialog box (open and save) without using the ocx file and thus without need of registering it. It uses the comdlg32.dll directly with APIs, which is installed already on windows! http://www.ws-software.co.cc/TComdlgAPIEng.html

The File Backupper is a nice peace of software, that uses exactly this: http://www.ws-software.co.cc/PFBUEng.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.