Software Development Network Logo
  • Architecture
  • SQL Server
  • VS Express Editions
  • Windows Live
  • .NET Development
  • Visual Studio
  • Visual C++
  • Windows Vista
  • Game Technologies
  • Smart Device
  • Visual J#
  • Visual Basic
  • Visual FoxPro
  • Visual C#
  • VS Team System

Software Development Network >> Windows Vista

Windows Vista

New Question

Problems with WaitForxxx activities
Problems with Visual Studio 2005 Extensions for WinFX in Vista
state machine workflow desginer
How to access the fields of the enclosing activity?
resolution in directshow
SDK version questions
FaultHandler on State Machine (Beta 2)
Vista 5308
ExternalDataExchangeService's method InterceptService does not find explicit interface events
Hosting designer on an asp.net application

Top Answerers

TFM
Nick Tompson
dPradeep
cookie24
ChrisKoenig
Uncle Buck
Igor_Bsa
PETRU ROTARIU
Marc M
Nile
TREX - Tree Regular Expressions for
Only Title

Answer Questions

  • Steve Perry Inheriting from StateMachineWorkflowActivity

    Hi all, I'm wanting to supply all child state workflows with common props + methods. I'm looking into inheriting from StateMachineWorkflowActivity. All goes well except....(there's always a 'but') 1) when creating the 'parent activity' - e.g. class CoreWorkflow : StateMachineWorkflowActivity That project wont compile as it needs an initial starting state. I've tried a few fudges that 'sort of' work - but nothing I feel confident with ...Show All

  • NaturalInterface Problems with state persistence and timer services

    Hi, I've experimented with adding the SQL state, timer and tracking services to the Lab1 sample step 4 (the expense report approval workflow). The tracking service works fine, but it seems that the state and timer services get the engine stuck on the ListenForManagerApproval activity. If I disable the state and timer services the workflow unfolds as expected. I use the (really cool) Workflow Monitor sample to view the results, and the progress ...Show All

  • Michael Kariv ASP.NET And a State Machine Workflow

    I recently read the MSDN magazine article, Windows Workflow Foundation, Part 2 (http://msdn.microsoft.com/msdnmag/issues/06/04/CuttingEdge/), where Dino Esposito demonstrates how to work with workflows in ASP.NET. Dinos' demonstration provides a helpful solution to working with Sequential workflows; however, it left me a little confused with how to work with a State Machine workflow. In the article, Dino demonstrates how to pass parame ...Show All

  • MarkWilson Certificate for Signdigitally?

    Can an example be given of how to properly use makecert.exe to create a .cer file for use with Signdigitally I'm using the code from Bob Watson's article: void SignDocument(string srcXpsDocument, string certFilename) { XpsDocument document = new XpsDocument(srcXpsDocument, FileAccess.ReadWrite); X509Certificate certificate = X509Certificate.CreateFromCertFile(certFilename); document.SignDigitally(certificate, true, XpsDigSig ...Show All

  • John UK How to troubleshoot custom designer for sequential workflow

    Hello, In the post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=160891&SiteID=1 , Arjun describes how to define a custom designer for a sequential workflow.  As noted in that post, I've tried to imitate Arjun's steps but my custom designer does not appear to be loading.  I'm reposting the following to hopefully get some visibility: I've tried overriding the HelpText and ShowSmartTag properties but I don't see any change to ...Show All

  • Rainman86 regsvr32 in Windows Vista

    Hello, We are migrating an ActiveX application to Windows Vista. When registering its .ocx file using regsvr32 fails with message: "Microsoft Register server stopped working and must be closed". The version we are testing with is Beta 1 Build 5112. This .ocx works fine with any Windows predecessors. Is there any issue with regsvr32 in Windows Vista or any further information reference for regsvr32 that we could look to to try and identify th ...Show All

  • KevinBooth Using data objects from database for holding Workflow/Activity-Properties

    Hello, we are building a end-userfriendly workflow engine (with own designer) (see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=265499&SiteID=1 ) I have only on question (at the moment). Our activities have some properties, all workflows are derived from our own base workflow (with some properties, for example a workflow object which is sent through the whole workflow). The workflow object is used in IfElseActivities. ...Show All

  • wsauer GdiPlusEffects.h missing in February 2006 SDK

    I downloaded the new Feb CTP Windows SDK and the compiler complains about missing GdiPlusEffects.h. This file is included conditionaly when GDI+ version at least 1.1 is detected. Where can this file be found The workaround is to edit GdiPlus.h and change the GDIPVER from 0x0110 to 0x0100: // Define the Current GDIPlus Version #ifndef GDIPVER #define GDIPVER 0x0100 #endif Thank you Steve, I am satisfied wi ...Show All

  • mcm_ham Exchanging parameter enter the state machine workflow and the host application (web)

    Hello, I want to pass paremeters to the different states in the state machine workflow with event driven . Can I do it with the raising event method... if it's possible, how Or should I utlize the custom read/write activity,knowing that this activity is compatible with the Beta 1 version and I am working with the beta 2 version. Thanks in advance Hello Maalool, if you want to do something like the described ...Show All

  • Nick111 Interrupt State execution in State Machine workflow

    Is there a way for an EventDriven or StateInitialization activity to be interrupted by another event, say, another EventDriven activity in the same state I've got a StateMachine workflow where each state performs some processing, either in a StateInitialization or an EventDriven activity. This processing can take some time and there is a requirement that the user should be able to cancel this processing and jump to another state at any time. I ...Show All

  • Andray Siletsky Service events missing event handlers? - [code included].

    "In Beta2, when you add a service to the ExternalDataExchangeService, the events are assigned event handlers that, when invoked, enqueue a message onto the workflow queue created by the HandleExternalEventActivity." I'm not seeing my HandleExternalEventActivity getting invoked and I believe it might be because the initialization step in the workflow creation is not creating these handlers for me. So my event sin ...Show All

  • Tore Birkeland Running Web Service in ASP.NET

    To All: I was using the ASP.NET example posting the first/second name and was successful. I tried to change the worflow to one that has an activity with a web service that was tested successfully in the console application. When trying to run it in the ASP.NET page, it loads up everything but does not hit the completed area on the Activity. Code Snippet follows. This is the default Code-behind(beside) public partial cl ...Show All

  • jung1975 workflow class property problem

    When I add a property that return the current workflow instance ID in my workflow class, the workflow program will throw an exception : public string CurrentInstanceID { get { return this.WorkflowInstanceID.ToString(); } } Is there anyone know the reason Thanks! Hi, The problem here is that the WorkflowInstanceID property is runtime dependent and will throw if not used there. When you build, this property is called for validation an ...Show All

  • LouLny A better FindExecutable()?

    Hi, i've developed a software to controll windows autostarts. I would like resolve commands to real path. Currently I'm using my own function. But it's not so fast and needs a lot of processor resources. Please, could anybody tell me a windows API/SDK function to resolve following commands to real paths.. explorer.exe -> c:\windows\explorer.exe %systemroot%\notepad -> C:\WINDOWS\Notepad.exe etc... thanks a lot ...Show All

  • Josh Korn at Diligentsia Where can I get the WWF Beta 2.2 tracking database?

    Tom, According to the MS documentation, changes were made to the tracking database stored procedures, in WWF Beta 2.2. Where can I get the sql to update my tracking database from Beta 2.0 to Beta 2.2 I have already installed WWF Beta 2.2, but the database stored procedures are not updated I look forward to hearing from you soon. Thanks in advance, John Portnov The new sql scripts can be found under %WINDIR%\WinFX\v3.0\W ...Show All

293031323334353637383940414243444546

©2008 Software Development Network

powered by phorum