ComputerSue's Q&A profile
Software Development for Windows Vista Scaling out Windows Workflow
Looking for a point in the right direction for scaling out an windows service hosted workflow to multiple application machines. In the MSDN article "Performance Characteristics of Windows Workflow Foundation" http://msdn2.microsoft.com/en-us/library/Aa973808.aspx they show workflows running on multiple machines. Are these machines sharing the durable queue thank you adam Tomas how does WF handle running the same workflow for the same instance (GUID) on multiple servers. Like in a multi level document approval workflow. Can two people using the same document approval instance approve and decline the workflow, or is the persistence locked so only one instance of the workflow is exe ...Show All
Visual Studio How do I re-enable available guidance in a Guidance Automation solution?
Somehow, I've lost the "Set Content Files Build Properties" recipe in my solution. The other recipes, such "Register Guidance Package" still seem to be available. How do I get this back Thanks! Michael Weed Thanks Victor. I thought that might be the case. It seems I lost it when I refreshed my solution from source control (VSS) by doing a "Get Latest Version." I tried a few things on my own today, but to no avail I eventually created a whole new GAT solution and ported my code/objects over. I definitely would be interested, though, if you come up to a solution to this problem. Regards, Michael ...Show All
Visual C++ Check Boxes
Hi, I know this might be in front of me ready to bite my head of but i dont seem to see it... Basically i want to initialise my checkbox to be checked when the program runs and my frame appears. I have checked the properties of the checkBox but i do not seem to find the solution to this. Any suggestions will be much appreciated! Cheers Anger. Add a class variable for the check box and use the SetCheck function as follows m_btnCheck.SetCheck(BST_CHECKED); (Here m_btnCheck is the variable name for the check box)) Thanx. ...Show All
Visual Studio Team System Visual studio 2005 causes PC to crash after adding form parameters
Using VS2005, captured the actions of searching a product allocation On playback realised that a particular page wasn’t recorded at all. Hence ran Mercury Load runner to record the missing page with the form parameters field that contained a large volume of text. In the Visual Studio web test, Created a new web test and added the chunk of text captured by Mercury Load runner into the form parameters section. The application as well as the PC froze and I had to force boot the PC. 2162 wrote: It took me 30 minutes to record using LoadRunner and truncate all spaces and double quotes, before copying the large piece of text into the form parameters ...Show All
SQL Server XML Problem when scheduling SSIS package
I am getting an error when I try to schedule a package. I can run the package with no problems from BIDS. For some reason it is throwing an error when I try to schedule the package using SQL Server Agent. Information on how to resove this would be greatly appreciated. Executed as user: MACHINE\SYSTEM. ...n 9.00.1399.06 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 5:41:55 PM Error: 2007-02-19 17:41:56.01 Code: 0xC0011007 Source: {48427B5A-10F6-4054-B7EB-F0F19B90F334} Description: Unable to load the package as XML because of package does not have a valid XML format. A specific XML parser error will be posted. End Error Error: 2007-02-19 17:41:56.01 Code: 0xC0011002 Source: {48427B5A-10F6-4054 ...Show All
Visual Studio Express Editions error LNK2001: unresolved external symbol "__declspec(dllimport) int const _afxDBCS" (__imp_?_afxDBCS@@3HB)
Hi, I have a MFC extension library developed in VC6 and want to rebuild it in VC 2005. The dubug version is build successfully but failed in release version build. The message is " error LNK2001: unresolved external symbol "__declspec(dllimport) int const _afxDBCS" ( __imp_ _afxDBCS@@3HB )" I dumpbin the mfc80.dll and found that the _afxDBCS is exported but it dose not exist in mfc80.lib. Is my mfc80.lib file is error in VC 2005 Samuel If you are using the express edition then MFC is not supported there. If you are using othe editions, please post at http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=29&SiteID=1 Thanks, Ayman Shoukry VC++ Team ...Show All
Visual C++ MFC SendMessage and PostMessage
Hi, Does anyone have an example of how to use those methods (oh... and not the MSDN reference ) tnx Ok, Maybe I was not clear in my question before, but the solution to what I was searching for is very simple and it looks like this: // get the wanted CWnd instance (could be a button, toolbar etc...) CWnd* pwnd = SomeWnd; // get the wanted commad id (like: ID_FILE_CLOSE etc...) UINT commandID = SomeID; // than just send it :) pwnd->SendMessage(WM_COMMAND,commandID); that's, it! ...Show All
Visual Studio 2008 (Pre-release) Videostream
Hi all. Been looking around with the aim of writing an app that can both preview and stream webcam video, but appear to have fallen at the first hurdle. All the information I can find seems to be older, using either native calls or DirectShow to perform this, but I've been told that the framework now supports using a WebCam. Anyone got any information on how to use a webcam preview, and maybe how to go about streaming it over a network Thanks! Further detail. The CBaseRenderer class helps in creating a streaming WMF Filter (and you can use the InputPin that it provides to retrieve the individual frames as they are passed to the Filter). The frame samples are pushed to the filter by the graph through the ...Show All
Windows Forms Creating install packages for clients without .NET framework
I have only ever done Web Application development, so with that being said: If I create a Windows Application and compile it into some installation package and give it to someone who does not have the .NET framework installed on their system, will it automatically install it for them, or simply error out and tell them they need the .NET framework Is there a way to wrap up the .NET installation with the installation of my Windows Application It can be done using installer projects in VS 2005. Check the following link for more info. http://forums.microsoft.com/MSDN/EditPost.aspx PostID=683152&SiteID=1&ReturnUrl=%2fMSDN%2fShowPost.aspx%3fPostID%3d683039%26SiteID%3d1 Best, Sriram ...Show All
SQL Server Truncation warning, how to reset data flow columns
I keep getting a waring: [Production IDW [1]] Warning: Truncation may occur due to retrieving data from database column "Industry" with a length of 16 to data flow column "Industry" with a length of 8. When I look at the industry lookup table the column size is 50. But the data flow metatdata is saying the oclumn is 8. How can I change the data flow column When I try to edit it and click on metadata it is uneditable. The field it is matching to is 50 and the field it is coming from is 16. I don't even have to close the window. I just click on another column properties, then go back to this one to see the value changed back. ixul. ...Show All
.NET Development Download file with webclient through http
I use webclient down a file from a http location. The method I use is webclient.downloadfile(....). The problem is it seems always download an older version file even the file on http location is already updated. It seems the program does run a few seconds to download the file. However, it's not the latest version. Anybody know what happened I'd like the file be download everytime no matter if it was changed or not. Any suggestion If the request is going on the wire and the server is sending some old version - there is nothing you can do from the client side To determine this capture a netmon/ethereal trace and see what is being sent on the wire or capture a systemnet trace http://blogs.msdn.co ...Show All
SQL Server limit number of attributes in a model
Processing Association Rules model on SQL 2005 Standard edition produced following error: "Error (Data mining): The 'WO_3' mining model has 6690 attributes. This number of attributes exceeds the attribute limit of 5000 allowed by the current version of the algorithm associated with the mining model." How can I limit number of attributes in a model Thank you You need to limit the attributes you feed to the model from the source data. In this case you are using a nested table, let's assume "Products". Each nested key e.g. "Product Name" becomes an attribute. You need to limit the product set you want to use to the 5000 attribute limit. There are a variety of ways yo ...Show All
Gadgets Can someone test my gadget please?
I posted my gadget a couple weeks ago and it has gotten a good number of downloads (~1500 atm) but mostly negative response. I suspect the problem is that I developed and tested this gadget on Vista RTM, but the Gallery only lets you choose "RC1" as the newest compatibility level (stupid ). I have not had any problems loading into the Sidebar on any RTM machine. What would really help me is to get a few people try to load it up and make sure it is working properly under a variety of environments (RC1, RC2, Beta, RTM, whatever), so I can figure out what the issue is that people are having. You won't be able to test the full functionality of the gadget because it requires you to have a particular type of webcam to stream video. ...Show All
Smart Device Development C# compiled screen handler
I am using Windows Application. I have a C# compiled screen handler. First I load the data base for the screen, 21 X 1000. Then i use Console.Write() to fill each location in the screen. I do not know if it works because i do not get an output. I have 3 buttons, 1 textbox, and one combobox. Do i focus on the textbox before i write private void button1_Click( object sender, EventArgs e) { } public static class abcde_read_garage_file { public static char [] q = new char [210000]; public static String header = "G_F_R_SSS_LICENSE_WA" ; public static String headerx = "G_F_R_SSS_LICENSE_WA" ; public static char [,] garage_array_database = new char [21, 10000]; ...Show All
SQL Server Default values for datetime parameters
Hi all, I have a report that needs a to-date and a from-date as input. I would like them to be set to today by default. I have set the data type for both parameters to DateTime and the default value as "Non-queried" = Today() This does fill in the dates with today, but I cannot change the value in the fields, until the report has been generated once. I just want the date to be equal to today since 90% of the time that is what my users wants to see - but I want to give the last 10% the chance to change the date without having to generate the report first. The date-fields are locked until some of the other parameters are filled in... It makes no sense really. Hope you can help me here :-D -- Heidi, Denmark ...Show All
