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
5
votes
3 answers

Gridview custom paging inside wizard control doesn't work correct in asp.net

I have a page where guests can be selected. This page contains an update panel, within the update panel there is a wizard control and in the wizard control there is a gridview (Panel-> Update Panel -> wizard control -> gridview) Now the paging…
Backspin
  • 51
  • 2
5
votes
3 answers

InnoSetup: Is it possible to open my custom Delphi form (from the DLL) instead of the standard setup wizard

I need to create a complex form with my own components (kinda OneClick installer), and use it as the replacement of the standard InnoSetup wizard. Is it possible? My form is placed into DLL, and this DLL will be available for InnoSetup process. This…
Andrew
  • 3,696
  • 3
  • 40
  • 71
5
votes
4 answers

DesignPatterns: Which is most appropriate to use for a wizard style user interface?

I am implementing a Wizard style user interface. As a user flows through the wizard, clicking next, depending on the choices they have chosen on each screen, the user will have to go through a certain set of wizard screens. This is being built in…
7wp
  • 12,505
  • 20
  • 77
  • 103
5
votes
1 answer

Can't put content behind SWT Wizard Help Button

I created a SWT based Wizard which has an own help Button by custom. Now i want to put some content behind that, so maybe a SWT browser will be openend and a predifined HTML Doc will be shown. But I don't have any clue where to access the Actions of…
ethnix
  • 1,165
  • 1
  • 8
  • 13
5
votes
1 answer

Design a "Wizard" set of screens on an iPad

I want to build a guided "Wizard" set of screens on the iPad. So there is one master screen with N sub-steps in it that are guided through. You should be able to go backwards and forwards through the steps, but also have a "Home" button that goes…
MikeN
  • 45,039
  • 49
  • 151
  • 227
5
votes
1 answer

Clean up repetitive JavaScript code

I have created a "Wizard" using JavaScript and based on people's answers you get taken to certain results divs. It works the way I want, but this code is VERY repetitive. Is there a way to clean up this JavaScript…
Dawn
  • 175
  • 1
  • 14
5
votes
5 answers

PrimeFaces' p:wizard validation not working

I have a p:wizard with some tabs. In the first tab, the user selects a value (t:selectOneRadio - I'm using Tomahawk). That's a required value. If the user doesn't select a value, it won't go to the next tab, but no validation error is displayed.…
geeehhdaa
  • 822
  • 5
  • 17
  • 30
5
votes
0 answers

Windows Media Player Plugin Development in Windows 10 (Visual Studio 2019)

I'm looking to create a very simple UI plugin for Windows Media Player, similar to this: https://obsproject.com/forum/resources/windows-media-player-title-artist-text-output-ticker.402/, but with the ability to choose the path and name of the text…
Apache
  • 619
  • 6
  • 22
5
votes
1 answer

VS 2010 Performance Explorer

I'm starting to explore performance profiler in VS 2010 and having a hard time finding it useful. I realize this is most likely because I'm not familiar with the tool. What I'm looking for is a way to identify the most time consuming method calls.…
AVP06
  • 1,079
  • 1
  • 10
  • 16
5
votes
2 answers

Use Inno Setup UI as a self-extractor only - No installation

I use Inno Setup for many "standard" installers, but for this task I need to extract a bunch of temp files, run one of them, then remove them and exit the installer (without actually installing anything). Basically I'm looking to make a…
Zuur
  • 101
  • 1
  • 6
5
votes
2 answers

rendering first step of multistep form wizard as partial in another controller's show action

I want to render the first step of a multistep form for @trade_wizard (which has it's own controller, WizardsController) as a partial inside ItemsController#show, but I don't know how to build this without doubling the code from one controller into…
calyxofheld
  • 1,538
  • 3
  • 24
  • 62
5
votes
2 answers

How to bind Xtended WPF Toolkit Wizard's CurrentPage in MVVM?

I've built a wizard of several pages using Xceed WPF Toolkit's Wizard Control, and I need the program to know what page is currently active, in order to be able to determine the necessary steps. I'm trying to bind CurrentPage to the ViewModel, as…
Sam White
  • 138
  • 3
  • 16
5
votes
4 answers

Jenkins setup wizard not loading

I am unable load jenkins setup wizard in centOS. I am able to load initial page (Fig-1) where asking for initial password there I am entering initial password. But after clicking on the continue the page is not going to setup wizard. The page is…
user3788070
  • 51
  • 1
  • 3
5
votes
1 answer

Cancel VS2010 project creation from wizard

I created a wizard for a custom template in VS2010 And it works like a charm. But since the wizard contains a form required to finish the creation of the project, i feel that the user should be able to cancel the creation of the project. So my…
Moulde
  • 3,438
  • 4
  • 29
  • 38
5
votes
2 answers

Django SessionWizardView doesn't execute done method

I can't make my SessionWizardView work. When I submit the last step, the wizard jumps back to the first step and does not execute the done method. views.py class CvWizardView(CookieWizardView): form_list = [InfoPersonalForm, PresentacionForm] …
Francisco
  • 49
  • 4