Questions tagged [wizard]

A Wizard is an installation script which when run opens a simple GUI allowing for streamlined installation and configuration of a program.

Wizards are installation programs that allow streamlined installation of the application that they are written for via the use of a simple GUI. Often times when you download a program, you actually download it's installation Wizard, which when run will query the developers website for download of the remaining program files. Other times the entire application is downloaded along with the Wizard which then allows for easy management of patching, configuration of save directory, environment variables, and 3rd party tools.

1161 questions
7
votes
2 answers

How to perform a check on ng-disabled in angularjs?

I am using a fuelUX Wizard and Angularjs. I would like the next button to be enabled or disabled basing on this controller method: $scope.canMoveForward = function(){ switch($("#moduleWizard").wizard("selectedItem").step){ case…
user1012480
  • 752
  • 2
  • 11
  • 24
7
votes
2 answers

Creating setup wizard on Android

In my application I need to ask the user some information in the beginning. Like Google asks users when they first launch the phone. Using Java and Android, how do I make the same kind of setup wizard for my application? I could create multiple…
MikkoP
  • 4,864
  • 16
  • 58
  • 106
7
votes
5 answers

Roman Nurik's Wizard pager - how to access collected data?

I am trying to make a wizard using Roman Nurik's library (https://plus.google.com/113735310430199015092/posts/6cVymZvn3f4). I am having trouble accessing the collected data from the Review Fragment. I made mCurrentReviewItems public in…
urSus
  • 12,492
  • 12
  • 69
  • 89
6
votes
1 answer

Inno-setup: Custom Wizard page based on existing page type

I decided to create custom wizard page in my inno-setup-based installer. But i do not want to create it from scratch. I want to take TInputDirWizardPage and modify it, e.g. add a combo-box. Is it possible? How to do it?
Aleksandr Kravets
  • 5,750
  • 7
  • 53
  • 72
6
votes
2 answers

Android - what is the right way to implement a wizard with an animation between the steps

I'm building and Android app that needs to go through steps like a wizard. Current structure: At the moment I'm using one activity with separate views.xml for each step, then I'm using setContentView(activeStep) to display the active step. I ran…
Shlomi Schwartz
  • 8,693
  • 29
  • 109
  • 186
6
votes
1 answer

Proper way to make a wizard in a UWP application?

I'm trying to implement a startup wizard for a UWP application. Preferably the wizard should open in a new window that is non-resizable and located at the center of the screen. I have already tried to use LaunchUriForResultsAsync in order to launch…
Yoav Feuerstein
  • 1,925
  • 2
  • 22
  • 53
6
votes
5 answers

C# need advice on a simple issue on form navigation

I need to simulate a form that is similar to the interface seen during installation of any software. There are next and back buttons and the all the information entered by the user is processed only when he/she clicks the finish button. When the…
abduls85
  • 548
  • 8
  • 15
6
votes
2 answers

How to create "Multi Project Template With Custom Wizard" in Visual Studio 2017

I'm looking for help on making a multi project template (i.e. a deploy-able solution that contains multiple projects) with a custom wizard (to enable custom parameters to be entered). I've followed "How to: Create Multi-Project Templates" to make…
6
votes
4 answers

Looking for a great Wizard example implemented with WinForms and/or an advice regrding design

Disclaimer: In this question tab, page, an dialog actually mean the same thing, sorry. My excuse: I am not sure what the final product should look like - a bunch of separate windows or all in one. I am looking to improve an existing,…
Hamish Grubijan
  • 10,562
  • 23
  • 99
  • 147
6
votes
1 answer

Bootstrap wizard: how can I move to the next step from JavaScript?

I have a bootstrap wizard where one of the steps shows a form with several buttons. One of those buttons needs to call an ajax action, and, if that is successful, move on to the next step in the wizard. From the JavaScript tied to the onclick-Event…
Lying Dog
  • 1,484
  • 2
  • 12
  • 19
6
votes
2 answers

WizardHandler.wizard().goTo

Im using https://github.com/mgonto/angular-wizard to create an angular wizard whose steps can be called from route params: .../step/1 .../step/2 etc. So I've created this controller: .controller('createOrganizer', ['$scope', 'WizardHandler' ,…
kennyvivas
  • 101
  • 1
  • 8
6
votes
2 answers

Custom Activity at first launch (initialization wizard)

I would like to define my own "SetupWizard" application. To do so, I am using this intent-filter and it works fine :
g123k
  • 3,748
  • 6
  • 42
  • 45
6
votes
3 answers

Unable To Reference Wizard Assembly in VSIX Deployed Template

I am trying to create a VISX extension for Visual Studio 2010 that contains a few project templates. These templates aren't very complex, but I want to expose some additional configuration for them during creation via a wizard. I have successfully…
Bill Nadeau
  • 702
  • 1
  • 9
  • 15
5
votes
2 answers

How to provide a default answer to readline in node.js

js in order to create a command line wizard. The wizard asks some question to the user using the rl.question(query, callback) method. The problem is that I want to make the question and to provide a default answer in order to let the user able to…
Fab
  • 168
  • 2
  • 8
5
votes
3 answers

How to completely disable or hide Back button in QWizard?

I want to disable or hide Back button in QWizard dialog. How can I do it?
Dmitriy
  • 5,357
  • 8
  • 45
  • 57