Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
ArtemUBRR
Contributor
Contributor

macro to create executable file

Hi everyone!

I have a macro witch start refresh save and close qwv file.

Sub ReloadThisDoc
    Set fso = CreateObject("Scripting.FileSystemObject")    
    If fso.FileExists("C:\Вызовы Naumen.txt") Then
        ActiveDocument.Reload
        ActiveDocument.Save
        ActiveDocument.GetApplication.Quit
    end if
    set fso=Nothing
End Sub

 

Now, i need to create exe through the macro

Please, help me!

Labels (1)
1 Reply
marcus_sommer

If you have a running vbs-macro you could probably do everything what you like to do - an extra generation of an executable file might not be necessary. Even if you could create an appropriate txt-file, giving it an extension like bat/cmd/vbs. Nothing of it is specially related to Qlik and so you will get better and faster results in regard to examples and explanations within any vb/vbs/vba-forum.

- Marcus