wizard

Data import wizard library for .Net?

Does anyone know of a 3rd party data import wizard that can be embedded into applications? It should import from Excel, Access, SQLServer, csv, tab-separated flat file, XML, Oracle etc. We have a fixed data structure within our application and the user should be able to configure the wizard to match his/her import fields to our own data ...

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 ASP.NET MVC. I am wondering what design pattern would be best suited to implement the l...

Sql datasource wizard problem

hi guys i have an error with sqldatasource. When i click sqldatasource's updatequery property visual studio give an error: Microsoft Visual Studio Could not load file or assembly 'C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\%DXROOT%\ProductionTools\BuildComponents.dll' or one of its dependencies. The system cannot find ...

Need a form wizard technology that is configurable without programming

I need a forms technology similar to MS InfoPath or Adobe LiveCycle Forms ES in that it has an XML data structure, is compatible with ASP.NET, renders in a browser, and is easily configurable by non technical office worker types. TurboTax Online is a good example of the type of functionality I have in mind. The missing piece that I ha...

Custom Wizard: Is it possible to add a dll reference to a project on creation from a custom wizard?

Hello, I was wondering if anyone could tell me if what I'm trying to accomplish is possible. I am using C# in VS 2008. I have two project templates and another template which links the two projects and calls their templates. The first project is a user control and the second is a test app that needs to reference the user control. I ...

Wizard Control in ASP.NET - How to set the NextButton Causesvalidation property to false

I have tried setting it in the code and also in the markup but when the Next Button is clicked, the page is validated, I want to prevnt this from happening and control when validation should occur and when not. Any suggestions or code samples would be appreciated ...

wizard that create code in multiple programming languages

Hello all as part of our application i need to build component that will output code in php and asp that have the same functionality ( and maybe latter jsp ) . how can i design this kind of component to be generic as possible ? ...

In Memory INI File Writer

Hello, I have an MFC app which is wizard based. The App asks a user a variable number of questions which are then written to an INI file which is later encrypted when the user clicks Finish. All the INI file parsers I have seen so far seen read or write to a physical file on Disk. I don't want to do this as the INI file contains con...

Dotnetnuke popup login control with the modalpopupextender

I'm trying to create a modal popup login control for dnn using the ModalPopupExtender in the AjaxToolkit. An issue that I'm running into is that when I click the "Login" button on the popup login form, if the login fails for some reason or if the user needs to update some information before moving on, the modal popup is cleared and the u...

Disable Visual Studio 2008 Conversion Wizard for VSTO

Is it possible to deactivate the VS 2008 conversion wizard. I want to open a solution that contains VSTO project for Office 2003 and I don't want them to be converted when I open the solution on a PC with Office 2007. ...

Visual Studio 2008. MFC event wizard broken

OK, so it's almost a programming question - The VS2008 dialog event wizard has stopped working. Double-clicking on a button in an MFC dialog project does not fire the wizard as usual and a right-click to get to the 'Add Event Handler...' shows a dialog with no message types. Further to this the MFC message mapping and virtual class li...

Postback problem for my custom control load wizard

I have some problem that happens when controls are loaded in init and it still doesn't help me to get proper postback event fired on time. I am trying to create a rich wizard control that will enable switching, links with description, completely customized steps, integration of substeps - by using dynamic control load that is avoids sta...

HOWTO: Multistep web form

Is there any asp.net framework to build multistep (aka wizard) web forms that require validation (may be dynamic validation, based on data submitted), accessibility, ecc. ? Thanks! Marco ...

Make a wizard like application in Android

Which you think is the best way of doing a wizard like application (user can navigate between screens with a next and back button, and each screen has to save some state data) in Android platform. I mainly can think in two approaches: Having one activity+view for each screen and then i make the screen switch by calling each activity. ...

Visual Studio 2005 Setup Wizard - creating desktop shortcuts for all users

I'm using the setup wizard project to create an msi installer for a Windows Forms application. I've configured it to install a desktop shortcut, but unfortunately it only puts a shortcut on the desktop of user running the installer. Is there any way to configure it to put shortcuts on the desktops of all users? ...

Reducing a large single page AJAX application (jQuery, ASP.net)

I'm currently building a single page AJAX application. It's a large "sign-up form" that's been built as a multi-step wizard with multiple branches and different verbiage based on what choices the user makes. At the end of the form is an editable review page. Once the user submits the form, it sends a rather large email to us, and a small...

How to convert TabControl into wizard style in .NET?

I want to have my form in a wizard style and so I used TabControl to have the pages of the Wizard as my TabPages. There were small issues to be corrected, such as, making the tabs being displayed in runtime. I inherited the TabControl and I added a property called "TabsVisible" and corrected it. It worked fine. (See : http://dotnetrix.co...

Strange behaviour with asp.net wizard control

I have a wizard control on a page which has numerous steps with a button to save the options entered on the wizard. When this save button is clicked I'm adding the ActiveStepIndex to sessionstate, then skipping the wizard to the penultimate page (which has StepType="Complete") to show a message saying that the data has been saved. On t...

CreateUserWizard Roles

OK, so I am having trouble with adding roles with the CreateUserWizard. <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" Font-Size="Medium" ContinueDestinationPageUrl="Default.aspx" LoginCreatedUser="False" DisableCreateUser="False" CompleteSucc...

Using the MVC, MVP or MVVM pattern for a wizard written in WinForms?

All of the WinForms wizards I've written in the past have a high degree of coupling between the UI and the model. That is: the individual pages know about enabling/disabling the Next/Previous buttons, how to react to the Next button being pressed, etc. It makes it all hard to test, because to test any of the logic, you've got to put a lo...