Answer Questions
TomasZednik Saving a Cookie from Inside a Secondary Thread
Yes, I know this is an ASP.NET question and I should ask it on the ASP.NET site, but I'm usually a WindowsForms kinda guy so I wanted to post the question here first. I have to start a new thread on an ASP.NET page (using VB.NET)  ...Show All
Zizhong Printing tiny controls, when painting
Hi, I have a problem in printing, when I paint a control. It displays properly in screen. But when I am printing, the control appears tiny. I am using the following code block: private void PaintCtrl(Control ctrl, Graphics graphics, RectangleF rectF) { Bitmap bitmap = null; PictureBox pic = ctrl as PictureBox; if (pic != null) { if (pic.Image != null) { bitmap = pic.Image as Bitmap; } } if (bitmap == null) { bitmap = new Bitmap(ctrl .Width, ctrl ...Show All
Wagner K. designer can't load form. Where is 'more information'?
after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or m ...Show All
robbiesmith79 ClickOnce error: Manifest XML signature is not valid
Hi guys, I have been trying to troubleshoot a ClickOnce application installation on a XP box, the only one that gives the error out of 8 machines tested. I have included the error log below, do anyone know how I can resolve this issue. Any ideas would be greatly appreciated. PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment. ...Show All
Dato0011 Stand Alone (C#) conversion to Web Based (ASP.NET)
Is there a tool or method to take an exisiting WindowsForms application written in C# and convert it to be a brower based application (ASP.NET) Thank you, John Sanders Checked it out. First of all, it appears to support on VB.NET, no ...Show All
dbunder UITypeEditor for complex type
Hello. I'm tring to create custom editor for Brush object. I've done the UITypeEditor, attached the property and everything. private Brush _brush = Brushes .Yellow; [ BrowsableAttribute ( true )] [ EditorAttribute ( typeof ( CustomBrushEditor ), typeof (System.Drawing.Design. UITypeEditor ))] public Brush Brush { get { return _brush; } set { _brush = value ; } } My problem is that the value sel ...Show All
Alexey Shirshov ADO.NET, DataSet and pulling related data from the SQL 2k
Please let me know if at any point I'm trying to force my way through doors already open :) My goal is to write a class that would enable me to populate the whole dataset with schemas of tables being in relation with the one in t ...Show All
IT wanabe Strange Timer Check
I would like a timer to stop when I call a new System Process. However, when that process ends, I would like my timer to begin again. Is there anyway to do this Jason Check out the Process.Exited event, which runs when your ...Show All
SRichardson Hosting a form on a server and using it from a client application
Hi, Since the form class (indirectly) inherits from MarshalByRefObject, I assume it can be hosted on a server application and accessed from a client. I have a form that is within a class library that is hosted by a simple server. A simpl ...Show All
Sridhar Madhugiri MSFT Infragistics for windows forms
hi guys, I m doing a project in windows forms , which implements the Infragistics controls , i have to create skins sort of things for all the controls in that along with the forms.Say i have 3-4 UltraButtons , and some other controls , all infragistics , when i want 2 change the skin i want the designs to apply 2 all the controls in that form inclusive of it . Just something like the skins of winamp, etc... hope i get a reply soon ...Show All
SmellyMutantCat HOW TO: Dynamically Add a Control Without Hardcoding the Control Type in Visual Basic .NET
this article http://support.microsoft.com/default.aspx scid=kb;en-us;311321 is very interesting, but only tells how to add controls to the form. I want to do more than that and add a control to a previously added control. Let's say I add a panel to the form ...Show All
Venkatesh Mookkan How to disable "Ctrl-Tab" navigating between MDIChildren
Hi. I've tried to find an answer for this, but i think the terms are too general. I'm developing a windows app that uses MDI. We've created our own (simple) framework wherein the forms are navigated through a tabcontrol, i.e. tabbed forms. An unexpected bonus of the MDI was that the user can switch between the open forms with "Ctrl-Tab" and "Ctrl-Shift-Tab", and i respond the the "Deactivate" and "Acti ...Show All
dchristal DataGridViewColumn with array of RadioButtons
[C# Windows Form] I would like to have one of my DataGridView columns as a custom column with one or more radio buttons in it. I tried adding a groupBox(with two radio buttons) but the groupBox was getting displayed in the cell which had the focus. Then I tried drawing the groupbox in paint method, when the colu ...Show All
anaconda2010 Are opportunities knocking the doors of Networking Administrators
Hi, I have a point on which I have been thinking on for sometime - Will the advances in computer technology, and the growing importance of the Internet in commercial transactions, have resulted in computer networks becoming more critical to businesses t ...Show All
ra7207 ListView: HideSelection and Scrollable properties
Hello, I have the following problem with the ListView component: I have define a ListView with the 'Scrollable' property set to false. And no scrollbars appears. At run time, after setting the property 'HideSelection' to true, my ListView object becomes scrollbars. Is there an interraction between those two properties. This problem occurs only with .Net 2.0. It works fine with 1.1. Many thanks in advance for your ...Show All
