Advertisement
| 07.09.2008 at 09:19AM PDT, ID: 23550861 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: |
Function FNC_Folder_Picker(Network_Path As String)
Dim File_Dialog_Object As FileDialog
Dim Msgbox_Response As String
Dim Search_Directory As String
On Error GoTo Exit_Function
Search_Directory = FNC_GetProperty(ThisWorkbook, "Last_Search_Root", msoPropertyTypeString)
Set File_Dialog_Object = Application.FileDialog(msoFileDialogFolderPicker)
With File_Dialog_Object
.Title = "Select Folder and Click OK."
.ButtonName = "Choose Folder"
'.InitialFileName = Search_Directory
End With
If File_Dialog_Object.Show = -1 Then
Network_Path = File_Dialog_Object.SelectedItems(1)
Else
'Msgbox_Response = MsgBox("The Selected Folder is Empty!", vbExclamation, "Note:")
Network_Path = "Exit"
End If
Exit_Function:
If Network_Path <> "Exit" Then FNC_SetProperty ThisWorkbook, "Last_Search_Root", msoPropertyTypeString, Network_Path
End Function
|
Advertisement