cerulean47's Q&A profile
Visual Studio How can I manipulate configuration/platform information in Solution file?
Hello, Is there a way to programmatically modifiy/populate the configuration/platform information in the solution file Specifically, the following sections: GlobalSection(SolutionConfigurationPlatforms) = preSolution Default|.NET = Default|.NET Default|None = Default|None None|.NET = None|.NET None|None = None|None EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {00643628-BB5E-4048-B264-233391C4A4A9}.Defa ...Show All
Visual Studio Team System Problems with Debug and FxCop
Hi All, Sometimes when I starts the debug process, it do not stops in my breakpoints. I do the same thing with all my rules, but sometimes all my breakpoints do not work in all my rules.... When it happens, I am forced to create a new project and import all my rules to this new project. It is not a good idea and I'd like to know why it happens and if there is a solution. It happenned 4 times up to now. I am using fxcop 1 ...Show All
Visual Studio Team System Old Users show up in "Assigned to" field
To add everyone in my team as users, I have added a distribution list to Contributors group in team project. Now all these users do show up in "Assigned to". We keep up to date that distribution list, but still old users(ex-employees) still show up in Assigned to drop down list, which is kind of confusing for users. How to remove those old users from "Assigned to" which is still showing up even though that distribution list d ...Show All
Windows Forms Converting a string array to a system.drawing.point array
With no success, i am trying to convert a string array to at point array. I have tried the code below, but I get the message - 'Value of type 1-dimensonal array of strings cannot be converted to system.drawing.point'. Is there a way to do this conversion Dim _point(2) As String _point(0) = "50, 50" _point(1) = "100, 25" _point(2) = "200, 5" Dim _curv As Point() _curv = CType ...Show All
Visual Studio Team System problem with public nested class
I have public nested class. I hit this problem: http://www.gotdotnet.com/team/fxcop/docs/rules.aspx version=1.35&url=/Design/NestedTypesShouldNotBeVisible.html it's just one more rule I would like to deactivate. that becomes repititive and I come here for advice. I really think that there is no better way to implement what I try to implement but here is a sample, loking for suggestion: class UndoManager { List<Group> done ...Show All
Windows Forms Work with DWG and PLT files from .NET?
Hello, I am trying to find a component, control, or assembly for .NET that will allow me to work with DWG and PLT files in a Windows.Forms application. I have come across a number of ActiveX controls and the like, but I was wondering  ...Show All
Visual Studio Team System Plans to support remote working on GotDotNet
Are there any plans to support remote working with VSTS on GotDotNet This would seem to be an ideal platform to showcase this facility. Will Yes, it certainly would be a great showcase - thanks for the suggestion. I don't think that we can really talk about this in much detail at the moment, but clearly it's an idea we'd like to explore further with the GotDotNet folks... ...Show All
Windows Forms scrollbars in windowsforms
I have a form with a maximum height, the width always the same. When the maximum height is exceeded, scrollbars automatically appear. I want to keep the vertical scrollbars, but a horizontal also appears, because the vertical one is placed inside the form. (the width of the vertical scrollbar is the width which the horizontal appears for) How can i solve this problem Adjusting the width of the form doesn't help. I really want the hor ...Show All
Visual Studio Express Editions Windows Form Aplication
hello if I create a new project-> windows form aplication-> build aplication.... the program will run on my system, but not on other system with same OS(windows XP SP2) MarianL wrote: hello if I create a new project-> windows form aplication-> build aplication.... the program will run on my system, but not on other system with same OS(windows XP SP2) The target machine needs to have the ...Show All
SQL Server Dynamic query: EXEC - Need to get a return value from query
I use dynamic SELECT statement trying to achive the followng: DECLARE @table varchar(50) DECLARE @ColumnA varchar(50) DECLARE @Result float SET @table = 'TABLE_A' SET @ColumnA = 'COLUMN_1' SET @SQL = ' SELECT @Result = (SUM(( ' + @ColumnA + ' )) FROM ' + @table EXEC (@SQL) I need to assign the outcome of this statement to the @Result variable. It does not work because of different contexts for @ ...Show All
Visual Studio Team System Setting up TFS for non domain users
We have a scenario where TFS will be installed on a domain authenticated PC and administered by a domain authenticated user account. However our development PCs are virtual machines that run in a workgroup. How do I setup TFS to recognise and user non domain authenticated users Hi.. Not tried it myself, but something like this may work -Add the domain user as an administrator of the domain computer -Add ...Show All
Visual Basic Moving a picture
could someone help me with this all i want to do is you click the picture, move it, let go of click and it stays there Public Class Form1 Dim MDown As Boolean Dim MeLoc As Point Dim CaptionHeight As Integer = System.Windows.Forms.SystemInformation.CaptionHeight Private Sub pb1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.F ...Show All
Visual Basic Creating a "Flashcard" program 4 kids
Hi all, I am taking beginning VB in college and I am creating window apps rite now, I would like to do a side project. The side project would help my kid on math, what it is is a math "Flash card" type program , what im trying to do is have program create random numbers like " 4 x 4 = " or " 10 + 5" that type of thing, I have looked thru my text book "Programming in Visual Basic .Net" ( its VB 2003.net vers that I am using) and only example they ...Show All
SQL Server ASP.NET and OLAP offline (.cub) file provider
Hi, I would like to know, what provider I must use to access the olap offline cube. also is there any way to connect offline cube with asp.net, if so how . if you have any good examples for that please let me know. thank you in advance. Rgds Jag I'm not an expert in this by any means, but I suggest you look at the docs for ADOMD.NET and XMLA in SQL Server Books Online. You may also be ...Show All
Visual Studio Chart busters
Our users have their existing reports made in excel and I'm trying to migrate them onto the web using ASP.Net and .rdlc One of the report is a nice chart and when I made an equivalent using .net reports with chart type 'simple column' its perfect except one thing. In the original excel report, they had amount of value written for each of the value items (on top of the vertical bars) where as I could not figure out how to make it ...Show All
