Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks didnt think about doing that. It works. I looked
in VBA help and could not find a list of all the error numbers. Do you have a list that lists all the possible err types? Todd -----Original Message----- Todd, I don't think there is a (built in) way to check just the syntax of a file name. Since, I assume, you are going to use the value to open or save a file, just go ahead and do the operation and use an error trap to determine the success of the operation. An alternative would be to use the Dir() function, and test for an error. Dim FNum As Integer Dim FName As String On Error GoTo ErrH: FName = "invalid/::???file\\\??name" FNum = FreeFile() If Dir(FName) = "" Then ' do nothing End If Exit Sub ErrH: If Err.Number = 52 Then MsgBox "Invalid filename " End If -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Todd Huttenstine" wrote in message ... Good morning How do you check a value to see if it is in a valid file path format? Thank you Todd Huttenstine . |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
file format or file extension is not valid...error message | Excel Discussion (Misc queries) | |||
File format not valid | Excel Discussion (Misc queries) | |||
File format is not valid | Excel Discussion (Misc queries) | |||
file format not valid | Excel Discussion (Misc queries) | |||
file format not valid | Excel Discussion (Misc queries) |