wizard

C# equivalent of the C++ custom project Wizard

Hi., I have an existing wizard template created for VC++ from year back, ported to VS2008. It uses the custom wizard jscript/html templating system and DTE object. I've used this successfully for years, but now I want to create an entry for a standard C# project, I see there's no way to customise the C# project settings - the methods a...

Toolkit / webservice which allows creation of drag-drop wizard creation?

Descritpion of backend: a workspace where users can create "nodes". Each node can be an "info node" or a "choice node". Info nodes just contain information. Choice nodes present a set of choices for the user to select from. The user should be able to easily "link" a choice in a "choice node" to another node. Desc of frontend: When being...

Good patterns for building a wizard?

I usually use a TabControl and somehow hide the tabs and navigate through them. I am curious about other ways of doing this!!! ...

Google analytics and asp.net wizard control

Hi! I want to use Google Analytics on my asp.net website and I need to track conversion for a goal that I have setup in GA. I need to see the funnel, the pages leading to the goal. The problem is that these pages are actually the steps of a asp.net wizard control. What is the best way to track each step of the wizard control as individu...

How to use wizardSelectionPage of Jface?

Hello, I am designing a application where in need to call a wizard depending upon the selection in the first page. I'm not getting how to use WizardSelectionPage. So if anyone knows this please help me. Thanks Raj eshwa ...

Code that Worked with MultiView fails with Wizard ASP.NET

I originally created a process that occurred by transitioning between views in a multiview and it worked fine. Now, I've moved this same code into a ASP.NET Wizard and it keeps throwing an error at the second step. The error is: Method 'System.Object AndObject(System.Object, System.Object)' has no supported translation to SQL. Any ideas ...

Is there a way to see which Project Wizard was used to create a given Eclipse Project?

Every time I start working on a new J2EE web application, I need to create the various Eclipse projects that I'll fill up. This includes the top-level project that generates the EAR, a WAR project, etc. I usually only have to do this every couple of months, so I never remember the exact steps - specifically, which Eclipse Project Wizards...

ClientResponse.Timer does not work if the first page is skipped in Sitecore Wizard

So I have private void BeginSynchronization() { JobOptions options = new JobOptions("X", "Y", Sitecore.Context.Site.Name, this, "Synchronize"); Job job = JobManager.Start(options); JobHandle.Value = job.Handle.ToString(); // start client pipeline to check progress Sitecore.Context.ClientPa...

how to create wizard forms in ruby on rails

I'm trying to understand the best options for pulling off a wizard form in ruby on rails. Ideally I'd like to have it so the application signup has a back and next button that allows the user to submit data in steps. So in step 1 they could fill out contact info. Once they are done they could click next and be on step 2 to fill out paym...

Can't finish Eclipse Plug-in Project Wizard when choosing RCP

I'm trying create a RCP Application with Eclipse, but I can't get past the 'Content' screen of the New Plug-in Project Wizard. When I select 'yes' for "Rich Client Application, Would you like to create a rich client application" it disables the Next and the Finish Button. I first thought it is due to my target platform which is Eclips...

Session Variable Not Being Saved When Using Wizard Control ASP.NET

I have a wizard control. When someone clicks a button within the wizard control I automatically advance to the next step (rather than forcing them to click next). However, this seems to cause the session state variable not to be saved. I've done some research and noticed that Response.Redirect does hard redirects that truncate page execu...

Session Variable Not Being Updated? ASP.NET

I have a three step wizard. On the first step I use a repeater to create a series of buttons that an individual can select from. When the user selects one of the buttons the value of the button is saved to session state. They are taken to the next step and shown a similar list of buttons that are based on what they previously selected. T...

SharePoint: Can't Connect to a Configuration Database When Using Configuration Wizard

Hello everyone. I wonder if you could help me with the following problem: We have a SharePoint farm consisted of two servers with an NLB (a load balancer), a database server and an index server (4 servers in total). The issues initially appeared when we were trying to change Search settings via Shared services provider and an error was ...

Wizard view for iPhone application

I want to implement a wizard view that have to apply the following requirements: several steps (configurable) each step has to be a stand-alone UIView back, previous, finish buttons indicator that must show on each step we are It must not be some navigation-style implementation (using UINavigationController) just view which I can pl...

ASP.NET/Paypal: PayPal Integration Wizard?

I'm currently trying my luck to integrate PayPal in ASP.NET (I'm just starting to know more about PayPal, okay?) PayPal Integration Wizard. Hmmm. Does this even work? What are your thoughts/comments/suggestions about it? Any good implementation (in ASP.NET) you could share? ...

SQL Server 2005 Copy Database Wizard keeps failing

Hi, I am just trying to copy a database from one server to another one... on the same domain. I use the Copy DB Wizard and set up everything correctly but it keeps failing. Is something wrong with the Wizard or just me missing something? ...

Asp.net Wizard Control with Dynamic Steps gets stuck

I have a wizard control which must use dynamic steps in. I have the following code which loads the dynamic steps (this all works fine). I have 7 static steps. protected override LoadViewState(object savedState) { base.LoadViewState(savedState); int offset = 4; foreach(string stepName in this.ViewState["Steps"]) { ...

ASP wizard browser back button

Hi. I used asp wizard with updatepanel and google map (it works great). Wizard has 3 steps - all work's great, but when i click browser back button steps changed and i lose all previous information. When i click wizard previouse button - i can see my information. i try this: http://dotnetslackers.com/articles/ajax/HandlingTheBackButton...

How do I design a Wizard-based system with SoC in mind?

I'm building a Windows Forms system (in C# if it matters to anyone) that provides an application automation service. As this application is targeted at users who are not computer savvy, I've decided to simplify things for the user with a wizard UI. I'd like to avoid coupling the views and view engine (from which the Wizard will be built)...

Show Visual Studio's Source Control Merge Wizard programmatically

Hi, I'm developing a Work item Custom Control and I need to use the standard VS's Merge Wizard for items in source control from my code to allow to user choose the target branch, resolve conflicts etc. I'm pretty sure it's possible in some way (even through the reflection), but I just can't find the proper class in any of VS client assem...