bubixMister's Q&A profile
Windows Forms Rounded corner in panel
Hi everybody, I 've tried to find some tutorials or any other help, but just couldn't find enything that works. So my question is, how can I make a CustomPanel with rounded corners. I already have a CustomPanel class with some features like gradient backgroundcolors and custom border etc. but I just can't add rounded corners. It just can't be that complicated... Thanks for any help. ...Show All
Visual Studio Team System How to resolve: Assemblies Should Declare Minimum Security
If i want to declare minimum security, I wrote the following just above the namespace declaration [assembly: SecurityPermission( SecurityAction.RequestMinimum, Execution = true)] [assembly: PermissionSet( SecurityAction.RequestOptional, Name = "Nothing")] Still I am not able to solve this. That looks right and this does not repro for me here with a simple test case. Are you using the la ...Show All
Visual C++ LNK2005 - delete already defined in nafxcwd.lib
I try to compile a VC6 program with VC7 (Visual Studio.NET 2002) and I get following link error: error LNK2005: "void __cdecl operator delete(void *,int,char const *,int)" ( 3@YAXPAXHPBDH@Z) already defined in nafxcwd.lib(afxmem.obj) http://support.microsoft.com/support/kb/articles/Q148/6/52.asp ...Show All
Microsoft ISV Community Center Forums XML view in IE
Hi All, I am new to this forum and I am not sure if the following question has already been raised earlier. I have an xml file as follows: < xml version="1.0" encoding="UTF-8" > < xml:stylesheet href="styles.xsl" type="text/xsl" > <collection> <book> <index>1</index> <author year= "1990" > John Doe </author> <title> JavaScript &l ...Show All
Visual Studio Looking for VS Add-In tutorials or webcasts
Does anyone have a link to tutorials or webcasts about creating VS add-ins More info: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vsintro7/html/vxconcreatingaddin.asp If you go to the index in VS and enter add-in, automation, or extensibility you should also be able to view this and other automation-related topics Nishan Jebanasam ...Show All
Visual Studio Team System From RUP to MSF???
Hey. I currently work as a Process Engineer at an oragnization where we have teams comprising from 5 to 10 people, from a Project Manager, System Architect, Analyst, Programmers, SQA Engineers and Release Manager. I think after hearing all these roles you have gotten an idea that we follow a rather formall process, in our current environment we have project sites at WSS which is connected with company's SharePoint Portal, and for project man ...Show All
SQL Server xmla files
I'm trying to create an automatic deployment for an analysis services project I've created. I've used the deployment wizard to generate an xmla file which can deploy my database. The file works great if I open it within the Management Studio and press the 'Execute' button. The question is how can I execute this script from the command line (i.e. so a deployment process could do it automatically) Thanks, Kobi Reiter ...Show All
Windows Forms Where is ClickOnce App?
Hi, After successfull installation of ClickOnce app can I find where it is installed. I can find it through explorer but what I need is to find it in code Thanks ... In VB try: My.Application.Info.DirectoryPath In C# and other languages try: Windows.Forms.Application.ExecutablePath ...Show All
Visual Studio Team System MSMDSRV.EXE using a large part of the resources
Analysis services are using a large part of processor time and are using the disc all the time, thus making the single VPC image installation of VSTS Beta 2 hardly usable. I have enough memory (2GB) and the Dec version ran just fine on the same computer. Can anything be done about it I am a bit puzzled. :-( Thanks, Ogy Unfortunately it turns out we have a bug such that incremental processing of the warehouse data is not enabled.&nb ...Show All
Visual Basic please I need help in Tree View
please I need help in Tree View I want to get the SelectedNode Key how can I get IT The key corresponds to the Name node. So the following would get the key: TreeView.SelectedNode.Name ...Show All
Windows Forms Datagrid
I have tried everything I know to get a textbox in a DataGridTextBoxColumn to word wrap, including setting wordwrap, multiline, alignment and scrollbars. Nothing works, I must be missing something. Can anyone help. Thanks Dave hi, i want to use ...Show All
Visual Studio Express Editions ClickOnce Install Problem
I have created a program on my Windows XP SP2 Machine using VBEE and I used ClickOnce to install it to a network share. I have already installed the dotnet framework on the pc (a Windows 2000 SP4 machine) and when I ran the install I got an error that the application was improperly formatted, yet I can install it onto my machine (and another windows XP SP2 Machine) perfectly. Below are the details. I am in desperate need of help with this ...Show All
.NET Development Lazy initialization in the CLR
Does the CLR handle lazy initialization ok in a multithreaded environment Take the following code for instance: public ArrayList Associations { get { if ( this .assocs == null ) { lock ( this ) { if ( this .assocs == null ) { this .assocs = new ArrayList(500); } } } return this .assocs; } } Will this work in a multithreaded environment Or will the runtime or JIT re-order the reading statements or cache the 'this. ...Show All
Visual Studio 2008 (Pre-release) CustomControl ConverterParameter
Hello, I would like create a custom control and i need to convert value for displaying. The convert of this value depends of an other property of my control and i would like to take my control in ConverterParametrer I hope you understand what i wrote because. Thanks for your help Exemple : < ResourceDictionary xmlns = " http://schemas.microsoft.com/winfx/avalon/2005 " xmlns:x = " http://schemas.microsof ...Show All
Visual C++ Knee deep in warnings and errors.
Hi Does anyone know if you can force the compiler to split warning and error messages between two different tabs. I often find that on some projects when there are many warnings/errors and the two are mixed, it can be a pain trying to scroll through so you can fix the errors first. If this is not possible, I think it might be a nice little tweak for a future release. Thanks. MNiM In Visual Studio 2005 you can p ...Show All
