Answer Questions
damned commercial applications in .NET
I'm wondering if anyone has developed any commercial applications using .NET Is there any statistics on how many PCs have the .NET Framework installed I'm interested in developing an application using WinForms, but I don't want it to be a waste o ...Show All
Robert Wilczynski Pocket PC Client and accessing the server version on GotDotNet
Hi, Does anyone know how to get the PocketPC client of TaskVision working with the source that on the TaskVision workspace on GDN (the 1.6/1.7 version) Is anyone even working on this project I am also looking vor a VB.NET version of the PocketPC c ...Show All
jfstephe How do you catch the delete event on a datagrid?
Hi All, I want to catch when an item is deleted from a datagrid by the user selecting a row and pressing the delete key on the keyboard. I assume this is simple but as I cant seem to find the answer on the net I thought i'd better ask. Danny ...Show All
Mark Blomsma SelectedValue DGVComboBoxCell??
Hi! please help me, how can i select a value in a datagridviewcomboboxcell i'm using a dataset as datasource . . ex combobox contains: Display member Value member ABC 1 BCA &nb ...Show All
kbiesbrock WYSIWYG HTML Editor Control
There are tons of browserbased WYSIWYG HTML Editor controls. But, i'm building a windows based Content Managment System, and need a HTML Editor for Windows. Anyone know of a control i could use, or a way to export to HTML Is there classess&nb ...Show All
g_atreyu Custom Control Click Event
I Have created a custom control which has a couple of labels on it and a progress bar. When i use it on a form, i want to assign a click event to it, so that if you click anywhere on the control, its registered as a click on the control. Adding the control.click event to an eventhandler doesnt seem to work. What am i doing wrong What do i need to do to get it to do what i want Cheers Hi I came across th ...Show All
XcoRpio Projects organization
Good morning, I am developing a MDI application. Is it possible to place the parent form in one project and organize the child forms into seperate projects by functional areas I would like the parent form project to handle all global activities like&nb ...Show All
UV Protector MDI Child Forms (Window Size)
Hello, I have a MDI application that has many child forms. Some of these forms need to appear maximized and others are set to a specific size (they cannot be made smaller, or bigger). However, when I run the application I encounter the&n ...Show All
Michel Peres Problem with code serialization for child controls
Hello, I have a user control that contains a TextBox in it. I want to be able to change the properties of the TextBox at design time. For the most part I got it to work, but there's a small problem. Here's the sample code: public class MyUserControl : System.Windows.Forms.UserControl { ... ... [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public TextBox TBox { get { return this.textBox1; } } ... ... } public class F ...Show All
ShunterAlhena Loop calling a class causing a memory leak?
I've recently inherited a simple console application from another developer and found that when it's running it keeps eating more and more memory until it either finishes processing or the computer runs out of RAM. I suspect the problem is with the ...Show All
Debjit Bit fields
I'm trying to write a general method that can set a flag on an arbitrary bit field. Something like this public static void SetFlag(Enum flags, Enum flag) { flags = flags | flag;//This won't work!! } So that when I write the following it&nb ...Show All
#LS Problems with Office XP Web Components (OWC) on Visual Studio .NET
Hello, I'm making a Form which has a Office XP Spreadsheet Web component, I read on MSDN that the default class wrappers that are generated by Microsoft Visual Studio .NET don't allow you to handle that event, so I need to modify and to regenerate the class wrappers for the Office XP Web Components. I've followed step by step each article to do this, but some information is incorrect or insufficient. Here is a description what I did: Fir ...Show All
R. van Poelgeest Listbox - remembering selections
Hi, I'm trying to create a listbox derivative that remembers previous selected items when the underlying data changes, and reselects the ones that remain after the event. If I inherit from it what can I hook into that'll allow me to detect the changing underlying datasource Cheers ...Show All
FransHals My experiences with WindowsForms
I'd like to share my experience porting a program to .NET. Our company had a little program, written in Access. You'd enter some information, which would be passed to a DOS program that created some results. I ported the entire program - the Access& ...Show All
J-BRIM Cannot Modify ToolStripItem Pressed property
Hi, The ToolStripItem has a (read-only) Pressed property . How can i explicitly set the state to pressed I am unable to find it in the docs. fizgig As the ToolStrip is completely managed control there is no underlying Win32 control, so calling unmanaged code won't help. You have two choices that I can see: 1. Use the Checked button on the ToolStripButton. this .toolStripButton1.Checked = true ; ...Show All
