How do I open a project through VBA??
I'm using the code below and just open the .exe
//—————————————//——————————-
Private Sub Cbt_XXX_UiPath_Click()
Dim x As Variant
Dim Caminho As String
Dim arquivo As String
Path = "C:\Users\XXX\AppData\Local\UiPath\UiPath.Studio.exe "
File = Path & " C:\Users\XXX\OneDrive\Documentos\UiPath\XXX.xmal"
x = Shell(Path + " " + File, vbNormalFocus)
End Sub