Не могу понять, почему выдает ошибку "Can't find project or library" - VB
Формулировка задачи:
Подчеркивает строку 12. Помогите разобраться пожалуйста.
Решение задачи: «Не могу понять, почему выдает ошибку "Can't find project or library"»
textual
Листинг программы
Public Const dhcMaxPath = 260 Public Const dhcNoError = 0& Public Const dhcErrorExtendedError = 1208& Public Const MAX_PATH = 260 Public Declare Function SHGetSpecialFolderLocation Lib "Shell32.DLL" (ByVal hwndOwner As Long, ByVal Folder As Long, ByRef idl As Long) As Long ' Shell types Public Declare Function SHBrowseForFolder Lib "Shell32.DLL" (ByRef bi As BrowseInfo) As Long Public Declare Function SHGetPathFromIDList Lib "Shell32.DLL" (ByVal idl As Long, ByVal Path As String) As Integer Public Type BrowseInfo hwndOwner As Long ' Owner pidlRoot As Long ' Can be null strDisplayName As String ' Rcvs display name of folder (32 bytes) strTitle As String ' title/instructions for user ulFlags As Long ' 0 or BIF constants ' You won't use any of the following fields, from VBA. lpfn As Long ' Address for callback: use NULL lParam As Long ' Passes to callback iImage As Long ' index to the system image list End Type
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д