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
0 answers

SQL Import Export Wizard : not allowing saving packages

I have installed SQL Server 2012 Express Edition in my laptop a long ago. Recently, I installed the SQL server 2012 developer edition. The problem is when I launch the Import Export wizard it is automatically launching the version attached to the…
user1598776
  • 815
  • 1
  • 7
  • 7
5
votes
1 answer

Multi-page wizard in MVC - where to store the entered data

What do you think it's the best way to create a wizard over several pages in asp.net-mvc ? I am thinking to: create a hidden field in every page which contain my whole object serialized override OnActionExecuting -> get my object from the hidden or…
bogus
  • 71
  • 4
5
votes
3 answers

IntelliJ IDEA 12 - New Android Application Module wizard fails with "cannot find resource directory for module"

The problem I'm facing is a very simple one... I can't get IntelliJ IDEA 12 to help me with the creation of an Android application module (project). After successfully installing IntelliJ IDEA 12 and making acquaintance between the IDE and both SDKs…
Eduard Dumitru
  • 3,242
  • 17
  • 31
5
votes
2 answers

Fuel UX wizard component not displaying correctly

I'm trying to use the fuel ux wizard component as shown in the example: http://exacttarget.github.io/fuelux/#wizard but it does not display correctly. My code is:
Petr
  • 1,389
  • 10
  • 15
5
votes
2 answers

Load styles in Google Maps Wizard

Im using the Google Maps Wizard to customize the color of some maps I need to embed on an website. I got some JSON that loads ok but if I need to make a change I need to touch the code and load the map every time I change a value to see the…
user1650394
5
votes
4 answers

How to make the msi overwrite program if a previous version exist?

I am using Visual Studio 2010, I am working on a windows application and while trying to make an automatic updater for it faced a serious problem. When the program find a new version and trying to install it, it couldn't because of two reasons: 1-…
Hassanation
  • 866
  • 2
  • 14
  • 29
5
votes
2 answers

Launching a wizard from a button in OpenERP

I'm trying to launch a wizard from an action called from a button in OpenERP. I can launch the wizard using a side menu button just fine, but whenever I use the action in a button, I just get a couple of refreshes, without the new form opening…
Dan Lawson
  • 85
  • 1
  • 5
5
votes
2 answers

Use JFrame instead of JDialog in Netbeans Wizard

I have build an application using the Netbeans Wizard Framework as outlined here and here. I have my application working properly, but the problem I have is that the application does not show in the windows taskbar. I am pretty sure the problem is…
ewok
  • 20,148
  • 51
  • 149
  • 254
5
votes
5 answers

How to catch first time displaying of the WizardPage

I'm writing a little wizard for Eclipse with some pages and I need to catch the moment of the first time page displaying. I checked constructor and createControl but they are called in the creation moment in the Wizard object (addPages). Is there a…
morbilli
  • 99
  • 8
4
votes
2 answers

Use local IWizard assembly as WizardExtension in Project Template

I have a very simple IWizard implementation with sole the purpose of adding a parameter variable to the dictionary (no user interaction is required). I don't want to have to add this to the GAC if possible. I placed the dll in the root of the…
4
votes
2 answers

Validating wizard pages with Spring 3

I started researching how to create a controller for a wizard-like form in Spring and came across the AbstractWizardFormController, which I quickly noticed was deprecated. I then dug a bit further and found how to accomplish something similar with…
Ryan Lewis
  • 365
  • 6
  • 15
4
votes
1 answer

How to stop WiXUI flickering

I've been playing around WiX lately, and I have found that WiXUI wizard is not flicker-free. When you click "Next" to advance to the next step in the wizard, the wizard window is actually destroyed and then a new window is created with the next…
Paya
  • 5,124
  • 4
  • 45
  • 71
4
votes
1 answer

form group in wizard (check validation of some elements)

I have a 2 steps wizard with a form group in it, and in first step on clicking next page button i want to check the validity of that formgroup elements those are in first step. my question is : 1 - is it better to use 2 different forms in every…
Fateme Fazli
  • 11,582
  • 2
  • 31
  • 48
4
votes
1 answer

Eclipse plug-in: add controls to WizardNewProjectCreationPage

I was wondering if it is possible to add additional controls to the WizardNewProjectCreationPage. At this point it only has controls for a project name and location. I would like to keep these and add more to it. I have seen the createControl method…
nbz
  • 3,806
  • 3
  • 28
  • 56
4
votes
1 answer

How to keep temp files over requests in Rails?

In my Rails application users can upload Excel files. In my model there is a class ImportFile that uses attachment_fu like this: class ImportFile < ActiveRecord::Base has_attachment :storage => :file_system, :path_prefix => 'public/imports',…
Tomasz Kalkosiński
  • 3,673
  • 1
  • 19
  • 25