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

Software Development Network >> Windows Vista

Windows Vista

New Question

OTP: Vista beta 2 would not install
Media Center timebomb... again?
How to use asp.net with workflow?
Performance problem
play video on 3D object
Vista and Symantec Ghost 8.x
AutomationID Best Practices
Workflows vs. ThreadPool
Standard User Analyzer causes COM and ActiveX to fail
How to append data?

Top Answerers

rsri
SweptSquash
WN3335
pRtkL xLr8r
ADurkin
StevenR2
Reza Bemanian
Logan1337
madenci
gadi_bez
Topix: Construction
Only Title

Answer Questions

  • rob warning Waithandles and Workflow Instances

    Hi, I have a unique problem and I was hoping some one would shed some light on it. I am using the regular mechanism of starting workflow instances but not before starting an asynchronous thread to listen to incoming messges from MSMQ. Everytime, I receive a message new instance of a workflow is started to deal with that message. All of these instances are created by the second (MSMQ listener) thread and not by the main host application thread. I observed that the WokflowCompleted event (registered in the host application thread) get invoked every time the WF finishes but the waithandle.Waitone() in the end of the host application code does not get invoked. I am afraid that there might be memory leakage somewhere. ...Show All

  • j_ames2006 Workflow Designer on SharePoint Server 2007 and Visual Studio 2005

    I'm trying to get the Visual Studio 2005 Designer for Windows Workflow Foundation to run, but got stuck. There is no explicit installer for it. The base is Windows Server 2003 with the following two installed: SharePoint Server 2007 Visual Studio 2005 I've tried to install various related modules, including: Visual Studio 2005 Extensions for Windows SharePoint Services Visual Studio 2005 Extensions for Windows Workflow Foundation SharePoint Server 2007 SDK and ECM Starter Kit I believe the SharePoint Services 3.0 are included in the SharePoint server. Correct Whatever I install, Visual Studio 2005 doesn't seem to offer any Workflow Designer and no projects of any workflow type. What's missing And which of the ...Show All

  • Paul Baudouin Support for Streaming Servers ?

    I am currently trying to find out if support for any streaming architecture has been implemented in the FEB2007 release; ideally the Windows Media Server WMS architecture. I would like to be able to access streaming content under any of streaming protocols ideally rtsp:// or mms://. Our architecture is setup on WMS and I am typically working with 45-90 minute recordings. Due to the limited support for WMP on Mac OS X as well as compatibility issues with the latest Intel based macs, I am very eager to be able to replace the embeded WMP with a WPF/E based player, however I need the ability to seek to random points in a file. Also in looking at the docs, WPF/E is said to support WM9, I was wondering if it will be suporting all WM9 codecs ( ...Show All

  • EvolutionMobile DSNetwork Filter Sample Missing

    I cannot find the: "DSNetwork" filter sample in any directories I've downloaded and installed these SDKs: Microsoft Platform SDK for Windows Server 2003 R2 Microsoft DirectX SDK (October 2006) I have all the other DirectShow filter samples: Async Ball Dump EZRGB24 Gargle InfTee Makefile Metronome PSIParser PushSource RGBFilters SampVid Scope Synth WavDest Where is the DSNetwork sample Over time, MS has dropped a number of samples from the SDK. However, if you go back a few sdks, it should still be there. Based on this ( http://msdn.microsoft.com/archive/default.asp url=/archive/en-us/directx9_c_Summer_03/directX/htm/dsnetworkfilterssample.asp ), I would look for at least S ...Show All

  • warble Misunderstanding about Binding

    hi, I'm trying to bind the Message property of a MessageBoxActivity to the text property of a custom activty. in messageboxActivity: public static DependencyProperty MessageProperty = System.Workflow.ComponentModel.DependencyProperty.Register("Message", typeof(string), typeof(MessageActivity)); private string message; public string Message { get { return message; } set { message = value; } } in custom activity: public static DependencyProperty TextProperty = System.Workflow.ComponentModel.DependencyProperty.Register("Text", typeof(string), typeof(Activity1)); private string _text; public string Text { get { return _text; } set { _text = value; } } but when I ...Show All

  • lgratkowski Workflow Instances persisted by different hosts

    Hi, For example, I have 3 Winform Workflow host applications (with 3 different workflows also). They all using the SqlPersistenceService. Now I want to add a function to each of them to check the persisted workflow with the routine like this Dim instances As IEnumerable(Of SqlPersistenceWorkflowInstanceDescription) instances = PersistenceService.GetAllWorkflows Dim instance As SqlPersistenceWorkflowInstanceDescription For Each instance In instances System.Windows.Forms.MessageBox.Show(instance.WorkflowInstanceId.ToString) Next Everything work fine. But if I added the the to check the Status of the workflow (with StateMachineInstance) or try to load the workflow with : Dim Wfi As WorkflowInstance ...Show All

  • SuranaSaurabh CreateHandle method with C# on Windows Vista

    Hi All, yesterday I installed Vista on my computer and now I'm trying to compile and run some C# projects. I have an error while search the handle of a usercontrol; this is the error: Error creating window handle. Any idea Does Vista manages in a different way all this Thanx in advance Marcello OK thanx!! Cheers Marcello I'm trying to get the handle of a UserControl with simply call this.Handle property of my usercontrol. Marcello   According to MSDN it shouldn't throw any exception when accessing that property. It can be that for some reason there is no handle created. If you check the entry fo ...Show All

  • Tryin2Bgood How to install PassportManager on Vista

    When runninng the application , the error message is The PassportManager object could not be initialized. Please ensure that Microsoft Passport is correctly installed on the server. what kind of Passort can be supported by Vista Hi joyson, This seems like a configuration issue with the Microsoft Passport Manager that your appliation is attempting to connect to. What version of Passport Manager are you using on your server Also are there any error codes other than the message in your post You might also want to try integrating your application with the new Live ID Service, more information of the Live ID Service can be found at http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnl ...Show All

  • lawrieg How to enqueue workflow statemachine instances for sqlpersistence

    we are working on windows workflow foundation with asp.net as our host process. we are facing problem in sql persistence of statemachine model approach. I will explain briefly the scenario here. we created custom services implementing the externaldataexchangeeventargs. we are using these events in the statemachine model using external event handlers. we created a statemachine workflow for inquiry process, in this "raiseoffer"  is one state, "CreateCustInquiry" is one state."Approval" as another state. one user raised offer at that instant i am creating the new workflow instance and raising the event "raiseoffer", after that the second user will do customer inquiry. in between first user may logout. at this time the ...Show All

  • ccote Get ExecutionContext from within a HandleExternalEventActivity Handler!

    Hello guys, My question is this... Lets suppose i have a nice HandleExternalEventActivity listening to an Event of a service that implements ExternalDataExchange, all the necessary things implemented. There is nothing wrong here... the workflow blocks when it reachs this activity, goes idle, then when the event fires the HandleExternalEventActivity handler receives the arguments passed by the publisher, etc... What i want to ask is this... If i want to retrieve a service that its added to the WorkflowRuntime by the host application from within the HandleExternalEventActivity handler how do i do this I tried to find a way but the only two ways that i know to get a service from inside an activity is by the ActivityExecutionCont ...Show All

  • JohnBurton Where can I download matching pre-release of Microsoft Visual Studio Code Name “Orcas” Development July CTP?

    Hi guys, Can you tell me where can I download the matching release of Visual Studio Orcas for Windows SDK July 206 CTP On the download page of Windows SDK July 2006 CTP , the overview said: " There is no matching pre-release of The Microsoft Visual Studio Code Name “Orcas” Development Tools for the July CTP " Can you tell me when it will be available to download Since there is no Visual Studio "Orcas" CTP for this July 2006 CTP release, I can't use Visual Studio 2005 to code and targetted for Windows Vista anymore. Hello, I appologize for the inconvience this has caused. There is a matching release of the Development tools that goes along with the NetFX 3 Beta 2, June CTP, and tomor ...Show All

  • Silver Haired Newby Passing parameters from the workflow to the host example request??

    WF Gurus, I am using XOML only state workflow from ASP.NET client (WF 3.0). I need to pass output parameter to the host ASP page before WorkflowCompleted event executes. Can someone please provide a code example of how this could be done Thanks in advance, John Portnov method in your local service: public void PassPropertiesToPage(string myproperty) { HttpContext.Current.Items.Add("Myproperty", myproperty); } In your page after the workflow idles: object myvar = Context.Items["Myproperty"]; Matt Matt, Thanks for the info. We will not be using the delay activity. Our client is ASP.NET (which is the host). The web page calls CreateWorkflow and raises event in the first Sta ...Show All

  • varunsagii Help with enabling trace listener when hosting workflow runtime in IIS

    I am hosting the workflow runtime in IIS and have tried to enable the trace listener shipped with workflow by adding the following section to the web.config < system.diagnostics > < switches > < add name = " WorkflowTraceToDefault " value = " 1 " /> < add name = " Host " value = " All " /> < add name = " Runtime " value = " All " /> < add name = " Tracking " value = " All " /> < add name = " Activity " value = " All " /> </ switches > < trace autoflush = " true " indentsize = " 4 " > ...Show All

  • andreas s wimgapi and vb6

    Greetings, Can someone advise me how to get the declaration, method, constants etc for using wimgapi in vb6 I have all the necessary support files .dll, .lib, .h, and the chm file, but I cannot seem to find the code for including it in my vb app. Maybe I just missed it somewhere. Any help would be greatly appreciated. Thank you. Ok, thanks to a bunch of help from another forum I was able to get this working. So for everyone else trying to get this to work here goes: In the General Declarations: 'Required Constants Private Const WIM_Flag_Verify As Long = &H2 Private Const WIM_Flag_Index As Long = &H4 Private Const WIM_Flag_No_Apply As Long = &H8 Private Const WIM_Generic_Read As Long = &H ...Show All

  • Matador139 Can't install VS6 SP6 or VB6 SP6 on Vista RTM (6.0.6000)

    Hi, I can't install SP 6 for Visual Studio 6, either the VB6 cutdown version, or the complete VS6 version. I have Vista Ultimate version 6.0.6000. This problem exists even if I "Run as administrator". I already have UAC off, and the problem exists whether I use Compatibility options or not. The process to follow to reproduce this problem is: Double-click Setupsp6.exe Click 'Continue' Click 'I agree' [ Very short time-period follows] Message box: "Visual Studio 6.0 Service Pack 6 Setup was not completed successfully." Click 'OK' Setup then finishes. SP6 is not installed. I have about 100 applications I must maintain and recompile periodically. I now cannot do that. Does it mean I have ...Show All

313233343536373839404142434445464748

©2008 Software Development Network

powered by phorum