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

Software Development Network >> Windows Vista

Windows Vista

New Question

Custom serializing of activity properties
About persistence, IEventActivity, Transactions and correlations
PROBLEM with HttpContext.Current
setting custom image for my workflow type
Speed difference between GraphEdit and custom application
what about MSCONFIG on VISTA?
error indicator for the customized activities in the designer is not visible
WWP GUI design
A small help!!
There is Event When Server is failed (WCF)

Top Answerers

CodePrince
Shehnaz
Brian Combs MSFT
Randude
Lars Koewing
Gianluigi B.
Olivier Sanzot
AJB123
Nikolay Shustov
Ashwin Seshadri
Peter Garthe Softwareentwicklung
Only Title

Answer Questions

  • Rubbrecht Philippe Builing SharePoint workflows in VS.

    I know this might not be the right forum, but is there anyone who could tell me where to find the visual studio project template for creating SharePoint Workflows Thanks Mikael The last I heard the templates were not ready yet. A better place to find out would be the newsgroups set up for Office 2007 at http://www.microsoft.com/office/preview/community/newsgroups.mspx . ...Show All

  • AlaaZaghmout Is Vista Help (MAML) Dead?

    I have just heard from a colleague attending a popular technical writing conference (UA) that the "buzz" around the conference is "MAML is Dead". Microsoft will not release Vista Help as MAML XML but will continue to require HTML Help (CHM). Through searching the Microsoft web site and MSDN, I can not find a reference to this fact. From where did this information originate Anyone out there hear or read this information ...Show All

  • kaky Breakpoints not working

    I'm running the February CTP on WinXP SP2 and Visual Studio Pro. I'm running my development environment inside of a Virtual PC VM. The problem that I'm having is that I can create workflows fine, but breakpoints set up on a workflow activity do not work. I see the hollow circle with the warning when running in debug mode. Breakpoints set on the code beside code such as a CodeActivity handler work. I've looked at the other posts on the foru ...Show All

  • g4rc problems communicating with the host

    Hi, I am trying to get host communication working because I need to communicate back to the host if for example, a process will be long running. I've set up a very simple example which raises an event on the host and every time I run it, I get an error: Done Exception has been thrown by the target of an invocation. Press any key to contine The code for my test harness is as follows: #region Using directives using System; using System.Colle ...Show All

  • Rob Selby Beta2 - Breakpoints in designer

    Hi to all, When I set breakpoints on activities on design surface, they don't get hit (and display circle with exclamation mark during debugging session). However breakpoints in code behind of workflow break just fine. Thanks in advance. hi, Well I did follow the steps as you mentioned,but when I create a new Workflow instance I get the an exception when my Workflow host(Windows application) uses the ...Show All

  • Kamardash Boot Configuration Store File, BCDEDIT says i dont have one.

    Hi all, i have a copy of vista on my c partition and XP on the D. Vista seems to be "all there" but i can't get it to load. After scouring the internet for very little info i learned of bcdedt to modify boot up for vista. I read about vista having an additional boot loader that loads first and it can be modded with bcdedit, well i tried to use it and when i run it i get the following error message. " The boot configuration s ...Show All

  • dkworm Is SDK download link broken?

    I have been trying to download the January CTP SDK, but looks like the link is broken. The link for WinFx runtime components is fine, it only the SDK link thats giving the problem. Anyone having a similar problem Steve, just out of curiosity, what download manager did you use Thanks. Hi there, not sure which link is the busted one. There are a few up there. We'll fin ...Show All

  • Anthony Duarte developing application.. do I have to wait?!!

    I am about to start developing an application for Hospital Management and I wanted to know if I have to wait for Windows Vista to be releaed or I can develop it now using VS 2003 on Windows XP.. will be there any major changed in my code if I want to move to Vista You code will work on Vista but if you want to support any of the new innovations in Vista like WinFX, Windows Communication Foundation, and Windows Presentation Foundation, you ...Show All

  • g.vollant native API CreateProcess & redirecting output

    Hi, I'm writting some code in C# that makes use of native API CreateProcess and I'm trying to read console output from cmd.exe. But my code will hang in the Read() function (last line of my sample code). I have no idea what is happening. I've looked at a lot of samples and mine seems to be alright. Any help will be appreciated. Sample Code ---------------------------------------- using System; using System.Collections.Generic; using Sys ...Show All

  • anndy Getting workflow information before the Workflow has run?? (State based)

    hi guys, (We're about to kick a project using WF) To aid us in the UI space, we would like to obtain the following info for each state in our workflow: (1) What state am I in (2) What are my available operations in this state (i.e. approve, reject, abort...) - these are ROLE dependant. (3) What are my next states (that I may go into) - this will aid UI creation greatly. (This may be tied into #2 somehow) As far as I understand, we can only obtai ...Show All

  • windsurfkid Binding an property of activity to a property of a private member

    Hi all, After working through the Hands-on-Lab Authoring Workflows through code, I started authoring my own workflow. The workflow contains a private member of some class type,  The class itself contains members that are classes as well. Say something like: class MyWorkflow : StateMachineWorkflow { ...   private A myA; } class A {   public myB; } class B {   public string myValue; } It's for clearification: pl ...Show All

  • Lester Leonard Go Recording Sequential Workflow State Changes to Enable Backwards Stepping

    Hello I am creating Wizard-like tool that allows a user to step forwards and backwards through a state machine workflow. The workflow itself is only designed with the forwards direction in mind - I want the backwards direction to be handled automatically by my tool (i.e. when the user clicks a [back] button the tool should automatically determine the previous state and then set it to be the current state). I had hoped that the 'StateHistory' pro ...Show All

  • Daniel de Lima general mobile Q: realplayer?!!

    hi, why microsoft dose not have a WIndows Mobile General Forum anyway... can anyone tell me how can I play realplayer on WIndows Mobile for SmartPhone !! Jassim, Thanks for your post. This forum is patrolled by folks who are experts in developing apps that run on Windows Vista mobile devices (e.g. laptops, Tablet PCs). For Windows Mobile and Pocket PC questions, I suggest posting to one of the Pocket PC f ...Show All

  • Chris Du Still issues using generic List as property in beta 2.2?

    I am creating a custom activity with a generic list as a property.  However, I am running into issues with this. In a code separated workflow I get an error in the designer stating "Could not deserialize object.  The type System.Collections.Generic.List x006 1' could not be resolved." The Xaml is at the end of the post.  This works fine in a compiled workflow. I see there where issues using generics in pre-bet ...Show All

  • Pravit Vajiratanakorn Exchange data in state machine scenario

    Hi all, Several samples show how to exchange data between host and workflow: define an interface with DataExhangeService attribute on it, implement the service and add the service to the workflowruntime (of configure in web.config). In my state machine I would like to be able to read and write a dataobject in every state. The object I would like to be able to read and write is passed at startup of the workflow instance as a parameter. ...Show All

888990919293949596979899012345

©2008 Software Development Network

powered by phorum