Woodyone's Q&A profile
Software Development for Windows Vista If you have trouble installing the Windows SDK...
If you run into problems installing the SDK, there are a few common culprits. Click the Log button on the "Install Complete" screen and open the log. Or browse to your %temp% folder and open sdksetup.txt. Scroll all the way to the bottom, because that's where the error will appear. One frequent problem is with Microsoft Document Explorer 2005 in the log. For instance: 10:45:37 AM Tuesday, January 24, 2006: [SDKSetup:Info] Config_Products_I ...Show All
Software Development for Windows Vista Workflow terminated by runtime - error details
I noticed with the Workflow Monitor tool that my workflow got terminated when callling into a webservice. Where can I find more detailed information about why the workflow got terminated, thx in advance, Joris [MVP WSS - http://jopx.blogspot.com] Thx, this works but how would you do something like this when you expose your workflow as a webservice and it is running within the context of asp.net ...Show All
Visual Studio Express Editions How to get DDL script for MS SQL database?
Is there any way to generate DDL for a database used in a Visual C# Express project I've searched the MSDN but the answer provided doesn't work on VC#E, unfortunately... You can not do it through the IDE, you will need to use one of the specific SQL Management tools for SQL Express to do it. The other option is to attach the database file to the SQL Express instance on your machine, then use the command lin ...Show All
Visual Studio Team System Next release... when?
Ok, I know this kind of question is a bit inconvenient but... I'm really anxious about that, so... When should we expect the next release o MSF for CMMI Together with Beta 3 refresh What kind of improvements to expect of it Will it contain the whole set of docs and reports If not, when will something like a RC come to public Version 1.0 only with VSTF RTM Thanks, Max Andrade Hi Max, ...Show All
.NET Development Can I open an Access database from vb .net if the mdb file is opened.
if I try to use the following connectstring "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\cse1\src\test.mdb;Mode=Share Deny None;User Id=admin;Password=;" I get the following error "The Microsoft Jet database engine cannot open the file 'test.mdb'. It is already opened exclusively by another user, or you need permission to view its data." I was assuming that mode-Share Deny None would open the database in read-only mode, since I have to ju ...Show All
Visual Studio Express Editions create setup package
how can i create a setup package for my application in C# 2005 Express In the Express Editions you are limited to ClickOnce deployment, take a look at this MSDN article on it to guide you through the process. ...Show All
Software Development for Windows Vista Debugging State machine workflows Strange effect
Hi all, I ahve a Strange effect: I am debugging a state machine that has the following structure StateMachineWorkflow -> MyState -> StateInitialization -> MyOwn Activity -> Set State Activity I set a Break point in MyOwn Activity and follow the parent path until the StateMachineWorkflow and follow the descending path to MyOwn Activity and miracle when I compare both "pointer", there are not identical..... ...Show All
SQL Server How to generate SP scripts
Hi ... there was a cool feature in sql 2k for exporting scripts for stored procedures. i.e for eg if I had 3 procedures. prc_proc1 prc_proc2 prc_proc3 and if I want 2 export the script of these sp's to 3 individual files rather than one single file then I was able to chose in SQL2000 i.e I was able to create 3 files with the same name as the sp's prc_proc1.sql prc_proc2.sql prc_proc3.sql Now I wa ...Show All
Visual Studio Team System How to delete a new project that failed to create properly?
Hi, I tried to add a new Team Project and an error occurred when it treid to configure the sharepoint portal. It said it tried to roll-back the changes, but that didn't work. I'm not shown this project anywhere to delete it. If I try and create a new one with the same name it won't let me as the name is not unique. Is there a way to delete this 'dead' project from the server THanks Chunda tfsdeleteproject might ...Show All
Visual C++ Create a ListView in a tabctrl?
Hi, I have a TabCtrl in a nondialog window, and I want to add a ListView or ListCtrl in one of the tabbs. How I have tryed everything, nothing works. Does someone know were I can find more information on how I do this. Maybe someone can post a little bit of code that explains this. Please help me! Check this: http://www.codeguru.com/forum/showthread.php s=&threadid=130460 ...Show All
Software Development for Windows Vista How to pass parameters from one activity to another?
Hi, I am new to WWF. I am trying to create an Submit Request --> Approve/Reject Request workflow of type Sequential Workflow. I have an EventDrivenActivity in which there are 2 activities HandleExternalEvent that waits for user's approval and a CallExternalMethodActivity called ApproveRequest that will update the database. Here, I have created an event handler and defined properties like [Serializable] public class UpdateRequestArg ...Show All
Visual C# display webpage in windows form
i want to display certain webpage in my windows form, the code i used is as follow.... private void button1_Click(object sender, System.EventArgs e) { object Zero = 0; object EmptyString = ""; string webpage=" http://bursa.n2nconnect.com/BursaStockSearchAll.htm "; axWebBrowser1.Navigate(webpage, ref Zero, ref EmptyString, ref EmptyString, ref EmptyString); } if i use the above coding, it will display the webpag ...Show All
.NET Development Printing/Print Preview Problems
I need to be able to print a report from report server on my own terms, so I have written some code to retrieve the report rendered as EMF and preview it, and then print it. The problem is that the PrintPage event of the printdocument fires too many times and causes an exception in the collection I am using to store the streams that each page is in. When I use an if-conditional to keep the code from executing, I only get the second and third ...Show All
.NET Development Asp.Net codebehind files
Can two web form have a single codebehind file. Yes, but the IDE does not like it. It would be better to create a class that derives from Page and then derive each of the web form code-behind classes from your derived class. So for example a page named Orders.aspx and a page Customers.aspx would have code-behind classes named Orders and Customers respectively. Both Orders and Customers classes would derive fr ...Show All
Smart Device Development Add an icon next to the activesync arrows?
Is there anyway to add an icon to the top of the screen, in the bar that houses the wireless icon, etc Thanks. Yes, via Notification API. See http://www.opennetcf.org/library/OpenNETCF.Windows.Forms.NotifyIcon.html ...Show All
