wizard

URL flow when writing a wizard in PHP

Hello, I am writing a basic wizard for my web site. It will have 4 steps, and each needs to have its own URL. Each step must first validate a form before moving on. If the form for a given step fails to validate, I don't want the URL to change. But if it passes, I do want it to move on. What is the preferred way to write this? Usi...

Clearing forward entries in NavigationService

I have a small sample application hosted in WPF NavigationWindow. It has three pages (A, B, C) and three buttons are available to the user: Back and Forward on Navigation Window and Next on the first page. The first page A contains two radio buttons. Depending which button has been selected by the user Next button will navigate to page...

Is there any substitution to wizard control in asp.net?

we can attain the same effect using tables what is the benefit of wizard control over them ...

how to use layout templat in asp.net wizard control?

i have read somewhere about using layout template in asp.net wizard control but when iam using the same in my code a parser error is generated 'System.Web.UI.WebControls.Wizard' does not have a public property named 'LayoutTemplate'. is there any way to solve this or is it true that it is not possible to use layout template in wizard c...

Wizard control does not work

I'm new to the ASP.NET's Wizard control and couldn't make it work. I guess there is a minor issue in the code that prevent the wizard from displaying. Here is the code snippet that I put inside a server form. <asp:Wizard id="Wizard1" runat="server" > <asp:WizardSteps> <asp:WizardStep runat="server" id="firstStep" Title="First s...

How to create a step by step wizard in C++ (with unmanaged code) in Visual Studio 2010

I would like to build a small wizard in C++ with no dependencies on any framework. Apparently, is really simple, but I don't know where to start. Can you point me to good information (tutorials, etc) on it. Should I use MFC Application or a Win32 project? Is there any step by step guide ? I'm using VS 2010. The majority of info I'd f...

Rails: Multi-Step New User Signup Form (FSM?)

I've read the "Create Multi-Step Wizard" in Advanced Rails Recipes. I've also read and re-read the documentation for the updated FSM I'm using called Workflow, and looked here and here. The Advanced Rails Recipe focuses on records (quizzes) that already exist, and doesn't cover creating new ones. The Workflow docs don't cover any code fo...

Managing Many to Many relationships in asp.net Wizard Control

Say I have this entity with a lot of attributes. In the input form I have decided to implement a wizard control so I can collect information about this entity in several steps. The problem is that I need to collect information that has been modeled has many to many relationships. I am planning to use a telerik gridview to manage this (...

How can I get the Visual Studio 2010 converstion wizard to come back up?

When I first opened my website project with Visual Studio 2010 the conversion wizard came up and I said that I didn't want to convert the project. Now I'm ready to convert the project, but I can't find a shortcut or a way to get it back? I tried to remove the suo file, and that didn't do it. If I go into the project properties I can s...

Hide button on asp.net wizard

Hi im using asp.net wizard, and im tryng to hide the next button on some cases. My problem is that I can't seem to fin the button using WizardFindControl("") it always return null ...

Databound Listbox in Wizard loses selections on page change

I downloaded the source code from this tutorial after a failed attempt to make my own Wizard. The control works great and is integrating nicely into my program. I have one minor problem, though. I have a page that has both a databound ListBox and a databound TreeView. When changing to the next or previous page, the TreeView maintains its...

validating user's input in wizard control

i am using a wizard control with few textboxes in it and i want to validate them how to do? ...

ATL "Implement interface wizard"

I created ATL COM-server in VC++ 2005. I want to realize some interface defined in some library (*.olb). I know I will see the interface if I #import this olb (in .tlh.tli). But I cannot create stub realization for the interface with "Implement interface wizard" because this interface is absent in "Interfaces" list (both for "Registry" a...

How can I determine whether or not to add project items using IWizard?

Hi, I am generating entity wrappers in VS2010 based on dynamic objects in a CRM system. In addition to the entity code, I want to add an EntityBase of which all entities inherit from. If the file exists in the project from before, it should not be added. I am using an IWizard implementation to give the generator the object names etc. Is...

Inno Setup: creating custom wizard page AFTER component selection

I'm building an installer in Inno Setup. The installed software is a web application server, it checks whether port 80 is free, if it is taken, then it prompts user for another port to use for the web server. I want this to be shown on a custom wizard page, just before file copying. The reason is that it is possible that the user has no...

Control variable in add member variable wizard is disabled. Why?

Hi I have a MFC dialog derived from CMyDialog (is a CDialog) and try to add a control with the "add member variable wizard". But the checkbox "control variable" is grayed out. Any ideas what the problem is? For example: I have a edit control and want to add a int variable with lower and upper border (min and max value). I need to chec...

JQuery Stops working on ASPX Wizard page

I have a ASPX wizard that I need to use JQuery to manipulate some of the CSS styles. For example if a certain criteria is met it will hide a button - $("input[value='Continue']").css("display", "none"). This works great on the first page, but subsequent pages (loaded as controls - ASCX) don't work. The wizard doesn't load a new page ...

Delphi 7 Personal: class wizard extension?

Hi, I'm wondering if there's any class wizard extension (maybe GExperts extension?) for Delphi 7 Personal? The most important feature for me is to automatically generate properties getters / setters... ...

Does a asp:Wizard have to output a html table? I want it to output a simple div tag

Does a asp:Wizard have to output a html table? I want it to output a simple div tag ...

control inside Wizard <StepNavigationTemplate> tag isn't available in code-behind?

I put a Literal control in the tag in the Wizard control. In the codebehind, I can't access that control. Why is that? ...