Click here to Skip to main content
15,889,651 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Application Security - Advice Pin
Eddy Vluggen10-Nov-10 7:43
professionalEddy Vluggen10-Nov-10 7:43 
AnswerRe: Application Security - Advice Pin
vbjay.net11-Nov-10 3:08
vbjay.net11-Nov-10 3:08 
AnswerRe: Application Security - Advice Pin
Cameron Marsden11-Nov-10 10:26
Cameron Marsden11-Nov-10 10:26 
GeneralRe: Application Security - Advice Pin
Kirk Wood11-Nov-10 17:10
Kirk Wood11-Nov-10 17:10 
GeneralRe: Application Security - Advice Pin
Simon_Whale11-Nov-10 21:57
Simon_Whale11-Nov-10 21:57 
QuestionHelp on vb6 and .dll Pin
blurboy10-Nov-10 4:31
blurboy10-Nov-10 4:31 
AnswerRe: Help on vb6 and .dll Pin
_Erik_10-Nov-10 6:53
_Erik_10-Nov-10 6:53 
AnswerRe: Help on vb6 and .dll Pin
Dave Kreskowiak10-Nov-10 7:23
mveDave Kreskowiak10-Nov-10 7:23 
blurboy wrote:
I did not realize it had to do with registering the dll because I did not register the dll on my PC before. It seems that when I compile my project, vb6 automatically registers A.dll.


True. When you compile a .DLL project under VB6, it automatically does the registration for you. Which makes sense because VB6 is only capable of tareting COM-based .DLL's. It can't generate a normal function .DLL.


blurboy wrote:
Therefore, I have coded my program to auto-register the A.dll itself.


This is normally handled by the installer for your app, not the app itself. But, it's still possible to do so long as you realize that not everyone who uses your app may be able to register a COM .DLL.


blurboy wrote:
Even after I unregistered the A.dll on my PC, I still can run my program normally! For some reason, vb6 keeps locking on to my dll. and I cant seem to unregister it. Therefore I am unable to test my auto-registering code!


REGSVR32 /u mydllname.dll will unregister that .DLL files GUIDs. Once the registrations are gone, the bindings shouldn't work any more. But, there may be old GUID data from older versions of your .DLL that are still registered. There's no way to automatically remove all of those references out of the Registry. You'll have to hunt them down and remove them by hand.

GeneralRe: Help on vb6 and .dll Pin
blurboy10-Nov-10 9:57
blurboy10-Nov-10 9:57 
GeneralRe: Help on vb6 and .dll Pin
James H11-Nov-10 2:32
James H11-Nov-10 2:32 
AnswerRe: Help on vb6 and .dll Pin
S Houghtelin11-Nov-10 4:00
professionalS Houghtelin11-Nov-10 4:00 
AnswerRe: Help on vb6 and .dll Pin
blurboy11-Nov-10 4:20
blurboy11-Nov-10 4:20 
QuestionHow to use NOT in FOR EACH LOOP Pin
vijay248210-Nov-10 3:04
vijay248210-Nov-10 3:04 
AnswerRe: How to use NOT in FOR EACH LOOP Pin
Dr.Walt Fair, PE10-Nov-10 5:11
professionalDr.Walt Fair, PE10-Nov-10 5:11 
GeneralRe: How to use NOT in FOR EACH LOOP Pin
vijay248210-Nov-10 20:48
vijay248210-Nov-10 20:48 
GeneralRe: How to use NOT in FOR EACH LOOP Pin
Dr.Walt Fair, PE11-Nov-10 5:06
professionalDr.Walt Fair, PE11-Nov-10 5:06 
GeneralRe: How to use NOT in FOR EACH LOOP Pin
vijay248211-Nov-10 19:54
vijay248211-Nov-10 19:54 
QuestionHow can I clear a portion of a page in a printdocument Pin
JR2128-Nov-10 20:13
JR2128-Nov-10 20:13 
AnswerRe: How can I clear a portion of a page in a printdocument Pin
Dave Kreskowiak9-Nov-10 1:56
mveDave Kreskowiak9-Nov-10 1:56 
GeneralRe: How can I clear a portion of a page in a printdocument Pin
JR2129-Nov-10 21:35
JR2129-Nov-10 21:35 
GeneralRe: How can I clear a portion of a page in a printdocument Pin
Dave Kreskowiak10-Nov-10 2:04
mveDave Kreskowiak10-Nov-10 2:04 
GeneralRe: How can I clear a portion of a page in a printdocument Pin
JR21210-Nov-10 4:15
JR21210-Nov-10 4:15 
AnswerRe: How can I clear a portion of a page in a printdocument Pin
Chris Trelawny-Ross11-Nov-10 10:06
Chris Trelawny-Ross11-Nov-10 10:06 
GeneralRe: How can I clear a portion of a page in a printdocument Pin
JR21211-Nov-10 22:33
JR21211-Nov-10 22:33 
QuestionConverting Excel to PDF Pin
Parag Raibagkar7-Nov-10 23:36
Parag Raibagkar7-Nov-10 23:36 

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.