VBA/Excel/Access/Word/File Path/CurDir — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 12:47, 26 мая 2010

CurDir() Returns a string representing the current drive path.

 
Sub strDemo20()
   Debug.Print CurDir()
End Sub



To return the current path for a specified drive

 
Sub curDirDemo1()
    CurDir ("C:\")
End Sub



To return the current path, use CurDir without an argument:

 
Sub curDirDemo()
    MsgBox CurDir
End Sub