How to do late binding in VBA?

前端 未结 3 1498
你的背包
你的背包 2020-11-30 12:21

I have this little function that achieves the creation of an email via VBA,
It gets the data from another function that works together with an Excel file.

The pr

3条回答
  •  难免孤独
    2020-11-30 12:33

    In that situation I generally define the constant globally in a module like this, that way you preserve the descriptive value of the variable.

    Public Const olFormatHTML = 2

提交回复
热议问题