Answer Questions
Jehan Badshah 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 Before hacking around with the MSI files, you might want to try re-downloading the previous SDK, either install it or repair it, and then uninstall it. I realize that's a bit of a hack, but the pre-release SDKs had some bits that weren't fully baked. ...Show All
Adam Plocher vista blocks application at startup
Hi, I'm a software developer and I have a question about Vista. Our application (a .NET 1.1 app) requires Administrator access and we have the "requiresAdministrator" access level defined in the application manifest. That part is working fine. However, our application needs to startup when the computer boots so we have it in the "startup" folder. For some reason (I can't imagine why) Vista puts it in the "blocked startup programs" list and the user needs to manually launch it. This is not acceptable for us. Is there any way to circumvent this problem And by the way, why is there no way for the user to say "I want this app to run every time I reboot so stop blocking it!" On a side note, I not ...Show All
Gangy 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
M Kenyon Tutorials on WF and WPF
Good Morning Fellow Questers I’m looking for help on two things. 1. The location of tutorial or sample code that use WF and WPF together. 2. Insights, facts or guesses on why there is so little MS resources devoted to using WF and WPF together. Thanks and I’m looking forward to your response Make it a great day Mike Greenway Here's a sample: http://msdn2.microsoft.com/en-us/library/aa970891.aspx Also, here's the MSDN topic on integrating between the technologies. The integration is encouraged, and there are some samples, perhaps not as many as we would like yet due to resource issues. Here's the link for all the integration samples - http://msdn2.microsoft.com/en-us/library/ms756478.a ...Show All
Rashar Security token without authentication
Hello, I would like to know if it is possible for the user to use a managed card (get a security token) without requiring the user to authenticate himself Thanks for your help, Dear Caleb, Thank you for your answer. Cardspace supports a few authentication methods only, and you can see that in other threads of this forum, some of us are asking how we can implement another authentication method. Getting a managed card and its attributes without authentication could allow the RP to process the authentication method it wants. I mean that the managed card could contain information about how the RP should authenticate the user. I mean that the authentication could be done by something else than the STS, after the card's retrieval. The c ...Show All
barkingdog How to install vs2005 extension for WWF?
Hi all, I downloaded the VS2005 Extension for WWF from this link http://www.microsoft.com/downloads/details.aspx familyid=5D61409E-1FA3-48CF-8023-E8F38E709BA6&displaylang=en#Instructions However, I can't install it. Note that I'm using Vista RTM and VS2005 Team Suite. When I attempted to install the extension, it always launch "Virtual Earth 3D Installer" which is weird. I dont want to install VE3DInstaller -- or does the extension require VE3D I can see that after the self-extractor finished the extraction, it launched a URL to Microsoft website which in turns asked me to download the "LaunchVE3D.exe". Is this an issue in the installer Regards, James. Hi - ...Show All
detzX UnloadOnIdle Memory Leak???
In the ASP.NET WF application we've written, we're utilizing the SqlWorfklowPersistenceService, SharedConnectionWorkflowCommitBatchService and a custom ExternalDataExchangeService. Our persistence service is configured as follows: < add type="System.Workflow.Runtime.Hosting.SqlWorkflowPersistenceService, System.Workflow.Runtime, Version=3.0.00000.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" EnableRetries="true" UnloadOnIdle="true" LoadIntervalSeconds="10" /> Our problem is that over the span of a day or so, the application consumes more and more memory until eventually (once it's reached several hundred MB) it causes performance issues on our servers (excessive paging, etc.). As I began to investigate the issue ...Show All
chakravarthy_b Error Message while capturing : "No more data is on the tape"
Hi, i'm tring to make a simple program to capture video from Pinnacle AV/DV2 Capture card. After start capturing it writes fine and have no problem. But it fails after some hours (approximately 5 hours) and gives error message "No more data is on the tape" my operating system is Windows XP SP2, processor Intel Xeon 3.60 GHZ and Memory 2GB. My code piece to capture is below. I want to learn if this error is caused by Pinnacle card or my program. Will be glad for any advice. Thanks a lot. StartCapture(LONGLONG totalSeconds) { HRESULT hr; hr = mediaControlRecord->Run(); //IMediaEvent REFERENCE_TIME startTime = (REFERENCE_TIME)timeGetTime(); while ( true ) //koray : repeat until stop message { ...Show All
JohnnyP34 vista and UNC paths and mapped drives
Hi, My application is stored on our network in a location K:\path\to\app.exe. each user double clicks on the exe and installs right off the network. In vista when you do this instead of launching K:\path\to\app.exe it changes the command to a \\servername\share\ format, \\server01\path\to\app.exe. Unfortunatly for legacy reasons it will only work with a drive letter and not the UNC path. So before I look at changing the app's code, Is there a way to get past this in Vista RC1 Thanks Shane I am having the same issue using RC2 Hay Guys The same problem is facing by me while runing my windows application in UNC path. My application is deployed on web server on Wind ...Show All
TrojanH Microsoft Windows SharePoint Services 3.0 (Beta) SDK
After install SDK 4.0.100.1190 for sharepoint and Windows SharePoint Services V3 Workflow Developer Starter Kit (Beta 2) when open the sharepoint workflow template will not open correctlly i think i missing Microsoft.SharePoint can any one help me plz. Do you have the VS extensions for WSS 3.0 installed I recall having similar problems and I did not know there were specific extensions for WSS. EM yes i download it from here http://www.microsoft.com/downloads/details.aspx familyid=5ddf902d-95b1-4640-b9e4-45440dc388d9&displaylang=en ...Show All
Maxim Michtchenko passing object to workflow
I have several objects which I want to pass in to the workflow at runtime and be available to any activity run in the workflow. For example, I have a data managment object which the activities should use for database interaction. (I don't want to create a new instance in the activity). Is this possible Hi, Let's have the following class. We want having one instance of this class in the workfow accesible by all activities within the workflow: [Serializable] public class MyClass { private int _MyProperty; public int MyProperty { get { return _MyProperty; } set { _MyProperty = value; } } } We also have a workflow named "Workflow1" that has a single CodeActivity activity cal ...Show All
Mateusz Rajca ActiveX control - IE7+VISTA
Folks, I am trying to connect to a website, upon loading the first thing website does is it installs ActiveX control. If i am in Guest account, UAC in Vista asks for Admin Credentials. How can i avoid that credentials message box. Is there any thing i need to take care of while deploying ActiveX control. I don't want to disable Group policy setting to avoid credentails message box or force user to enter admin password. All i wanted is to make sure the ActiveX control installs fine in Guest Account. Is it possible ...Show All
Luis D. Rojas Fault Handler and Bindable Properties
I'm using the June CTP of WF. After I promote Bindable Properties on my FaultHandler I'm getting a weird popup in the VS environment. DependencyProperty 'Fault:System.Workflow.ComponentModel.FaultHandlerActivity' does not have an associated CLR property. All non-attached Dependency Properties should have a corresponding CLR property. Any ideas Well - Fault is now a read-only property. I assume that is why you are getting the error - I guess the question is why is the property promotion menu promoting it. I'm trying to log Exceptions that happen in an EventHandler. I was trying to put an faulterHandler that caught all generic System.Exception and then write to the EventLog an ...Show All
John12 Changing default speaker configuration on Vista
i am preparing application to test sound at different speaker configuration for windows vista and windows XP. for doing this i am using API SetSpeakerConfig() to set the different configuration and API GetSpeakerConfig() for getting same configuration. this is working fine in Windows XP. but not in Windows Vista. The call to SetSpeakerConfig() succeeds, but doesn't actually change anything. Is there any way other than by using the Sound control panel. Hi Mitch, Base on what you told on Forums, it doesn't seem possible to change the speaker configuration. I read the reason why you decided to do so, and even if I found it not convenient, I do respect your decision. Howev ...Show All
Bravo2007 InkCanvas exception
Help! I am using .NET 3.0 Beta 2 and VS2005 on Windows XP Tablet PC 2005 edition. Whenever I try and use the <InkCanvas> element I get an unhandled NotSupportedException as soon as the mouse/pen is moved into the ink canvas area. Full details of xaml used and exception below. The exception occurs in the app.Run method. < Grid >< InkCanvas /></ Grid > System.NotSupportedException was unhandled Message="DLL version not correct." Source="PresentationCore" StackTrace: at MS.Internal.HRESULT.Check(Int32 hr) at System.Windows.Media.FactoryMaker.get_ImagingFactoryPtr() at System.Windows.Media.Imaging.FormatConvertedBitmap.FinalizeCreation() at System.Windows.Media.Imaging.Fo ...Show All
