Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > dotnet windows forms > march 2008 > threads for march 15 - 21, 2008

Filter by week: 1 2 3 4 5

Tree Control with Columns?
Posted by Jack at 3/21/2008 9:24:57 AM
Hi All Could anyone recommend me a decent tree control that can have extra columns of text data (like how Outlook Express shows the messages), preferably in C#. Many thanks --- Jack...more >>

systray question
Posted by jvcoach23 at 3/21/2008 8:23:37 AM
please direct me to the correct news group if this is not the proper place to ask. I have the systray icon working. what i can't get to work is so that when i click the minimize icon the windows form, to get the icon to go away at the bottom, i only want to be able to get the form back up by ...more >>

Cut, Copy, Paste code
Posted by John at 3/20/2008 2:22:03 AM
Hi In a winform app I need to provide a menu with Cut, Copy and Paste options., What code do I use to accomplish cut, copy and paste features for fields on a winfrom? Thanks Regards ...more >>

6 years later - bugfix neither found its way into 2.0 or 2.0SP1
Posted by Markus Springweiler at 3/19/2008 4:19:41 PM
Hello, look at this: http://groups.google.de/group/microsoft.public.helpauthoring/browse_thread/thread/f58899a5b10440df/6f2b59a8609a7d74?lnk=st&q=HelpNavigator+AssociateIndex The solution is also known since ages: http://www.help-info.de/en/Visual_Basic_net/vbnet_faq.htm But what does Mic...more >>

WinForm update when background event question
Posted by Guy at 3/19/2008 2:05:01 PM
I suppose the following is possible, but can someone give me a clue where to start. I would like my WinForm updates when a certain event in the background (in my business layer or database) happens. E.g. when someone enters a record in a table in the db, a monitoring screen (WinForm) updates ...more >>

Multiple Connection Strings for Multiple Dlls
Posted by msnews.microsoft.com at 3/19/2008 12:52:07 PM
Hi! I am facing a small problem. Actually i have a solution having around 5 Dll Projects. Each dll project is named as Project1.DAO, Project2.DAO ...... Now i have a connectionstring each of the project which is named as :- Project1.DAO.ConnectionString Project2.DAO.ConnectionString wh...more >>

enums bitwise values.
Posted by Ibrahim. at 3/19/2008 9:18:00 AM
Hello, I have a enum structure like this ; [Flags] public enum days { Sun=1, Mon=2, Tue=4, Wed=8, Thur=16, Fri=32, Sat=64 } now i sum only sun & fri & save to database table field int daysSelected = (int) days.sun | days.fri now i want to get the enum...more >>

Delete Excel rows/sheets
Posted by Rob Oldfield at 3/19/2008 6:41:02 AM
Using OleDB to write data to an Excel spreadsheet(*), is there really no way to delete existing data without resorting to automation? *... where the spreadsheet contains other sheets that refer to the data I want to insert, so can't just overwrite the entire file....more >>



DataGridViewCell Question
Posted by anthonypete@gmail.com at 3/19/2008 4:48:49 AM
I'm using an unbound WinForms DataGridView, to allow for user changes to certain data to be saved. However, I'm uncertain how to access the string value of what a user has typed into a cell. DataGridViewCell has a value and a formatted value property, but I've noticed that sometimes FormattedVal...more >>

