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

Software Development Network >> Windows Vista

Windows Vista

New Question

TransactionScope
How to access the fields of the enclosing activity?
SqlWorkflowPersistenceService: Exception thrown while persisting instance: The transaction has already been implicitly or explic
Workflow Instance Persistance - and Reload
Windows 2000 Icon Style Guide
Spanning a Transaction Across Workflows
External trigger for workflow initiation
When will this come out to non subscribers?
Vista going to be available through MS Action Pack subscription?
Simple CBaseFilter Question - all appears OK, but no image...

Top Answerers

S.Malathi
Kim Hansen
Mahiways
Jermyh
VJ_AS
Barry Meaker
bt8114
Jeff_S
reklis
Sanchi
Redix
Only Title

Answer Questions

  • Tom Kaminski not able to create globally named objects

    From MS' Windows Vista Soft. Logo doc.: Applications should not depend on globally named objects. Since, globally named objects can be created by any application or service, an application dependent on creating or maintaining such an object could fail. Additionally, a user running under User Access Protection will not be able to create a globally named object. In my app. I created global mutex for a shared resource. If this is not a &quo ...Show All

  • alugos Developing Composite Activity

      Hello, I want to develope a composite activity with an invokemethod and an eventsink. This will use a correlation parameter and my idea it's to set the parameter on the first activity to use it on the second one... How do I develop an activity like this Is there any examples   Regards, M The Expense Reporting sample at http://www.windowsworkflow.net/downloads  has a composit ...Show All

  • Soledad Paredes VIA Drivers

    Trying to install the CTP build and I can't seem to load my VIA SATA drivers from diskette.  They worked in beta 1. Screenshot: http://www.moosoft.com/nodriver.jpg Daniel Sorry, this is a forum for questions about Windows Vista software development. You might want to try one of the Windows Vista newsgroups such as http://www.microsoft.com/windowsvista/newsgroups/default.mspx dg=microsoft.public.longhorn ...Show All

  • Microsoft2006 ASF writer and GMFBridge

    Hi all I am jsut a beginner where direct show is concerned. I have to store video comming from a webcam, in 1 minute lengths and I was thinking of using the GMFBridge to avoid loosing any frames when changing the file! Do you now if it is possible to use the ASF writer with the GMF Bridge, or it has to be an AVI MUX Thanks Etienne Didn't I just answer this question on another thread in this forum ...Show All

  • LordZoster Workflow with Visual Studio Express

    Is it possible to use Win Fx with the Visual 2005 Express versions If this is possible, what can I do what software I need No. Here is the text from the installation point for the February CTP on the supported versions of Visual Studio:   Required Visual Studio Versions: The released version of Visual Studio 2005 is required. The December CTP version of WinFX is NOT compatible with this ve ...Show All

  • lasse Does the "Fill to Actual Size" icon (in the lower-right corner of the designer surface) raise any events when clicked?

    Does the "Fill to Actual Size" icon (that appears in the lower-right corner of the designer surface when the size of the parent app window is restored to something smaller) raise any events when clicked 1. If so, which event of which object(s)   I'm guessing that WorkflowView is the object. 2. Are there any settings to disable the "Fill to Actual Size" icon and its behaviours Michael. The event raised is zoom change. It is not poss ...Show All

  • feilng Correct approach to using Workflow - light or heavy?

    What is the "correct" way to use Workflow: Workflow should be as code-light as possible and only have the bare minimum of code, with the 'meat' in external modules, called from workflow if required. Workflow should contain the code as the process definition is then integrated in one place I like the idea of approach (2) but without experience it's difficult to guess. I am writing an app in which the same workflow process, e.g. Credi ...Show All

  • hampk Visual Studio hangs after WWF 1.2 is installed

    I've just installed WWF 1.2 beta, and now Visual Studio (RTM) appears to hang in an endless loop on startup. I've installed the Windows SDK, WWF platform components, VS WWF extenstions, as well as WinFX and VS WinFX extensions, all in one go. The only visible sign of an error I can find (apart from VS now being broken :) are some entries in the Application event log (something is complaining about a missing assembly, Microsoft.ReportingServices. ...Show All

  • Philip Stuyck Deserialize XAML

      If I have a XAML (XOML) schema how can I deserialize and execute it You can deserialize like: DesignerSerializationManager serializationManager = new DesignerSerializationManager();    using (serializationManager.CreateSession())    {     WorkflowMarkupSerializer serializer = new WorkflowMarkupSerializer();     rootActivity = (IRootActivity)serializer.Deseri ...Show All

  • DougInGeorgia Beta2 Installation problems

    I am trying to install WWF Beta2 (in fact i have been since last Friday). Anyway i manage to load all the components until i attempt to install WWF beta 2 it fails with the message : " the following platform components failed to install and will need to be manually installed before setup can proceed: Windows Workflow Foundation: The installation source for the product is not available. Verify that the source exists and that you can acces ...Show All

  • RandyFriend State Machine Workflow Does not subscribe to events

    I have created a state machine workflow. The state transitions are based on event activites, which listen for events similarly to the method described in the Hands On Lab #4. However, when I call the RaiseEvent functions, the events which they are suppose to raise are null, meaning no one subscribed to listen to them. Has anyone had this happen to them Does anyone know what could be wrong Amanda Did you add ...Show All

  • Sebbie85 Two questions with WorkflowRuntimeService

    Hi all, I'm developping a host program(web server) with WF Beta2.2 version.I have two questions. 1.I want to stop workflowRuntime when the web server is stopped.I used SqlWorkflowPersistenceService.The running workflowInstance can be normally unloaded if i'm not use SqlTrackingService,otherwise it can't be unloaded and system event log will be marked event id 1013 which means that a process serving application pool 'gh' exceeded time l ...Show All

  • freggel Unable to write to reg key

    I am installing Workstation components for sqlserver 2005. When it gets to the sqlxml4 portion, the following dialog popsup: --------------------------- Microsoft SQL Server 2005 Setup --------------------------- Could not delete key \Software\Classes\CLSID\{E3E1D966-0829-48AC-B3AD-C5AE4CA171C4}.   Verify that you have sufficient access to that key, or contact your support personnel. --------------------------- Abort   R ...Show All

  • gmthut i AM LOOKING FOR VISTA BETA 2

    If anyone can help please let me know I was on beta testing cant find all my info I have Beta one versions, Thank you! Sincerely, Eric Powling ERICFX64 wrote: If anyone can help please let me know I was on beta testing cant find all my info I have Beta one versions, Thank you! Sincerely, ...Show All

  • Antoine Savelkoul multi choice pattern

    i'm currently working on an an implementation of the workflow patterns from www.workflowpatterns.com and struggle a bit with the multiple choice pattern. the only way i found in WWF is to use a parallel activity and include an IfElse activity for each OR branch. Is there another way to do it Maybe by setting some hidden muliple choice property of the if else activity to true... thanks in advance benedikt Hi Be ...Show All

8485868788899091929394959697989901

©2008 Software Development Network

powered by phorum