2wheels's Q&A profile
Software Development for Windows Vista Message Queue Error: "QueueExists"
I get following error (tranlated from ger to eng): "Eventqueue action error with 'MessageQueueErrorCode' QueueExists for the Queue 'a37f912a-9c...'." What I do: I have a state machine workflow with 4 states. At the point where this error happens I am in the RunningState. There I have an EventHandlingActivity which listens for a certain event. If this event happens I need to check 2 variables After a successfull check I add a delay activity (with a EventHandlingActivity) to the current state (executing state). This seems to work (my code is executed) but I cannot monitor the addition of the delay activity, because I gets te ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Resuming paused segment using SetStartPoint doesn't work
I am trying to pause and resume a segment playing a wave file. I call pPerf->StopEx(pSeg, 0, 0) to pause the segment. I then set the length using SetLength() and set a new startpoint using SetStartPoint(). However, the segment plays from the starting and not at the new start point. Should I use any flags to modify the segment behaviour. Right now it is set to zero in both StopEx and PlaySegmentEx Just before calling PlaySegmentEx, I can retrieve the length as 4608 and startpoint as 2759 (both is MUSIC_TIME). Pls. let me know if I need to do something else to get this to work. Are you sure this is about ...Show All
Windows Live Developer Forums Trouble running activities/games in messenger
i tryed to use those apps that are on this page: http://www.worldsbestapp.com/ but the problem is that they wont start. messenger gives an error - "MSN Messenger cannot start this program. Please try again later" what should i do thanks The purpose of this forum is to discuss MSN and Windows Live application development using the Messenger Activity API, and Windows Live Bots. If you have technical support questions about using MSN Messenger or Windows Live Messenger, please check the following resources... Messenger Technical Support is available on the Messenger newsgroup: http://support.mic ...Show All
Visual C++ Having several Heaps
This is a little advanced question and didn't know where to post it. I'm doing windows system programming. We can create several Heaps for the same Process. My question is, how can I copy and duplicate a Heap and create an exact copy of it in a different Heap. Both Heaps will be in the same Process of course. Perhaps you could use HeapWalk and CopyMemory SamDav wrote: This is a little advanced question and didn't know where to post it. I'm doing windows system programming. We can create several Heaps for the same Process. My question is, how can I copy and duplicate a Heap and create an exact copy o ...Show All
Software Development for Windows Vista Lies?
On http://msdn.microsoft.com/windowsvista/downloads/getthebeta/default.aspx Microsoft says: Download the Latest Windows Vista If you are not already a member of the Windows Vista beta program, there are still two ways to obtain the latest public CTP or beta version of Windows Vista. MSDN Subscriptions - If you have an MSDN Subscription (Operating System level or higher), you can download the latest version of Windows Vista. (Read information on purchasing an MSDN Subscription) Windows Vista Beta Program - If you wish to become a beta member, you can do so by registering for the world-wide Windows Vista Beta ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Problem installing dxsdk(april 06)
Hi, Ive got a problem installing the directx sdk (april 06). I go through setup untill right at the end when it says Starting Services. Then it comes up with an error message saying Error 1290.Service DirectX Debug Service (DXDebug) failed to start. Verify that you have sufficient privleges to start system services. Any suggestions Here's another big problem with the April 06 SDK installer. My install seemed to work OK, but actually toasted my msdev 2005 keyboard. I can't copy or paste, etc. No control keys work. The "Tools->Options/Environment/Keyboard" command shows all blanks. No ...Show All
SQL Server transfer access DB to SQL 2005 PRO
Dear, i have a huge msaccess 2003 DB i want to transfer it to SQL 2005 , i found tool to imigrant oracle (and i used it) but i can't find solution to imugrant msaccess thanks avner on your MSAccess tools menu in you should find Database Utilities -> Upsizing Wizard. If you don't see it, it needs to be added via Add Remove Programs. Modify Office/Access to add the "Additional Wizards" ...Show All
Visual C++ Cannot set VC++ Directories in the Options dialog of Visual C++ Express Edition
Details : The VC++ Directories page on the Options dialog does not have a list box for viewing and modifying the directories used during a build. Consequently, it is not possible to modify the build directories using the IDE UI. Workaround : C++ Directories can be added, removed or changed by modifying the VCProjectEngine.dll.express.config file located in the .\vc\vcpackages subdirectory of the Visual C++ Express Edition install location in a text editor, saving the changes and restarting the Visual C++ Express Edition. Please make sure that you also delete the file "vccomponents.dat" located in the "%USERPROFILE%\Local Settings\Ap ...Show All
Visual Studio Express Editions Searching a data base in visual basic 2005
l need to be able to search for a word or part of a word. as well l need help to code a button to add a record to the data base as well one to delete and one to save. Anyone able to help me with this. it would be most helpful. To search for part of a word use a LIKE clause in your SQL. Have you tried msdn.microsoft.com Sites like www.codeproject.com also have lots of articles on this sort of commonly asked stuff. ...Show All
Windows Forms Windows Authentication
Using the below code I can determine if the user is a member of a built-in security group, i.e. Domain Users. However, when I try to determine if the user is a member of a custom security group I get false, even though the user IS a Member of that security group within the domain. If this code doesn't wo ...Show All
.NET Development setup
Hi, I have written a windows application in .net 2.0 Do you know how I can have an install setup so that I can email the required files to another person to instal Thanks Take a look at building a Setup Project ( http://support.microsoft.com/default.aspx scid=kb;en-us;307353&Product=vsnet ) in Visual Studio or publishing your application through ClickOnce( http://msdn.microsoft.com/msdnmag/issues/04/05/ClickOnce/ ). If you are using a Setup Project you will just need to give out the installer package to those you want to install it, and in the case of ClickOnce all that is needed is to give out the UR ...Show All
Visual Studio 2008 (Pre-release) Unable to data-bind to a PasswordBox
When I attempt to bind to the Password property of the PasswordBox (binded to a property on an object that returns a string), I get the following error: Object of type 'System.Windows.Data.Binding' cannot be converted to type 'System.String'. Is string the wrong type....I tried char[] with the same result. Hi, I want to use the Password of a PasswordBox as CommandParameter of a Button. Since the Password can't be dinding, how to do so ...Show All
.NET Development Using System.Net Class
i want to write a program which will download a file from internet.......but during that i want to show some updates of most likely like progress or so...... i came to know that i have to follow the IAsync...but no further could you please provide some useful info. The timeout value choose is going to depend on several things... What server you are making the request to. Is the server frequently overloaded What is the average response time for the server What is the longest response time for the server Do you trust the server to correctly respond within a reasonable time One possible timeout is the ...Show All
Visual C# Time formatting
Dear All, I had the following code whereby I would like to get the time every 15 mins later. DateTime now = DateTime .Now; string today = now.ToString( "yyyy/MM/dd hh:mm:ss" ); txtNow.Text = today; string fifteenminslater = now.AddMinutes(15).ToString( "yyyy/MM/dd hh:mm:ss" ); txt15minslater.Text = fifteenminslater; I had tried this and when I set the time to '2006/02/28 11:58:02' which is PM(afternoon). After 15 mins later, the result show '2006/03/01 12:13:02' whereby my desired result should be '2006/03/01 00:13:02'. Can anyone please help Thanks ...Show All
Visual Studio disable button...
I am trying to programatically disable my custom wizard page's Next button using the EnableStep method of the wizard class. this .EnableStep( false ); But this isn't working. Is there any other way to control the enable property of the different wizard buttons Try this: bool enable = /* however you want to set it */ false; Wizard.EnableButton(Microsoft.WizardFramework.ButtonType.Next, enable); ...Show All
