custom dialog box on error

kamranyd

Board Regular
Joined
Apr 24, 2018
Messages
152
Office Version
  1. 2021
Platform
  1. Windows
Code:
Sub TryOpenFileOpenFolder()
    
    Dim FileNameRef1 As String, FileNameRef2 As String, myPath As String


    FileNameRef1 = Application.WorksheetFunction.Text(Range("A1"), "General")
    FileNameRef2 = Application.WorksheetFunction.Text(Range("J1"), "General")
    
    myPath = "C:\Users\KYD\Desktop\"
    
    On Error Resume Next
    ThisWorkbook.FollowHyperlink myPath & FileNameRef1 & " " & FileNameRef2 & ".pdf"
    
    If Err.Number <> 0 Then MsgBox "File " & "[-> " & FileNameRef1 & " " & FileNameRef2 & ".pdf" & " <-]" & " not found" & vbNewLine & "Folder " _
    & myPath & " not found", vbExclamation, Title:="header"


End Sub

hello everyone these codes search file pdf in directory and open it, else show warning message not available, as you know cant change fonts or background etc etc of vb warning boxes. so if it possible to make custom warning box with part of the text can have different color or make it bold....or how to make these codes work in user form dialog boxes.

Thnx
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK

Forum statistics

Threads
1,224,820
Messages
6,181,154
Members
453,021
Latest member
Justyna P

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top