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

Visual Basic

 
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 
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 
Your best bet is a "clean build" PC to test on - I use VMWare Workstation for this - it allows you to rollback the state of the Virtual Machine so you can go back to "clean" for testing the installers.

As for the mystery of it still working on your PC - it depends a bit on the way the DLL is called from VB - if you are using CreateObject as in e.g. wordObj = CreateObject("Word.Application") then the registry is searched first for Word.Application class then it picks up a GUID in that to get actual reg info point to the OLE DLL. This is known as "Late Binding". Early binding is what you get when you add the DLL to the references in your VB project. Can't remember for sure but there is a good chance that when you open the VB project if it is early bound and it doesn't find the registry info that it automatically re-registers the DLL - and it is likely it does this even if you don't run the project (because it needs the reference to be working to even allow a compile). I recommend ProcMon (old Sysinternals tool - now Microsoft) to spy on what is going on and ow the registry info for your DLL is being found.
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 
AnswerRe: Converting Excel to PDF Pin
_Erik_8-Nov-10 3:28
_Erik_8-Nov-10 3:28 
GeneralRe: Converting Excel to PDF Pin
Parag Raibagkar8-Nov-10 19:22
Parag Raibagkar8-Nov-10 19:22 

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.