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

Software Development Network >> Windows Vista

Windows Vista

New Question

Yet another UI gadget?
Digital Identity Applet window cannot be opened
Dropping frames using Directshow
How to create an Instance of IUpdateServiceManager
State Machine Workflow with multiple Completed states?
Microsoft Windows XP Media Center Edition 2005- Compatibility with AutoCAD
Step-by-step UAC Guide
Print to XPS Driver, Automatically Save File, and Call Application
Is it possible to send user tracking records during Activity Initialize() ?
RegLoadKey in a C# App

Top Answerers

Sudhakar.hcitek
Kanhaiya
cruzn
BortNE24
bernb
mkuppu
arifyemen
dnzone
caldridge1
j_o_h_a_n_n_e_s
Ceviant Corporation
Only Title

Answer Questions

  • SonAsylum Burning A DVD In Vista

    hello to all,....first, forget me if the post is not in the right place. Well, i have a problem in windows vista,....i have a dvd burner (pioneer dvd dvr 110D model) but the windows vista, i dont know why, do not rrecognizes the right speed to burn on my dvd (16x max velocity) some times, is 1x, other times is 4x :S...is in vista only because a week ago, in xp work’s just fine, and i do not have problem with nothing except in xp i have problem with the security, thats is the reason for what i move my sistems files to vista and the second problem is i dont know what program i must use to burn dvd/cd/iso, etc in vista, in xp i always use nero last version, but because the vista directx 10, i cant install nero 7.X because the program forced m ...Show All

  • Jon Stroh Help, Persistence not working!

    I have an ASP.Net web service that uses workflow. I followed the examples to use SqlWorkflowPersistenceService so my workflow instances would be saved in a SQL database I created for this purpose (running the SQL scripts in C:\WINDOWS\Microsoft.NET\Framework\v3.0\Windows Workflow Foundation\SQL\EN). Here's my problem: my workflow instances are not being saved to the database! I can see my workflows going idle, but when I check the database I see no records in InstanceState. Am I missing something Could someone help me debug this, it's driving me nuts! Here's some of my configuration and relevant code: < add type = " System.Workflow.Runtime.Hosting.SqlWorkflowPersistenceService, System.Workflow.Runtime, Version=3.0.0.0, ...Show All

  • Kumar Venkat Info on support for other platforms?

    Hi, I know that as of right now MS is only planning on supporting the browsers that are currently supported in the CTP, and I've read on a developer's blog that MS will be relying on partners to implement support for other platforms. Is there any of this work with partners underway Is there anything else that I'm missing I'm giving a presentation on WPF(/E) to some execs at my company, and I'd like to be able to mention something about support on other platforms because I know this will be a con when compared to Flash. Thanks, HV "WPF/E" was built for the internet and as such should work anywhere people browse from. That said, we have limited resources and we need to optimize our effort around ...Show All

  • GiriKrishna Help with Hands on Labs

    Hello, Over the last days I've started to experiment with Workflow Foundation, but I've had some problems. I find that when I want to create a local variable in a "HandleExternalEvent" object, it won't let me do it. I explain, in Lab05 for example, it asks you to insert a HandleExternalEvent object to handle the user's vote, and once you've changed the interface type and the event name, the manual tells you to " type the value votingArgs into the (Parameter) e field, this will create a local variable named votingArgs within the workflow". I do that and once I click somewhere else or I hit Enter, the word "votingArgs" disappears from the (parameter)e field, and the variable isn't created. The same thin ...Show All

  • Andrea96 Impersonification ASP.NET + Workflow

    Hi, I have a WebService which start a workflow. I have to search some resources, files, .. on network so I use impersonification with the system.web configuration. In a Web service I have the right of the user specify by the impersonate configuration. But when I'm in the workflow, I haven't the same rights. Is there a configuration on the workflow runtime to specify the user use by the workflow application How can I use the identity specified in the Web.config In the Web.config we can found : <configSections> <section name="WorkflowRuntime" type="System.Workflow.Runtime.Configuration.WorkflowRuntimeSection, System.Workflow.Runtime, Version=3.0.00000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35&qu ...Show All

  • PhrankBooth Why graph fails to open after disconnecting pins

    Hi, i'm new in dShow, building a graph to capture video. I build graph with no problem but i want all filters to disconnect when i want. Before disconnecting all i save graph file (as connected.grf) then watch it, it has no problem; and after disconnecting filters save again(as disconnected.grf) when i try to open, it fails and it is surprising that connected.grf is 14 KB and disconnected.grf is only 2 KB. Also i can not reconnect filters again. HRESULT DisconnectAll() { HRESULT hr; DisconnectFilter(pFilter, PINDIR_OUTPUT); if(hr != S_OK) return; DisconnectFilter(pFilter, PINDIR_OUTPUT); DisconnectFilter(pFilter, PINDIR_OUTPUT); //And so on } HRESULT DisconnectFilter(IBaseFilter *pFilter, PIN_DIRECTION pinD ...Show All

  • Mark Rodenhauser Object Collection Editor comes up disabled for Dictionary parameter

    I am using a CallExternalMethod activity in my workflow. I have a interface defined one of whose methods takes a Dictionary<string, object> as one of the input parameters. I need this Dictionary<string, object> to be passed as a parameter to CreateWorkflow call which takes a type and input params. The trouble is, in the property grid, the ellipses that appear against this dictionary parameter throws up the Object Collection Editor but with Add and Remove buttons disabled. Only OK and Cancel are enabled. This means that I cannot practically add an entries to this Dictionary parameter using Object Collection Editor. Can you please point me to a solution where by I can use Object Collection Editor to add entries to the dictionary ...Show All

  • sej Read XPS document and merge into a Canvas

    I have a canvas and would like to merge an xps document into it. I have looked for a sample but have not found one. Can someone point me to a sample or provide info on how to accomplish this. Thanks in advance. you could try to add your canvas to every fixed page in your xps-document... for example if you have a canvas 'myCanvas', you can add it to a fixed page 'myFixedPage' like this... FixedPage.SetLeft(myCanvas, 0); FixedPage.SetTop(myCanvas, 0); myFixedPage.Children.Add((UIElement)myCanvas); maybe it helps... Hi, could you elaborate a bit on what you are trying to do (fi. what with the fact that the XPS document could contain multiple pages ) regards, nixps Th ...Show All

  • Vaish Which Atrributes? WCF & WF

    I am new and trying to grasp the proper design of interfaces for WF and interaction with WCF. It seems that interfaces need a structure like this for WCF: [ ServiceContract ()] public interface IService1 { [ OperationContract ] string MyOperation1( string myValue); [ OperationContract ] string MyOperation2( DataContract1 dataContractValue); } Yet, WF needs something like this: [ ExternalDataExchange ] public interface IService1 { void RaiseMyOperation1( string myValue); event EventHandler < MyOperationEventArgs > MyOperationEvent2; } How are these two supposed to be combined/ work together (yes - its a weird example, but even ...Show All

  • rbnijp Free online guide to WF @ http://wfguide.blogspot.com

    A free online guide to WF is available at http://wfguide.blogspot.com ...Show All

  • sam-pan add child activities to a Replicator Activity

     Hi All , Can anyone give me an example on how to create a replicator activity where the number on children is knwon only during execution ie is dynamic How do i add child activities to the replicator I have tried the sdk lab7 exercise and it was helpfull but i am still wondering what if the number of child nodes is not known till the workflow starts. Is it possible to get data from all the child nodes and perform an operation (like average ) on it Thanks Sonali To cause another instance of the replicator child to be spawned you just need to add a value to the CurrentChildData collection. The following is an example of what you could use in any of the replicator’s event handlers ...Show All

  • rockowpb How to add HDMI support in video miniport driver?

    I have some experience on VGA compatible video miniport driver development. Now the interface between the display card and monitor changes to HDMI from VGA interface. I don't know how to modify the video miniport driver to support HDMI interface. As I know in the VGA compatible video miniport driver, I need to implement SVGA functions. Now for HDMI, what should I do ...Show All

  • GOH Omnipuff XPS and StartDoc

    I was trying my application on the latest Beta 2 release of Vista and found some weird features when writing out to XPS. In my application the user has the option of going into a print layout window. This layout window allows the user to place the desired application related objects on pages for printing. When the user goes into the dialog, I go create a printerDC based on the default printer and hang on to that DC until the user closes the layout window or changes to a different printer. While in this dialog, the user can change how the objects are layed out and print at any time. Inside I call startDoc with just the application name and when saving to an XPS the first time, the XPS file is generated successfully. If I write to a di ...Show All

  • desny Register COM component on Vista

    How to register COM component on windows Vista. It seems that the administrator acount is required. Help! Thanks.   RyanBo wrote: How to register COM component on windows Vista. It seems that the administrator acount is required. Help! Thanks. I logon in windows vista RC1 as Administrator but i can't register COM object . (raise a exception) Any idea Thanks. In vista, you can't register com if you have only protected administrator privilege or standard user privilege. You can do it by run command.exe as administrator role and then run regsvr32 in command shell. That's OK. The main reason is that there is RegCreateKeyEx with HKEY_LOCAL_MACHINE key in DllRegisterServer, and w ...Show All

  • wei917 Compare WWF to Metastorm?

    Has anyone here worked with the Metastorm workflow product I'm trying to get some information on Metastorm vs. WWF (or SharePoint 2007 workflow). The pros and cons of each, the differences between the functionalities. If there're any resources like whitepapers, discussions, I'd really appreciate if someone could point me to. Thanks in advance. Workflowgen Vs. SharePoint 2007 Do you have a basic matrix that shows the differences between Workflowgen and MOSS 2007 capabilities What can Sharepoint handle same, better, or needs custom programming and at what effort level If you are looking for a "more than decent" BPM/Workflow product, you should ...Show All

96979899012345678910111213

©2008 Software Development Network

powered by phorum