Igor Kuklin's Q&A profile
Visual Studio Team System TFS in a workgroup
Hi I am trying to install TFS in a workgroup server. Since this is only for testing and the machine is isolated from the internet, I am using the Administrator account for everything. After all the installation and everything is complete, I install TFS and the installation is succesful. But after that I don't know what to do. I haven't found any new options on the Administrative Tools (its a translation from spanish so I am not sure that is th ...Show All
Visual Studio Team System Dailywise Resouce Allocation
HI All, I am trying to fetch dailywise allocation of resource. Where do I get no of unit resource assigned on daily. I am using OLEDB.11(MSP 2003) to access values from tables. Assignment table contains only cumulative quantity of resource allocated. But in AssignmentTimephasedByDay , i can see datewise allocation. But I couldnt get unit assigned dailybasis. Please help me Thanks in advance BBN BBN11: The ta ...Show All
Visual C# The IDE often automatically changes the file subtype from "Form" to "Code" in the .csproj file
The IDE often automatically changes the file subtype from "Form" to "Code" in the .csproj file, which renders the forms unviewable in design view until that change is undone. Is there any way to prevent the IDE from doing this automatically Thanks, Wilfred This sounds like a bug. If you can reproduce it consistantly, post a bug report on the Microsoft Product Feedback Center . ...Show All
.NET Development CodeDom problem with Double.NaN
How to achieve the following code using Codedom System.Double _value = System.Double.NaN; I have tried with 'CodePrimitiveExpression(System.Double.NaN)' which just returns System.Double _value = NaN; and gives compile time error. Regards ralbert. To achieve this you'll need to use a CodeFieldReferenceExpression to refer to the NaN field inside the double type. This would look like ...Show All
Visual C# Logging Feature w/o passing a streamwriter
I have written a program with several classes, and several methods that objects of each class performs. Now, I want to create a detailed logging feature, that will produce a single text file each time the program runs. I want to be able to add log entries from any method in any class in the program. What I don't want to do is, for each entry, open the file, write the entry, flush, and close the file. I also don't want to pass a streamwriter to ...Show All
Visual C# Previewing images (64*64) control....
I like to preview some Image objects in 64*64 format in some kind of control. Is there any .NET control for that. I only find the ListView control but with that I only can preview pictures in 16*16 format and that is to small for me… You can use a PictureBox control with a size of 64x64 and the SizeMode set to PictureBoxSizeMode.StretchImage or PictureBoxSizeMode.Zoom . Or you extend an existing control or you create your o ...Show All
Visual C# Form
how do I customize what the edge of the form looks like hi u could also use GDI+ to draw a region , then set your program region to this region ex: (this example from Graphics programming with GDI+ book after modification) Rectangle rect = new Rectangle(0,0,100,100); // Create a graphics path GraphicsPath path = new GraphicsPath(); // Add an ellipse to the graphics path path.AddEllipse(rect); // Set the Region property of the ...Show All
Visual Studio Team System Centralize datasource and context parameter in web tests
Hello, I have several web tests used in a load test project. All web test has the same web server context parameter as well as the same datasource. Is it possible to set them in a central location whout having to change them for each web test Thanks, Pierre Pierre, It is possible to centralize the context parameters, but not the datasources. In the Run Settings section of a load test, you can add context parameters. These load ...Show All
SQL Server Migrating from SQLServer2000 to SQLServer2005 SSIS solution
Hi, We need to migrate data from Sqlserver2000 database to Sqlserver2005. The SQLserver2000 DB was poorly Normalized and the DB was redesigned inSqlserver 2005. Both the databases are operational.Currently we have around 90 tables that need to migrate the data from the OLD DB to NEW DB, all the table mappings between the old schema and new schema have been successfully established. Each Table is treated on its own merit and applying its ow ...Show All
Visual Studio Team System Branching in Beta2
When I branch, my new branch always ends up in another workspace that belongs to another Team Project. Inorder to merge it later, both branches must be in the same Team Project, correct. So there must be a trick when I'm prompted for a root directory when I make the branch. Could somebody help me here You can merge between team projects. Can you give an example of a source and target that you're trying to use for a branch Your branch tar ...Show All
SQL Server Cannot shut down VS after using report designer
Routinely when I use BIDS to work on a report design, I cannot close BIDS because I get a message box that says: Microsoft Visual Studio cannot shut down because a modal dialog is active. Close the active dialog and try again. Of course, there is no visible dialog open. I actually have to terminate the process from task manager. I do not get this problem when using SSIS or SSAS. Only SSRS. Any Ideas Thanks! BobP Myse ...Show All
Visual C# this one is a doozy!!!
I am using Visual C# to develop a sudoku program. I have been working on it for a couple weeks now. The one thing I want it to do is to generate the puzzles through a random algorithm. The rules are a little complex but I managed to simplify them a little for the program. The one problem I am having is actually with C# itself, I don't believe it is my code because I have rewritten the algorithm numerous times. Here is the problem. The values for ...Show All
Visual Studio 2008 (Pre-release) DLink: Need more docs about loading of EntitySets.
Let's see on Northwind Customer <-> Order relation and DLink entity classes generated by SQLMetal. Helper code for printing Order id: static void WriteOrders ( IEnumerable < Order > orders ){ foreach ( Order order in orders ) Console . Write ( "#{0} " , order . OrderID ); Console . WriteLine (); } First code example: static void Main ( string [] args ) { ...Show All
Visual C++ BLOCK_TYPE_IS_VALID
Hi guys, I have a lib maked by VS6 and it's used by another application in C++ managed. Sometimes I got a BLOCK_TYPE_IS_VALID assert. Does anybody say me why Thank you You destroyed your heap. So a memory block is overwritten. I.e. you allocated 100 bytes but you copyied 101 bytes into it. You can use _heapchk to get close to the point were the error has its source. You can use _CrtSetDbgFlag with CRTDB ...Show All
Visual Studio Team System Visio for Enterprise Architects 2005 does not like Bold?
I have an issue with Visio for Enterprise Architects 2005 where it takes all of my non-null fields and changes them to non-bold text and only bolds the first primary key. Anyone have any ideas to fix this This behavior is intentional as it allows users to see which columns are required and which can be null just by looking at the diagram, without referring to the Database Properties tool window. I haven't work ...Show All
