easye compile question

  • Thread starter Thread starter Pierre via OfficeKB.com
  • Start date Start date
P

Pierre via OfficeKB.com

Hi experts,

Can anybody explain to me what " Compile VBAproject " means.

- What happens if i do that and why should i do this ?

I found that if i do not compile, my applications won't run on other pc's. Is
that true or...?
Thanks,
Pierre
 
When you select this optional command VB tries to tokenize your code and in
the course of doing that finds certain kinds of errors such as undeclared
variables (if you use Option Explicit as you should), subs and function that
cannot be found (maybe due to misspelling or missing references), object,
property, method errors like using a workbook method with a worksheet, etc.

--
Jim
| Hi experts,
|
| Can anybody explain to me what " Compile VBAproject " means.
|
| - What happens if i do that and why should i do this ?
|
| I found that if i do not compile, my applications won't run on other pc's.
Is
| that true or...?
| Thanks,
| Pierre
|
|
| --
| Message posted via OfficeKB.com
| http://www.officekb.com/Uwe/Forums.aspx/excel-programming/200511/1
 
Back
Top