Inno Setup: Uninstall user dialog - dialog

I need a user dialog with yes/no option for the uninstall process ("also delete the
setting files in the userappdata folder?" )!
How is this possible?
Thank you in advance!
greets

You will need to create a custom form (CreateCustomForm()) or use a simple message box (MsgBox()) in the CurUninstallStepChanged(usUninstall) event function.

Related

How can I check if a dialog is a group? (telethon)

How could I check if the dialog is a group?
I want to make a For Loop which iterate through all dialogs and only executes a command if the dialog is a group, but I don't know how to check that.
dialog.is_group
You can check the docs link: https://docs.telethon.dev/en/stable/modules/custom.html?highlight=group#module-telethon.tl.custom.dialog

Adding Customized message in Inno Setup finish page

I want to add few more lines in finishPage along with yes or no button, Can I get any help here please?
Currently I am getting default message along with that i will have to add few lines(instruction to user).
[Setup]
DisableFinishedPage=no

Close dialog and execute automation script on same button (IBM Maximo)

Is there any workaround to execute an automation script over dialog in Maximo and next close it with dialogok event using the same push button?
It's probably not the answer you want to hear, but as of Maximo 7.6.0.8 (the latest version currently available), the only "workaround" would be a custom Java Bean class.
It's is possible to trigger two actions with one button. I've not tested it with automationscripts though....
For example use this in de button xml:
mxevent="dialogok" value="ROUTEWF"
You can add a sigoption with the same name as the action and make sure that you expand the 'Advanced Signature Options' section and set 'This is an action that must be invoked by user in the UI'.
You could create and object launch point automation script therefore when you click OK in the menu the object will be saved and the automation script triggered.
If you already know that some field is going to be update, you could do it with an attribute launch point for that object.

how to get value from edit box on installshield dialog

i have a VB6 project and want to make own dialog window to get user input value and save it to text file.
Please explain how this is done?
How to get user input value?
Please use CtrlGetText:
ControlID can only be found in project type:
InstallScript, InstallScript MSI, InstallScript Object:

Is it possible to save a file using client side javascript in xpages

I customize my confirmation prompt using sweetAlert, I did it, now my problem is using a customize confirmation prompt, I cannot use SSJS code but I need to save a document with a file upload.
I need Help with this thanks!
My workaround for this is an XPoages button that contains the required SSJS code for saving the document. The button resides in a hidden normal DIV (style="display:none"). When executing you CSJS just refer to the clientId of that button and fire the event click() like in
function csjsAction(){
dojo.byId("#{id:yourButton}").click();
}

Resources