Simple question
Posted by Gregory Khra at 3/18/2008 3:23:00 PM
I need to draw a text string on the form. In order to do it I create Paint event handler and place a command e.Graphics.DrawString(...) Unfortunately if other controls on the form overlap with this string, they hide it. How can I make the string appear on top of other controls? (other contro...more >>

Passing class references
Posted by AMP at 3/18/2008 12:53:01 PM
Hello, Where can I find a GREAT explanation about keeping references to other classes/forms between each other. I'd like to see code that uses the different methods , public properties, set-get. Am I correct in saying one form or class has to instantiate the other one for this to work? Thanks...more >>

Microsoft.VisualBasic.RTrim Doesn't
Posted by Ross Culver at 3/18/2008 11:47:09 AM
Can anyone explain to me why Microsoft.VisualBasic.RTrim or Microsoft.VisualBasic.Trim do not remove the trailing blank spaces in a word such as "PI030010035127SIY "? I'm pulling data from SQL 2005 using a standard dataset/datatableadapter. I assign a variable for each field and as...more >>

Passing a variable to a Form from a Class
Posted by AMP at 3/18/2008 9:02:06 AM
Hello, I have a class that has a calls a method in a form to set some text on that form: This is in a Class SerialPortConnection.cs. I have an object called NewConnection. I want to pass some text to a form with this: Form1.UpdateTextBox1(" Port Open\r\n"); Here is my Form Method: inter...more >>

Cursor visibility
Posted by Arne Garvander at 3/18/2008 7:55:04 AM
When I tab into a Checkbox my cursor disappears. How can I make my focus on a checkbox visible? -- Arne Garvander Certified Geek Professional Data Dude...more >>

some language notes
Posted by davidboon28@gmail.com at 3/18/2008 6:33:33 AM
http://comp-languages.blogspot.com http://computer-language-tutorials.blogspot.com...more >>

Increase length of datagrid as form length increases
Posted by max.sofia@gmail.com at 3/18/2008 6:26:46 AM
I am about to do what I thought was a simple task. I have a datagrid in a form. When I increase the height of my form when running the application I want the datagrid to increase aswell. How do I do it? I cannot seem to increase my datagrid at all when running the app. ...more >>

Drawing Lines in a Picturebox
Posted by Mike Tuersley at 3/18/2008 12:02:01 AM
Hi, I have a series of x, y coordinates that I am trying to draw in a picturebox. I am able to draw lines okay - the problem is trying to draw the overall shape to the extents of the picturebox. My "image" comes in way too small. What am I missing? Below are out takes of my code that should...more >>

The Pixels are blurred
Posted by A. Suresh Kumar at 3/17/2008 11:06:02 PM
Hi, Iam Facing some problem in the gradient of pixels while invoking DrawIamge of System.Graphics. My objective is to position a set of pixels in a bitmap and enlarge it based on the dimension specified for the container.I choose DrawImage method of Graphics object which Draws the specified...more >>

Design advice requested: popup window
Posted by Jeff Johnson at 3/17/2008 5:03:02 PM
I'm creating an owner-drawn control (inherited from Control) which is scrollable, and I'm using standard scroll bars for that aspect (i.e., my control is owner drawn except for the scroll bars, and yes, I know, I could have used ScrollableControl). I want to implement "thumbnail panning" fun...more >>

Control Enter Event stops firing
Posted by TheFid at 3/17/2008 7:24:56 AM
I have created a custom UserControl (I call it a "Workspace") that contains four controls, one of which is an ActiveX control. The Enter event of the ActiveX control is wired up. If I embed two Workspace controls (say, A & B) in my form, the ActiveX Enter event will only fire once for each W...more >>

windows xp problem
Posted by CHRISGRAND at 3/17/2008 7:22:00 AM
Please help!!! I moved and have had my computer in storage for a while therefore I have forgotten my login password to my windows xp. Is there anyway to reset this myself? I despirately need this computer....more >>

Multiple columns in listbox
Posted by John at 3/16/2008 10:07:31 PM
Hi Does listbox in vs2008 support multiple columns? I have not been able to set the column widths property to 10, 20, 30 for instance as it expects an int32 value. Thanks Regards ...more >>

ComboBox DataBinding 1/2 working
Posted by Steve K. at 3/16/2008 5:16:40 PM
I've got a strange situation here with a DataBound ComboBox. When I change the selected item from the list my DataBound object is updated. When I try to restore the data the item in the ComboBox is not selected. Here is the relevant code: <code> public void SetAvailablePlans(List<Insuranc...more >>

Which control to use?
Posted by John at 3/16/2008 4:48:27 PM
Hi I need a layout like this http://www.infovis.biz/listview.jpg which is an MS Access list box. Which control in vs2008 allows me to do this? The list is being filled from an underlying table. I would appreciate a code example if possible. Many Thanks Regards ...more >>

Listbox populating problem
Posted by John at 3/16/2008 9:48:50 AM
Hi I am populating a list box using the below code; Dim MyResult As New DataTable Dim MySQL As String = "SELECT <field list> FROM MyTable WHERE <some condition> ORDER BY <some order> " Dim MyAdapter As OleDbDataAdapter = New OleDbDataAdapter(MySQL, DBConnection()) Dim MyDV As DataView ...more >>

Listbox questions
Posted by John at 3/16/2008 9:18:07 AM
Hi I have a few questions regarding Listbox; 1. How can I fill Listbox from an access table with multiple columns? 2. How can I return the user selected (highlighted) items in a Listbox individually? 3. How can I remove user selected (highlighted) items from a Listbox? Thanks Reg...more >>

taskbar grouping in XP/Home of open windows of one app when minmized ?
Posted by Bill Woodruff at 3/15/2008 4:24:30 PM
..NET 2.0 C# WinXP or Home SP2, all latest updates ... NOT an MDI application. In the scenario discussed here there is no "main form" : window management is being done in code, and the first open form being closed does not automatically close all the other forms (of course all opened form...more >>

service pack 2
Posted by matt23456 at 3/15/2008 12:23:01 PM
when i install service pack 2 it freezes during installation of cd or download....... help? please?...more >>

Passing info to an open form
Posted by John at 3/15/2008 12:32:07 AM
Hi How can I pass some text info to my start-up form from an external sub in a module? Thanks Regards ...more >>


DevelopmentNow Blog