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

Software Development Network >> Windows Vista

Windows Vista

New Question

How to determine possible states in State Machine Workflow
Truly Dynamic Runtime Activity Property Nirvana
Which service supports and controls the burning of optical media?
enable XP themes for a rehosted designer
Graph Works in GraphEdit but not in Code
Performance problem
Compatibility between beta 2 and June CTP
Drawing Antialiased Ink into Bitmap
Excel Addin does not create folders/Files at runtime on windows vista
Latest DirectShow SDK, overview and samples

Top Answerers

nhaas
leonlai
code911
Jamie Briant
curious_guy
Deepa7476
Teo Lachev
MrBrilliant
Al Christoph
Simon Dahlbacka
Topix: Advertising
Only Title

Answer Questions

  • NedNed Recorder order

    I'm noticing that adding external recorders (via USB) shuffles the order around. So it is not the case that the first recorder known to the system is 0 and additional recorders get incremented numbers. How is this order determined Alphabetically by model / manufacturer This might be important, because it a GUI might give exceptional treatment to an internal recorder. Maybe that is a better question to ask / thing to query for - is that possible (internal vs external) Hello foobarX! It is not currently possible to query for internal vs external recorders. The MsftDiscMaster2 object simply enumerate all the devices in the system that expose the CDROM device interface. We just wrap a public ...Show All

  • Deeps_123 ToolboxBitmap

    For the life of me I can't seem to get [ToolboxBitmap(typeof(ActivityTest), "Resources.IconName.png")] to show the icon in the workflow am I missing some other line of code somewhere or is there a know bug I’ve tried everything from checking the format of the .png to writing whole new Activities. Any help would be greatly appreciated yep thats cracked it Cheers! I've looked at the SendEmailActivity which is part of the MS workflow samples. The c# version shows the icon, but the vb version does not. They've forgotten to set the buildaction of the png file in the vb project to Embedded Resource. So i changed it. But the workflow of the sample project doesn't show the icon. What can be the reason ...Show All

  • blixt174963 Rehosting WWF and set ifelseActivity Rule expression

    1.I have rehosted WF with _vihang's sample(WorkflowDesignerControl.EXE). 2.I have created a customActivity with a boolean property(BlnReturn). Now,In the WF interface i put in a customActivity1 and a ifelseActivity1.Then I select the ifElseBranchActivity1 and run the RunConditionDialog,In the Dialog i input 'this.customActivity1.BlnReturn == True' .When i click the 'Ok' button,the error message will show "The type of the menber 'customActivity1' could not be determined.Ensure that the declaration is corrent". The same problem will run correctly in vs!Why Please help me!Thanks! I'm not 100% sure - but it could be a type information problem (lack of type info for the rule editing functionality). You can always do this ...Show All

  • Juvraj getting data from workflow with out workflow completing

    hi there, i cannot figure out how to get data from workflow with out the workflow completing. i a have a state meachine workflow which basically runs for the entire lenght of my application life time and i have couple of webservice actvities that run wnd get data from a remote site ( many times ) now i need to get tthat data to my ui with out that workflow completing. i know i can gat from workflow completed event but my workflow doent complete, so is there a solution for my current situation. thank u prasanth You can use local services to communicate with the host from workflow and vice a versa. Take a look at documentation of HandleExternalEventActivity, CallExternalMethodActivity, WebServi ...Show All

  • DCMonkey MsiRMFilesInUse dialog using VS2005 Installation Project & Orca

    I have a pretty simple installation project created using VS 2005 installation project, and am having several issues complying with some of the requirements. So far, my most frustrating problem is test case 25(v1.1.001 of Certified for Windows Vista Test Cases). There is no MriRMFilesInUse dialog available through visual studio, so my understanding is that I have to create my own manually using Orca. After digging and digging, I was able to find a very old, prerelease rss feed of what the tables needed to have in them for the dialog: http://blogs.msdn.com/windows_installer_team/archive/2005/11/03/488945.aspx Based on this, I added all those fields and values (with a couple minor variations such as the binary banner filename (i just u ...Show All

  • vtortola Using Windows SDK (With the Glass Effect)

    I have Windows XP and I downloaded Windows SDK for developing apps that are compatible with Vista, is it possible to make an app on XP with the glass effect or do I have to use Vista to create an app with the glass effect Hi Sniper, The Aero glass effect is something that is unique to Windows Vista else we would have seen such apps on XP itself by now. However you can get a "little" close to that by using the Opacity property of Windows Forms and the effect can be seen on XP as well... even on Windows 2000 for that matter. A bit of smart and careful super-imposing and you should be able to get a little closer. Though you cant still compare that with the now famous Glass effect of Windows Vista. Regards, Amol. ...Show All

  • Robert6327 C# and DirectShow

    Would anyone send me a sample snipper code of how to create Graph filter using "File Source (Async.)" filter in C# please I could create graph from webcam but not from the ready use filter. Thank you Are you using http://DirectShowNet.SourceForge.Net There are some samples in the Samples\Players directory that you may find useful. --- Co-Author DirectShowNet ...Show All

  • chazparks IActivityEventListener custom activity

    I have created a custom activity implementing IActivityEventListener interface. Then a EventArgs derived class which delivers the queue message. Then, from host application I send a queue item to the workflow calling the workflowinstance's EnqueueItem method : how can I intercept the message in the OnEvent method instead of Execute method I have also tried to create the custom activity as IEventActivity to be hosted inside an EventDrivent one, but the effect is still the same: only Execute method is called when message is received. Thank you very much in advance. Exposing the custom activity also as IEventActivity: i.e. public partial class MyEventActivity: Activity, IEventActivity, ...Show All

  • lambertlee88 problem about IInitializeWithFile & IThumbnailProvider

    In Vista RC2, I will show a thumbnail of a file. But I found the IInitializeWithFile::Initialize() could not be called. I created the Project as follows: 1. I created a ATL project, and added a class which  inherited from IInitializeWithFile and IThumbnailProvider. 2. I implemented the Initialize(LPCWSTR  pszFilePath ,     DWORD  grfMode ) and GetThumbnail(UINT  cx ,HBITMAP * phbmp ,WTS_ALPHATYPE * pdwAlpha ). 3.  In .rgs file, I added the codes: NoRemove .mm  {   shellex   {     {E357FCCD-A995-4576-B01F-234630154E96} = s '{F39D9D33-85D5-4AAA-9486-347B51B3792D}'   }  } In SDK, I had known that ...Show All

  • Greenstrike How to cancel a sequential workflow with cleanup in advance

    Hello, I want to cancel a sequential workflow, but doing some cleanup in advance. The terminateActivity just aborts the workflow and I 'll have to do some cleaning just before getting to the terminateactivity all the time(because it does not go into faulthandler or cancellation handler). But the cleanup procedure is always the same. Furthermore I have to do this very often in serveral branches in the workflow erverytime I want to abort the workflow, so this is no solution. If I raise an exception somewhere in the workflow I 'll get to the FaultHandler. The activities in there are then being executed and then the workflow continues. But it has to be aborted! So I could throw some exception again inside the faulthandler...ugly! But I nee ...Show All

  • kid_kaneda Setting volume levels with IAudioVolumeLevel

    Hello, I've been trying to set the level of a particular part by using the IAudioVolumeLevel interface of the API. I can Activate a valid instance of the interface, and when I call GetLevelRange on it, I get a min value of -34.5, a max value of 12, and a step value of 1.5. However if I loop through the valid step values and set them with SetLevelUniform, while comparing the value of the volume level slider in the Control Panel (which goes from 1-100), I get unexpected results. The number on the slider (and volume from the speaker) remains at 0 for the first 8 iterations of the loop until I get to a level of -24 for the SetLevelUniform call, at which point the slider value moves to 1, where it remains until the 8th iteration in the loop ...Show All

  • Dmitry.K Lan problem for Vista?

    Hi, as of yesterday my Internet will not connect to my Network, It gives me a Unidentified Network and dumps me with a 169 iP address which is a private network, I've removed the Lan cable from the back of my desktop and hooked it up to my laptop and it works fine, so its not a cable problem or a service issue. I've tried reseting the adaptor, removing/reinstalling the adaptor, firewalls are off, etc Ive contacted my network administrator and they said my MAC is not blocked or anything of that sort Desktop: Windows Vista Buisness Motherboard: Intel DP965LT Ethernet Adaptor -> Onboard Intel 82566DC gigabit Platform Lan Connect All Drivers are updated with Vista Drivers, Bios was updated as well Hi, ...Show All

  • r3zonance Hosting a workflow within an XBAP - is this possible?

    Well the subject title says it all really. Is it possible to host and run a workflow instance from within a XAML browser application Are there any security issues I need to be aware of and has anybody got an example of this On the face of it I can't see why I couldn't do this but I'm still learning workflow and presently don't know much about XBAPs either. My idea stems around the possibility of building my own workflow designer thats based around my own set of Domain specific activities. I wanted to run that designer from within an XBAP so that it would allow the user to design, compile and subsequently run a workflow. The activities within the workflow would be visual in nature so I would want to run the workflow from within the X ...Show All

  • Mehmet Metin Altuntas Type Intialization Error for Custom State Activity

    Hi, We have Created our own custom State Activity called " WorkflowState" by deriving it from System.Workflow.Activities. StateActivity. We have succesfully created the workflows using visual studio. The Designer shows the custom state and we could add the event driven activities. But when we come back later and open the Workflows using the Visual Studio Designer, we get the following error. Error Loading Workflow The type initializer for UTProduct.Web.Workflow.Activities.WorkflowState threw an exception. This behaviour is different on different machines. Sometimes after cleaning the solution and re-opening visual studio helps me in opening the workflows. But sometimes it never opens. Please find the co ...Show All

  • jaggyma How do I get my custom activities to appear in the toolbox?

    I have a project with some activities which all appear in the toolbox while I’m working with the project. Next I compile the project, open a new project, and reference the assembly from the first project. What do I have to do to get the activities from the first project to appear in the toolbox automatically I’m using the ToolboxItem as shown below: [ ToolboxBitmap ( typeof ( Page ), "ExtendedCodeActivity.ico" )] [ ToolboxItem ( typeof ( ActivityToolboxItem ))] [ Description ( "Like a System.Workflow.Activities.CodeActivity" )] [ Designer ( typeof ( ExtendedCodeActivityDesigner ), typeof ( IDesigner ))] public partial class ExtendedCodeActivity : Activity { ... } Should I use the ...Show All

828384858687888990919293949596979899

©2008 Software Development Network

powered by phorum