我有这段代码来 const 当前路径:
Option Explicit
Const CurPath As String = App.Path 'not working and higlight ".Path" for error.
Private Sub Form_Load() 'just for test with Label1 Caption
Label1.Caption = CurPath
End Sub
我不知道出了什么问题,但它不起作用,但我想为当前路径设置常量以在许多中使用,有SUB and Function
什么建议吗?
注意:我希望这个 const 留在Form而不是在Module中,我再次希望这个 in const
,因为另一个 const 也需要这个。