I have some vb6 code I have not compiled in a long time. The last compile is in production. Now I get an error "User-defined type is not defined" when I do a full compile. I'm sure there is a reference missing. But there is no code that is hi-lighted. And I cannot seem to find what reference might be lost.
Any clues as to what I can do to find the missing reference would be very helpful.
Thanks!
Dave
Option Explicit On
– Shahzebfind /I "Dim " *
This will give you all the variable declarations. Sort out the unique ones and start eliminating from there. Do you have a "last known good" configuration to compare any changes against? – ZnArK