yizhixiaozhu's Q&A profile
Software Development for Windows Vista GUID and ID for menu group in the Workflow designer
Hi! I want to insert my custom menu item in the menu group that appears upon right clicking a selection in the workflow foundation. I am guessing the menu group that contains "Generate Handlers" and "Promote Bindable Properties" will serve this purpose. Although I can see that this is part of the Sys.WF.CM. dll, I need the GUID and ID of this menu group to add to my ctc file of my VS package . Could any of the team member ...Show All
Visual Studio 2008 (Pre-release) List
I followed the code from one of the LINQ lesson showing how to retrieve information from the List object as follow: ...... List products = GetProductList(); ........ static List GetProductList() { List productList = new List { { ProductID = 1 , ProductName = "Chai" , Category = "Beverages" , UnitPrice = 18.0000M , UnitsInStock = 39 }, ..... } } The compiler retur ...Show All
.NET Development Installing Net Framework 2.0
I made a boo boo. Whilst the sandman was pulverizing me one night I accidently tried to install Net Framework 2.0 before installing the redist pack. Now when I try to install Net Framework 2.0 I get a message saying that there was an error creating process. The computer says that the reason for the error is because of C:\windows\system32\advpack.dll. If anyone can show me a way to correct my error without reformatting my hard drive I would be mo ...Show All
Windows Forms Can there mixed row types in DataGridView?
I have an unbound datagridview. I need to display data in different row formats. I.e. first row may have just one column spaning the entire row with some title information, then n-number of rows of following a second template. -+-----+------+----+--------+------------------- Hdg1 Hdg2 Hdg3 Hdg4 ... -+-----+------+----+--------+------------------- 0 TITLE --------------------------------- ...Show All
Windows Forms Docking a form into another one
Hi, I have a main form with a menu. I created another form which contains a bunch of controls (a treeview, some editboxes, etc.) Now, I would like to make my second form dock inside the first one, like (for example) the toolbox panel is docked in Visual 2005. And I really don't know how to do that :/ I someone can give me a link to a tutorial, or tells me at least what component ...Show All
Visual Studio Team System Team Projects and Product Releases
I interested in how people are handling releases in relation the team project. In other word, how do you handling moving from 1.0 to 1.1 or 2.0. The way I see it there are a few ways of handling this: 1. Keep everything in the same project. This seems like it would be a good idea as you would maintain a complete work item history thought the life of a product. But do we really want to Sure, 1.0 issues that are unresolved are good to know d ...Show All
Microsoft ISV Community Center Forums ISV Competency Partners left behind for Office 12 Beta
As I was renewing our partnership with Microsoft, I took a look at the "Benefits" provided to various Microsoft Competencies. To my surprise, I found that only the Information Worker Competency will be privileged enough to recieve the Office 12 Beta. Frankly I am surprised, most ISV's develop solutions to leverage Microsoft's products. Product development of line of business applications certainly come ...Show All
Visual Studio Team System Problem with images and VS 2005
hi, i hope this is the right place to ask. i'm new with vs2005. I created a simple form with a button and added an image to it but i always get this error when i try to compile and run my project. "An error occurred creating the form. See Exception.InnerException for details. The error is: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "TestApp.Resources.resources" was c ...Show All
Visual C# Use of ReadLine
I'm using the command ReadLine of StreamReader to getting data from a text file, but when file has a accented word (like FIGUEIREDO) they return the word without the accented letter (FIGUEIRDO). The code I'm using is: StreamReader sr = File.OpenText(txtRetornoOrigem.Text); String line; while ((line = sr.ReadLine()) != null) { MessageBox.Show(line.ToString(), "Information", MessageBoxButtons.OK, MessageBoxIcon.Information); } ...Show All
Visual Basic Connecting to a server
im using the exportXML command in Microsoft Access 2003 to export a .xml file to my website. I have been experiementing with the exportXML command and have been able to export a table to a folder at my website. The problem is that before the table is exported i get a connect to website dialog box where you enter your server user name and password. Once submitted the .xml file is exported successfully. I would like to write some code that h ...Show All
Visual Studio Express Editions sql query help
hi m trying to run a query that fills a text box it works but i need it to work with a string SELECT Tech, Password FROM MangerPass WHERE (Password = 123) i wouldnt know the password is 123 till someone enters it hi, if that a web application i fully agree for useing things that is much secure but i didn't use those things b4 and i didn't learn them yet so i use the easist way to acomplish what i want to do later on ...Show All
Visual Studio Team System Problem: TFS Proxy returns: TF15013 (Item.asmx missing?)
Situation: TF Client can connect at TF Server. But, problem goes when TF Client tries to connect trough TF Proxy. In TF Client output I receive following message (after using Get Latest V.): The source control proxy 'MyProxyComp' is not responding, so the request will be sent to the main server. Please verify your settings. Additional information: TF15013: The requested Team Foundat ...Show All
Windows Forms Forms
When opening form2 from form1, how do you close form1 If you want Form1 to be some sort of splash screen, look here: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=76794 ...Show All
Visual Studio Team System Unable to load methodology template.
Hi I exported the default template MSF Agile and then did some changes in it and inserted my custom plugin. Then I register the plugin in registry using the dll of my solution. and then I import this template with a different name. Now when I try to select this template while creating a new team project then it gives the following message . "Unable to load plugin <plugin name> for methodology template<template name> . Please select a ...Show All
Windows Forms Graphics question
Ok my problem is with Graphics class //------------------------------------------------------------------------------------------------ private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; g.DrawLine(new Pen(Color.Black), new Point(30, 30), new Point(30, 100)); g.Dispose(); } you see i declare Graphics g=e.Graphics where 'e' is the PaintEventArgs and then draw a line //--------------- ...Show All
