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

Software Development Network >> Windows Vista

Windows Vista

New Question

Error in WebApp working with WindowsWorkFlow
what's the run level of application when UAC is turned off?
Invoking the RootActivity Context's CloseActivity can not raise the WorkflowRuntime's WorkflowCompleted event
Windows Media Player 11 request some non-existed files while playing DVD
Problem with activity execution status
Require Info on EAP extension development for windows mobile
Accessing HKLM from a vb6 exe that calls a .net dll
Am I using GetFinalPathNameByHandle incorrectly?
Can Workflow be constructed dynamically?
mshta.exe crashing when hosting ActiveX controls.

Top Answerers

n.shah12
Mindaugas Lukošius
John Papa
Josh Kinder
Umer Khan
Scienter
Residual Logic Games
Laura Bagnall
rogupta
iamAlan
sitemap
Only Title

Answer Questions

  • Krenshau Uninstall Vista SDK RC1

    Hi To install the final Vista SDK (6.0.6000.0) I need to uninstall the Vista SDK RC1 (6.0.5536.0).. I have tried this through the add/remove programs, but something did go wrong and it was not uninstalled. In a previous thread i have read that installing the RC1 SDK would resolve this problem, but that is no longer avaliable on the webpage. How do I remove the old SDK or force the installation of the new SDK Regards Thorbjorn Hi The pre-release SDK is no longer avaliable, so I think that the only solution was to manually uninstall the msi files. Regards Thorbjorn Have you tried going to add/remove programs -> Change -> then click remove on the m ...Show All

  • vbasp Unable to emit assembly: Referenced assembly 'Interop.FAXCOMEXLib' does not have a strong name

    I have a COM+ application, it has several components, all of which are native components inherited from Inherits System.EnterpriseServices.ServicedComponent, this application is signed by a strong name it is registered by regsvcs32 and its up and running fine now I am trying to add faxing capabilities to this application using Microsoft Interop.FAXCOMEXLib.dll (fxcomex.dll) the problem is that it doesnt build now, it fails with an error message : Unable to emit assembly: Referenced assembly 'Interop.FAXCOMEXLib' does not have a strong name i've tried the tlbimp.exe command but it fails with an error message: TlbImp error: Unable to locate input type library: 'C:\tarasol\TarasolEngine\bin \interop.faxcomex.dll\ ...Show All

  • jitendra badkas New Sample: Simple STS

    I've posted another sample, this time a Simple STS! With that you should be able to do complete end-to-end scenario testing with CardSpace. It's pretty darn lightweight, and doesn't provide a whole lot of anything, but it's simple enough to understand without too much effort. http://cardspace.netfx3.com/files/folders/samples-july-ctp/entry5204.aspx g Garrett Serack | Program Manager |Federated Identity Team | Microsoft Corporation blog: http://blogs.msdn.com/garretts It would have been nice to see the sample files updated.  This would have saved me and others the time having to search and fix the issues of the sample files on .net 3.0 RC1. ARRG! ...Show All

  • Jordan Carroll XPS Viewer - SDK & plug-in interface?

    Hi, is there a plug-in interface/SDK for the XPS viewer that allows third parties to extend the functionality of the XPS Viewer Regards, nixps The xps viewer will be the default application to render xps files on both Vista and XP (at least, that is how I understand it, please correct me if I'm wrong). I'm interested in extending the functionality of that particular application: so that users can use their familiar xps viewer, but with extra functionality that is provided via a plug-in (provided the plug-in is installed, of course). My question: is this, or will this be, possible nixps Just to understand your request, why don't you use DocumentViewer class in WPF to extent Charles ...Show All

  • Andy Ho Windows SDK installer fails (v6.0.6000.0 RTM)

    I have downloaded the 1.15gb RTM windows installer twice now (the standalone not web download) and get the same message about an invalid digital signature. The file it fails on is \Setup\WinSDKDocNetFx-WinSDKDocNetFx-common.6.cab. I can't imagine I downloaded it and got it corrupt twice in the same place. Is your installer ok I can't do the web download due to proxy/firewall issues. Kerry Same problem here and exactly the same file WinSDKDocNetFx-WinSDKDocNetFx-common.6.cab. I tried both web installation (3 times) and downloaded the .img (twice), neither works. I was encountered a similar problem when were applying Visual Studio 2005 SP1 and got solved by follow this KB ar ...Show All

  • kenniejaydavis Compile workflow in memory and store assembly in database

    I compile the workflow in memory and store compiled assembly in database, I fetch assembly from database and use it to create workflow instance. However it occur some exception when I deserialize byte[] to an Assembly. I store compiled asse mbly by the following code WorkflowCompiler compiler = new WorkflowCompiler(); WorkflowCompilerParameters parameters = new WorkflowCompilerParameters(); parameters.ReferencedAssemblies.Add(typeof(Test.Activities.DocumentApprovalActivity).Assembly.Location); parameters.GenerateInMemory = true; parameters.OutputAssembly = Guid.NewGuid().ToString + ".dll"; WorkflowCompilerResults results = compiler.Compile(parameters, strArr); using (MemoryStream memoryStream = new MemoryStream()) { BinaryFormatter bina ...Show All

  • MA2005 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 Is your concern that if you change hosts, you can't use this model, but that it works for ASP.NET You can always provide a new implementation of the local service for each host that makes sense for that host. The workflow only knows about an interface. What is it that is triggering the passing of data If it is in the workflow, then using local communications is the easiest option. If HttpContext doesn't work for you, then use the call method shape an ...Show All

  • chubbysilk "WPF/E" Feb 2007 CTP refuses to load

      Earlier today, you may have noticed your “WPF/E” December Community Technology Preview (CTP) control expired.  No worries though- we’ve just posted the February CTP for Windows and Mac  to Microsoft's download center and updated the samples on the Channel 9 Playground to work with the new CTP.  Note that to get your samples working with the February CTP, you’ll need to change out the agHost.js file with the new one found here . Tomorrow we’ll update the website with details on what’s new in this release, and an updated SDK and samples will be available soon too. Thanks, "WPF/E" Marketing please put the SDK out as soon as possible ////////////////////// ...Show All

  • leshan When will calling Release() after calling CoUninitialize() not result in an AV?

    (can you redirect me if this is not the right forum for this question) Should this sequence cause an AV I made the fairly common mistake highlighted in yellow, and fixed it, but I was surprised that it resulted in an AV only if COM had not been initialized on Thread A. I would like to understand why or why not I should expect an AV in this case. Thread A calls CoInitializeEx Thread A creates Thread B Thread B calls CoInitializeEx Thread B creates and uses some COM objects Thread B calls CoUninitialize Thread B releases COM objects <--Bug Thread A calls CoUninitialize Here is an answer from my colleague, Axel: “If both A and B are in an MTA, the CoInitializeE ...Show All

  • Aaron Silverwatch Windows SDK Documentation

    Hello,   If you have the Windows SDK and Visual Studio installed, you can help me.  Please tell me if your Windows SDK documentation is integrated with your Visual Studio 2005 documentation.  Thankyou. Because mine isn't.  Assistance appreciated. I did a clean installion of Visual Studio on Vista RC2, and I installed the following additional items in the order shown. installed VS2005 sp1-KB918525-X86-Beta-ENU installed MicrosoftR WindowsR Software Development Kit for RC 1 of Windows Vista  and .NET Framework 3.0 Runtime Components installed Microsoft Visual Studio Code Name Orcas Community Technology Preview  – Development Tools for .NET Framework 3.0 - vsextw ...Show All

  • tssweb more than one Video Renderer, the get_FullScreenMode() always return E_NOTIMPL!

    In my program there are two video render filters, one for local window and the other for remote. However, when I did the following: IVideoWindow *pRemoteVideoRendererVW=NULL hr = Graph.gcap.pFg->QueryInterface(IID_IVideoWindow, (void **) &pRemoteVideoRendererVW); if (hr!=S_OK) { Log.Log(1,"IID_IVideoWindow failed %08x",hr); return; } LONG lMode; hr= pRemoteVideoRendererVW->get_FullScreenMode(&lMode); if (hr!=S_OK) { Log.Log(1,"CCyklOneDlg::OnFullscreen get_FullScreenMode failed %08x",hr); goto exit; } Everything went through without any error. Excepting the pRemoteVideoRendererVW returned by the QueryInterface() does not guarantee that it was the remote windows. It sometimes returns the local vid ...Show All

  • Gooseman1977 problem with SDK Samples

    I have downloaded Vista SDK in 2 days, the samples which are included in SDK are compiled well, but in some samples when i want to look designer i am getting an error message "Whooops Visual Studio has encountered an error ...." although it is compiling and executing without any problem, one of such samples is "SimpleBinding". What is that problem. Thanks You wan to take a look at WPF (Windows Presentation Fundation) samples so you need the Visual Studio 2005 .NET 3.0 Extension. But Cider (the desginer) is still in development, so don't expect too much. Andre ...Show All

  • rodniko Using Webpage flow activities

    Hi, Are there any resources, which can help me how to work with "Webpage flow activities", which can be found at http://wf.netfx3.com/files/folders/control_flow/entry4354.aspx I want to use these activities to build a state machine workflow sample. Thanks in advance for your time. Regards, Pavan Pavan, The package found at the link you indicated contains a state machine workflow sample. Besides Workflow WebPage Activities it also includes an example of a Sequential Workflow and a State Machine workflow sample. Under WorkflowLibrary directory you can find SequentialWorkflow.cs and StateMachineWorkflow.cs Both workflow types make use of same Webpage flow activities. More information about t ...Show All

  • bruce bubello Visual Studio Crashes on Lab01

    Hi, I have VS 2005. I installed both the WWF extensions and the hands-on lab, but when I run the form-based task of the lab, the crashes Any ideas thanks! Lior Please rety this with the WF RTM bits. If this is still hapenning please provide more details of where the crash occurs and what stack trace or other debug info is observed. Regards, Paul ...Show All

  • Suresh Ayyagari Workflow Designer - Web

    Hi, I need to either build a workflow designer or re-host the workflow designer to run in a Web Application. I know there are a Jon Flanders Atlas-based designer and the www.netfxlive.com . I can't run the application with more privilegies. www.netfxlive.com is exactly what I need... So... I really appreciate if somebody can give me some tips about how build something like that... Thank you for your attention. Hi Daniel, What do you want to know about netfxlive wf designer It is currently under development. The full source code will be released on community website soon. If you have a particular question about its implementation, let us know. It builds xoml on the client in javascript. It uses same workflow compiler, sa ...Show All

92939495969798990123456789

©2008 Software Development Network

powered by phorum