compile VBAproject

compile VBAproject

Anonymous
Not applicable
250 Views
2 Replies
Message 1 of 3

compile VBAproject

Anonymous
Not applicable
What does this do?
0 Likes
251 Views
2 Replies
Replies (2)
Message 2 of 3

Anonymous
Not applicable
check for missing functions, undeclared variables, etc.

Kevin

"Todd" wrote in message
news:f198135.-1@WebX.maYIadrTaRb...
> What does this do?
>
>
0 Likes
Message 3 of 3

Anonymous
Not applicable
IOW it checks for syntax errors before compiling. Compiling takes the psuedo
code you see on the screen and turns it into machine language. It is saved
with the dvb. This is one difference between vba and vb. Vb saves modules,
forms, etc in separate files and then you compile to an exe/dll/ocx. Vba
keeps it all in one file. I suggest using this feature before you save and
exit the vbaide. The vbaide doesn't always perform a compile when you save
your project. If you have a compile error when you save, you can corrupt
your dvb so that the next time you start the vbaide, your dvb won't load,
and there's no fix. You'll have to go back to a previous version, if you
kept one.

--
--
Ed
--
"Kevin Terry" wrote in message
news:C75FF9DB8AA1288A5D1FDAE83316E4E8@in.WebX.maYIadrTaRb...
> check for missing functions, undeclared variables, etc.
>
> Kevin
>
> "Todd" wrote in message
> news:f198135.-1@WebX.maYIadrTaRb...
> > What does this do?
> >
> >
>
>
0 Likes