Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
sibin_jacob
Creator III
Creator III

Save option

Hi,

Is there any way to avoid the pop up message box ("Do you want to save the changes") when I am closing the application.

Is there any settings in qlikview to avoid this popup message ?

Thanks,

Sibin Jacob.C

11 Replies
Not applicable

You can use button (with trigger) instead of close by "x"

Use this macro...

Sub SaveDoc

     ActiveDocument.Save

     ActiveDocument.GetApplication.Quit

End Sub

sibin_jacob
Creator III
Creator III
Author

Hai Pari,

Is this functioanlity possible without using macro?

Because of our coding standard I can't use macro in my application.

Is there any otherway to achieve this functionality without using macro?

Thanks,

Sibin Jacob.c

Not applicable

I don't think it is possible:/

Not applicable

probably You can dissable all the popup messages on Your OS, but i don;t think it is what You want.

sibin_jacob
Creator III
Creator III
Author

Hai,

Is there any way to save my application in button click without using macro?

Thanks,

Sibin

Not applicable

Yes (using trigger) but that still open pop-up window:)

sibin_jacob
Creator III
Creator III
Author

okay... Please tell me how to use trigger to save my application.

Thanks,

SJ

Not applicable

for example:

paste button object

go to properties ---> Actions ---> Add ----> External ---> close this document

ok

ok

done

sibin_jacob
Creator III
Creator III
Author

Thanks Pari but I need to automatically save my application using trigger.

Is there any way to save my application using trigger without any user action?