Good afternoon, I've been tasked with converting a Visual Studio project into Excel vba so that my colleagues can be able dive into it, amend or run it, etc.
I think I've most of it down apart from one procedure:-
I can see the 'FileCopy' part and see what's happening there but it's the 'Automate' parts that have me baffled. There aren't any functions named "Merlin" or "MTK" - in fact this is the only place they appear.
I thought I'd find something "Out There" but I haven't got a clue.
Any ideas? Once I know what it does, I guess I'll be able to figure out have to replicate this in Excel
Many thanks,
D€$
I think I've most of it down apart from one procedure:-
Code:
Private Sub RunMerlin(ByVal strFNAME As String, ByVal strDIR As String, ByVal strMDIR As String, ByVal strSTPNAME As String, ByVal strData As String)
FileCopy(strDIR & strFNAME, strMDIR & strData)
Dim Automate As New Automation
Automate.Merlin(strMDIR, strSTPNAME, "CE")
Automate.MTK(strMDIR, "rflag")
End Sub
I can see the 'FileCopy' part and see what's happening there but it's the 'Automate' parts that have me baffled. There aren't any functions named "Merlin" or "MTK" - in fact this is the only place they appear.
I thought I'd find something "Out There" but I haven't got a clue.
Any ideas? Once I know what it does, I guess I'll be able to figure out have to replicate this in Excel
Many thanks,
D€$