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

Software Development Network >> Windows Vista

Windows Vista

New Question

A Screenshot
Custom popups for NotifyIcon in Vista - how?
Authorization Manager (AzMan) - Scopes
Creating a sharepoint workflow
Automatically Center TextBlocks
elevate(UAC) activeX in vista?
Lost PCMCIA, USBPORT & Register.DLL during Vista Load
Persisting a workflow containing the EmailActivity
WF and Sql Server 2005 Service Broker
What's the WM Asf Writer's "Truncate" property for?

Top Answerers

Can-Ann
magicalclick
kumarvk
rauhanlinnake
GranBosco
LogoC
Tony512
ReneeC
EWGoforth
rcsarp
sitemap
Only Title

Answer Questions

  • peedee loading a workflow instance after changing the workflow

    Hello. I'm having problem loading a workflow instance after my state machine workflow has been changed. The runtime GetWorkflow return an error saying the index is out of bounds. What am I doing wrong Samples for dynamic update can be found here . How are you changing the workflow Are you adding some new workflows and compiling or using dynamic update If compiling, you need to make sure that you increment the version and make sure that the workflow runtime has access to both versions if you have instances based on the original version still running. To update the running instance of the original version you would need to use dynamic update, it is not automatically done. If you are currently using dynamic update can you po ...Show All

  • Sumesh Nair Workflow + Offline + SmartClient

    Hello guys, I'm in the middle of an architecturing project, and basically we are talking about 4 or 5 workflows with some complexity, and integration with 3rd party ERPs. The cath is this: all users are working in different offices, ocassionally connected, so the solution MUST be SmartClient (web is not an option). When they are off the network , they should be able to start a workflow, or to approve some pending, and then when back online, synchronization should occur. The creator can be in one office, it posts to the server for some ERP validation, and then it goes to step 2,and that is another user from another location, and so on. Basically the question is: is it possible with WWF Or it would mean more work than using somethin ...Show All

  • Dan L Writing to Global Shared memory from an Application in Vista.

    Hi all, Global shared memory is created by a service which is used by my user mode application to communicate with the service through global mutexes and events. This as of now works well in Vista RC1. 1) Are there any restrictions that an application should not write to global shared memory already created by service This application does not has any elevated privileges. 2) Can application created global named objects like event and mutex Again the application is running under a standard user privilege and not as admin. 3) Can a 32bit application on a 64bit machine get interfaces to a 64bit Local server COM object Is there any special processing required in the 32bit app or in the 64bit local server COM object. Regards, ...Show All

  • Noah Phense Web Services on Devices - WSDAPI - Wsdcodegen.exe

    Hello, This is a question related to the April Vista Developer Story on Web Services For Devices . The Story talks about the new WSDAPI - a c++ COM library for communicating with network connected devices supporting WSD. The document refers to a tool called "Wsdcodegen.exe" as being a core component of WSDAPI development, to aid in the creation of a WSDAPI proxy service. Unfortunately I have been unable to locate this tool in the Windows SDK or elsewhere. Has any one else had any luck in locating this tool, or barring that, perhaps found a sample of a manually created service using WSDAPI Thank you for any assistance you might be able to provide. Cheers, Scott Bailey ...Show All

  • Denis Pitcher DoubleAnimation.duration Not Accessable at Runtime

    Is this a bug or a feature I have an animation on a video player sample I am working on. What I am trying to do is create an animation that moves a thumb object from left to right as the video plays. So I registered for the MediaOpened event and I tried this: function theMediaOpened(sender, args) { var thumbAnimation = sender.findName("thumbAnimation"); thumbAnimation.duration.seconds = sender.naturalDuration.seconds; thumbAnimation.begin(); } The thumbAnimation is a DoubleAnimation. The problem is that thumbAnimation.duration doesn't resolve to anything. Ideas I would try to set thumbAnimation.duration directly by converting naturalDuration to a string. Something to the effect of: // assuming naturalDurat ...Show All

  • Srdjan About Windows SDK's Installation's Issue

    Hi, Today I tried to setup 'MicrosoftR WindowsR Software Development Kit for Windows Vista and .NET Framework 3.0 Runtime Components', but it fails. The operating system is Win2003 Enterprise with SP1. The date published of .NET Framework 3.0,which was already setupped into the computer, is 11/21/2006. The computer was also setupped about .NET Framework 2.0, .NET Framework Compact Framework 2.0, .ENT Compact Framework 1.0 SP3 Developer and so on. How can I solve this issue Thanks. The installation log file's content is: 15:35:02 2006年12月10日: ------------------------------------------------------------------------------------------------- 15:35:02 2006年12月10日: [SDKSetup:Info] Begin 15:35:02 2006年12月10日: [SDKSetup:Info] S ...Show All

  • kcon DirectShow: get_StreamLength inaccurate

    Sorry for yet another DirectShow query. I'm using the IMediaDet interface to find out the footage duration and consequently the number of frames in the footage for lots of different formats. I've tried two methods to obtain the number of frames. 1. Call get_StreamLength and get_FrameRate and then multiply the stream length by the frame rate to get the number of frames. 2. Use the number of frame calculated in 1, subtract 15 from it (magic number, nasty I know but I'm getting desperate) to get a frame number 15 frames from the end of the footage, let's call it frameNumber2. Then run the graph from frameNumber2 and use the IMediaEvent interface to WaitForCompletion. Check that the event is the EC_COMPLETE event. Use the IMediaSeeking ...Show All

  • Damien fromOZ Japanese IME does not work properly with MultiUI

    My program does not work properly on Windows Vista Japanese. It's using IME functions. You can recreate same problem with MultiUI sample program which is provided by Microsoft. You can see this problem with following instruction: 1. Compile and run MultiUI It's in: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vcsample98/html/vcsmpmultiui.asp 2. MultiUI has 6 input area, turn on Japanese IME on right-middle and left-middle input area. 3. Click left-middle input area, type "ai" and press Space key twice to display candidate window 4. Click right-middle input area, type "ie" and press Space key twice to display candidate window 5. Click left-middle input area, candidate window is displaye ...Show All

  • Jeanvo Can you instantiate a different Workflow by using a Custom WorkflowLoaderService?

    I'd like to get the Workflow from an assembly file and dynamcially instantiate it by creating a custom WorkflowLoader Service. I've tried this: WorkflowInstance instance = workflowRuntime.CreateWorkflow(typeof(ProxyWorkflow)); -- where ProxyWorkflow is nothing more than a blank activity (I've also tried making it a blank SequentialWorkflow) and in my custom WorkflowLoaderService, I try this: Activity workflow = (Activity)Activator.CreateInstance(_workflowType); return workflow; --where _workflowType is a SequentialWorkflow loaded from an Assembly file However I get this error: System.InvalidOperationException: Can not create workflow definition. WorkflowL oaderService has returned an object whose type does not match 'WorkflowClasses.P rox ...Show All

  • Chuck Catron Problem with EventDriven dnrtv example by michael stiefel.

    in the dnrtv Michael Stiefel get example about EventDriven when convert the project to vb.net Problem when Raise the event will display the message error. ((Value cannot be null.Parameter name: eventArgs)) i display all code below. wfruntime = New Workflow.Runtime.WorkflowRuntime() messageServ = New EventDriven.MessageService( "HElllooooo" , "GoooodBYEEEE" ) Dim DataService As ExternalDataExchangeService = New ExternalDataExchangeService wfruntime.AddService(DataService) DataService.AddService(messageServ) instance = wfruntime.CreateWorkflow( GetType (Workflow1)) instance.Start() the instance is empty and not host the workflow whats a problem in my code. the code in the ...Show All

  • dbcuser throttling to not overrun MaxSimultaneousWorkflows

    If I have a WF host running on a server in which I want to have asynchronous workflow execution, I assume I need to manually control how many instances I start to not overrun the thread pool I didn't see a count property on the runtime, so is the correct way to get this to call GetLoadedWorkflows and check the count on that collection I'm a little concerned this may not accurately represent the total number of threads in use. To put this another way, if I have a message queue being read by a Windows Service host, and each received message invokes a workflow, whats the correct way to optimally keep the Workflow thread pool busy but never overrun it Hi, this post provides more details about threadi ...Show All

  • Milzit XtraGrid compatibility with Vista

    Hi All, We are using XtraGrid control with Visual Studio 2005. Is there any compatibility issues occur if i use XtraGrid in Vista platform . Thanks, Senthil A ...Show All

  • VBScriptor Outlook 2003 or 2007 RPC/Http using Vista

    I use 1and1.com and a hosted exchagne account. My old machine (XP/Outlook 2003) could connect to the Exchange server using RPC/HTTP and a hotfix from MS. Now that I have upgraded to Vista, I am not able to get to the Exchange server. is there a simlar hotfix that will allow the HTTP tunnel or is there some config in Vista that will let me achieve this using Outlook 2003 Bonus, I have a copy of Outlook 2007 which I would like to upgrade to as well, but 1and1 does not yet support this, at least not in tech support. In thinking this through, this is actually a windows issus vs. outlook (I think) so if i can get vista working, then theoretically Outlook 2007 shoudl work as well. Thansk t.a. HI Bruce, I'm a newbie to th ...Show All

  • suman_chowdary using correlation token to decide which activity to be executed.

    Say you have a parallel activity, with two eventSink activities on either branch. Is it possible to have both eventSink activities “listening” to the same event, and use correlation token to decide which activity to be executed Mikael This is possible as I found out. Please look into the Hands-on Labs Beta 2, Lab 05, Exercise 02. There is a complete source code example. I use Beta 2.2 and it works. ...Show All

  • hazz Windows Vista - Process.GetProcessesByName doesn't work

    Hi, This code is written in c#.net windows application. I am trying to get all the processes by name using Process.GetProcessesByName("Exe Name") and for some reason this doesn't work in Windows Vista, does anyone have any idea     Thats the issue, I am running it from the local machine. It works under xp and it works under Vista if I turn off UAC, but not if UAC is enabled. Here is the code that I tried, Process[] allProcesses = Process.GetProcessesByName("Exe Name"); I throws an exception saying "Couldn't get process information from remote machine". MHall wrote: I ...Show All

444546474849505152535455565758596061

©2008 Software Development Network

powered by phorum