Software Development Network Logo
  • SharePoint Products
  • Visual C#
  • VS Team System
  • Windows Forms
  • Microsoft ISV
  • Visual C++
  • Audio and Video
  • Visual FoxPro
  • Visual Basic
  • Windows Vista
  • .NET Development
  • Smart Devicet
  • Game Technologies
  • IE Development
  • Visual Studio

Software Development Network >> Windows Vista

Windows Vista

New Question

Tracking EventArgs for HandleExternalEvent Activities
Handling events when hosting workflow in ASP.Net or a remote object
Copy File to System32\Drivers
Visual Studio 2005 Workflow Designer slow responsive
NetUserEnum call fails on vista when going across domains
listening to internal events
Problems uninstalling a program on vista Premium
How to use Oracle 9i with TransactionScope in .Net 2.0
Campaign using workflow
Multi-Cast Streaming MPEG-4 video over a network

Top Answerers

Dvlnblk
JiltedCitizen
TheTheTheTheTheThe
Young K
Andy Ho
Mark Visneskie
UPV_Team
dethomps
ramneek
eggie5
sitemap
Only Title

Answer Questions

  • EileenWin Adding services from an activity

    Is it possible to add a service from an activity . Is there any way to access the runtime I would like to develop an activity so that all the logic is encapsulated in itself (I don't want to ask users to add services in the host). So it would be nice to have an activity that can add the services it needs dynamically (if they were not previouslly added) Any idea Thanks guys for your time. When you say that is not possible to add services after the runtime was started is because doing it can cause some unexpected behavior I mean, I can do the following without any exceptions being throwed, and adding more services to the dataService works. workflowRuntime.StartRuntime(); ExternalDataEx ...Show All

  • Jade Skaggs HTMLHelp context popups

    Sorry if this is slightly off-topic, but it is 'Vista UI Development' related. On versions of Windows prior to Vista, HTMLHelp's context popup windows have a 'translucent' drop shadow, albeit that it's achieved by a dot screen. Under Vista (RC1) the drop shadow appears to be opaque and black! To my eyes this is ugly, and out of keeping with Vista's emphasis on translucency, particularly Aero Glass. Are there any flags or settings that can improve the appearance of HTMLHelp popups Failing that might the appearance improve in a future version HTMLHelp is supposed to be the preferred Vista-compatible solution for context help. Richard. FYI: Vista Winhelp RTM delayed until late Febrary ...Show All

  • Missouri Mule Error when using the Live Labs STS

    Hello: I'm trying to use the Live Labs STS, however I'm getting an error when I try to use the issued managed card. 1) I was able to generate the card your site 2) I was able to import the card 3) When I try to signin in the Live Labs Relay, the CardSpaces UI appears correctly. 4) I'm able to choose the card. 5) The CardSpace correcly prompts me for the password (it was a password based managed card) 6) ERROR: i) The CardSpace UI notifies me with this error message: Your data could not be retrieved from the (...). Check your network connection and verify you have supplied the correct authentication credentials ii) There are two events in the Application Event Log 1) A token could not be created. Identity provider requested for an un ...Show All

  • JFoushee Speech

    My OS is Vista 5600 English. How I use the Chinese Voice Engine "Microsoft Lili" on my OS ...Show All

  • OlderDog Significance of Unlock flag in 'WorkflowPersistenceService' ??

    Hi, I'm currently analysing the use of 'unlock' flag provided in the 'WorkflowPersistenceService' class.As I would like to write a 'Custom' Persistence service. protected override void SaveWorkflowInstanceState(System.Workflow.ComponentModel. Activity rootActivity, bool unlock ) Observations: 1)I always see that unlock is set to true whenever the above method is called to persist an instance. 2)Also the SQL stored proc's provided in the labs handle two cases for 'Unlocked' =0 &'Unlocked'=1...Why is it so 3)As far as my understanding goes this flag means that an instance is being unloaded from the memory and is hence unlocked,so the flag is always set as 'true'....with this assumption why are the procedu ...Show All

  • DTHMTLGOD Activity to handle SQL Trigger firing

    Hello, Does anyone have a recommended best practice for how a workflow should "watch for" the event of a SQL (2005) trigger's firing -- rather like the FileWatcher sample Or better, perhaps a code sample Thanks in advance for your thoughts. John Hi, If you want to know about inserts with the SqlDependency you could just monitor a "Select Count(*) From <Table>". This way you get a notification of any insert or delete action. But then the approach using SQL Service Broker would work just fine :-) Maurice Using SQL 2005 you can use the SqlDependency class. The best approach would be to create an external service that use the SqlDepen ...Show All

  • ravindra_pn .NET COM+ - "Error when enlisting in a distributed transaction"

    Hi, I developed a .NET serviced component with Framework .NET 1.1, instaled it in a win2k SP4 server (COM+ 1.0) and marked that component with Transactions=Required. This application server communicates with a SQL Server 2000 SP3 database server inside the same subnet/domain. When a simple select query is run under the .NET Serviced component, i got the message: "Error when enlisting in a distributed transaction" The COM+ package that hosts this component has an ActivationOption=Library and has the options "Enforce Access Checks for this Application" and "Enable Authentication" marked as false. The component is created from a ASP.NET webform using ASPNET user credentials ... this user is a member o ...Show All

  • Anth0ny Textpattern giving exception by UIAutomation on AMD64

    I am using Mita to do some development, which is dependent on UI Automation. MitaSpy exposes properties of my control as ControlType.Document and supported patterns as Scroll. The classname being displayed as richedit. The control doesn't support the text pattern. This is occuring only on a amd64 machine and not on a x86 machine with ws03 OS . Exception: ******** <Exception Type='PatternNotFoundException' hash='19515494'> <Message Type='String'>The pattern &apos;TextPattern&apos; was not found on the UIObject &apos;{Certificate status, RICHEDIT, 42.590260}&apos;</Message> <Data Type='ListDictionaryInternal' Count='0' hash='41421720'> ********** Is there any way to read the conten ...Show All

  • JohnnyP34 Activity custom drawing does not work

    Hi, I have written the custom activity code shown below. It should show a red line drawn across the activity rectangle. However, the line is not drawn. The activity appears as a white rectangle. Can someone please explain how I can completely control the drawing of my activities I have looked at the WorkflowDesignerControl example from MSDN. It seems to also do no more than overwriting the Paint event. Regards, Mario [ Designer ( typeof ( PanedActivityDesigner ), typeof ( IDesigner ))] public class PanedActivity : System.Workflow.ComponentModel. Activity { } public class PanedActivityDesigner : System.Workflow.ComponentModel.Design. ActivityDesigner { protected override void OnPaint( A ...Show All

  • Computer-Desk Vista built-in partitioning flawed?

    I can't seem to get ...Show All

  • JimmyDin10SC Cannot access a disposed object.Object name: 'WorkflowRuntime'. - Error in Workflow with Xaml activation

    Hi all, I have a problem when I am starting instance of WorkflowRuntime. Public Sub IntiateRegisterPatientWorkflow( ByVal instanceId As String , ByVal requestXml As String ) Dim workflowRuntime As WorkflowRuntime = CType (HttpContext.Current.Cache(WorkflowRuntimeCacheKey), WorkflowRuntime) If workflowRuntime Is Nothing Then workflowRuntime = New WorkflowRuntime HttpContext.Current.Cache(WorkflowRuntimeCacheKey) = workflowRuntime workflowRuntime.StartRuntime() End If Dim objRegistrationInputParameters As Dictionary( Of String , Object ) = New Dictionary( Of String , Object ) Me ._wfRegistrationRequest = requestXml Me ._wfInstanceID = instanceId Dim ...Show All

  • Evan Haklar In July CTP, using StateMachineWorkflowInstance to obtain CurrentState freezes workflows in that State

    Dear all, I have a working StateMachineWorkflow hosted under asp.net 2.0. I have written a simple routine (shown below) to interrogate the current state of a workflowinstance: public string WfCurrentStateDescription(string WorkflowInstanceId) { // Get the workflowRuntime which was started in global.asax WorkflowRuntime wfRuntime = (WorkflowRuntime)Application[WorkflowRuntimeKey]; StateMachineWorkflowInstance wfInst = new StateMachineWorkflowInstance(wfRuntime, new Guid(WorkflowInstanceId)); return wfInst.CurrentState.Description; } I find that, once I have called this on a workflowinstance, that instance gets "stuck" in the current state and never transitions to the next state, even though code appears to get c ...Show All

  • R.Tutus Vista DVD Maker

    Having trouble using the DVD maker software, as soon as I select burn get a 'run out of memory' message. Anyone come across this and know how to fix. The machine has 2GB ram and no other applications are running. im afraid these are the incorrect forums to post your technical query. Best place to ask would be the appropriate communities: www.microsoft.com/communities Thanks! ...Show All

  • Foxtrot_Xray problems with hp dvd writer after installing windows vista

    Hi I've got a hp dvd writer 300n ATA and it hasnt worked since installing vista (it doesnt show up in computer) I can get into properties of the drive and I've got this error message: Windows cannot start this hardware device because its configuration information (in the registry) is incomplete or damaged. (Code 19) Click 'Check for solutions' to send data about this device to Microsoft and to see if there is a solution available. and when i click on check for solutions this comes up Description: Windows was able to successfully install device driver software, but the driver software encountered a problem when it tried to run. The problem code is 19. Files that help describe the problem: C:\Users\christopher_2\AppData\Local\Temp\DMI ...Show All

  • ps1terry Entry point not defined

    Hi people. Im using source code from a microsoft self paced book(70320) to create and consume a component (com+) when I try to build the project I get the following message: Program 'C:\EC70320\BankAccounts\obj\Debug\BankAccounts.exe' does not have an entry point defined I've created the snk file using the Sn.exe tool and here is the source code, im not sure where im going wrong using System; using System.Reflection; using System.Data; using System.Data.SqlClient; using System.EnterpriseServices; using System.Collections; using System.Windows.Forms; [assembly: AssemblyKeyFile("..\\..\\MyKey.snk")] // Delete the AssemblyKeyFile from the AssembleInfo.cs file // which VS cre ...Show All

5678910111213141516171819202122

©2008 Software Development Network

powered by phorum