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


all groups > c# > march 2006 > threads for sunday march 12

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

save DataGridView to Xml
Posted by Henok Girma at 3/12/2006 11:59:31 PM
Hello Gurus, I want to save the state of an unbound DataGridView on my Windows Form application to an XML file so i can later load it back.. Basically, on my form I have a DataGridView, it's got some DataGridViewTextBoxCell, DataGridViewComboBoxCell etc, i want to export all that to XML.. ...more >>

Main form not getting in focus and taskbar
Posted by Khadim at 3/12/2006 11:15:41 PM
Hi, I am having this problem with my application that it is not getting itself in taskbar by itself.. i m working on this application for 5 months, don't know what happened at what time that its not getting in focus. If during startup i bring other applications(like internet browser, explorer...more >>

smtp server?
Posted by perspolis at 3/12/2006 10:47:17 PM
Hi all How can I find programmatically name of a SMTP server ??? thanks in advance ...more >>

how do I connect to an exchange server programatically to get email?
Posted by Jim H at 3/12/2006 9:25:10 PM
I want to write an outlook plug-in or even a separate app if necessary to connect to an exchange server to get mail off of it. My outlook is currently connected to Exchange server A, I need to get mail from Exchange server B and put it on Exchange server A. I'm tired of using multiple Outl...more >>

CheckBoxList event question
Posted by Hardy Wang at 3/12/2006 8:24:27 PM
Hi, I have a CheckBoxList control in my WinForm C# 2.0, I want to know everytime any checkbox in the list got checked/unchecked. I could not find any event like "CheckedChanged" of CheckBox control. Is there a way CheckBoxList can raise an event to notify any check box "CheckedChan...more >>

Is it me or this thing needs a service pack pronto.
Posted by Frank Rizzo at 3/12/2006 7:52:55 PM
I am not able to grok, how after so many betas, CTPs, community editions, flawless demos at MSDN shows, ms employees salivating at their mouth over its goodness, etc... VS2005 can suck so hard. Is it just me, or is VS2005 simply filled to the brink with all kinds of bugs? It's integration ...more >>

Where has the target gone?
Posted by Frank Rizzo at 3/12/2006 7:29:25 PM
In vs2003, there was a nice dropdown, which allowed you to choose whether to do a debug build or a release build. Where in the world is it in vs2005? I've looked through all the toolbars. Thanks....more >>

centralize a form
Posted by Roy at 3/12/2006 7:06:27 PM
I open a dialog with another. How do I centralize the new dialog based on the position of the parent dialog?...more >>



C# Fundamentals (override, virtual, new)
Posted by Marcel Hug at 3/12/2006 6:18:00 PM
Hi NG ! I'm new in C# and I'm reading a book about the fundamentals and concepts. In the chapter Methods it's written to use virtual, if i would like to override the method in a subclass. This I've to do by using override. It's also written, that's possible to "hide" the base class method b...more >>

Sending mail
Posted by perspolis at 3/12/2006 5:06:54 PM
Hi I'm using System.Net.Mail to send a mail. It dosen't work properly.it sends but I can't get it in the destination.but with previous namespace System.Web.Mail I can send mail successfully. I set all of properties like each other.. I don't know what the problem is ? thanks in advance ...more >>

Use forms authentication to protect non-aspx files?
Posted by Ronald S. Cook at 3/12/2006 2:43:33 PM
In my ASP.NET 2.0 Web app, I want to make some files inaccessible to unauthenticated users. Using Forms Authentication, this works fine for ..aspx pages, but not for regular old .htm pages. How do I protect these? Thanks, Ron ...more >>

Finding the URL being viewed in IE from a PID or hWnd
Posted by Paul Aspinall at 3/12/2006 12:54:51 PM
Hi I'm trying to find the URL that is being viewed in an IE window, by using the PID or the hWnd of the IE window. Does anyone know how this could be done? or where I should be looking? Thanks ...more >>

using music file in soundPlayer function
Posted by ss at 3/12/2006 11:32:41 AM
hi! i would like to use a file that is located in my project folder. i don't want to use the full path like c:\project\game\whoss.wav (where game is the folder for .sln file) hos can i write a reference to the place where the solution is? ...more >>

relationship in typed dataset (VS2005)
Posted by Efi at 3/12/2006 9:53:27 AM
we have a typed dataset with 2 tables - parent and child with relation and foreign key constraint. after adding 1 parent row to the parent table with 1 related(!) child row to the child table we have the following problem that never occured in VS2003: both new rows states (each one in it's t...more >>

Can a Console Applicatons use forms
Posted by newbie at 3/12/2006 8:34:59 AM
If I am creating a concole application can I acces GUIs. The textbook gives me the following code but I get and error stating "type or namespace name "Windows" does not exist in class or namespace "System" (are you missing and assembly reference?)" I know I can do it in a Windows app but is ...more >>

How to access nested parent?
Posted by MilanB at 3/12/2006 7:09:27 AM
Hello //----------------- I have following situation: public class Class1 { public struct Struct1 { public void Function1() { //Question here. How to access current Class1 instance } } } //----------------- Struct1 is nested into Class1. My Qu...more >>

concatenate integer variable
Posted by tirrell payton at 3/12/2006 2:59:02 AM
Hello all, I have a question about the concatenation operator in C#. For example, I want to concatenate an integer variable to a control. I have an integer, i. I have checkboxes, checkbox0 - checkbox5. As I loop through my integers i - 5, I want to check my checkboxes, checkbox0- checkb...more >>

Display Negative numbers in DataGrid
Posted by Gidi at 3/12/2006 1:05:44 AM
Hi, I've DataGrid which the user can enter numbers, when it comes to possitive numbers I have no problem, But when I enter negative numbers instead of writing -x it write x- (the minues sign is on the right side instead of the left), how can i change it to be displayed the right way? T...more >>

Ajax?
Posted by js at 3/12/2006 12:06:19 AM
Hi, what's Ajax? how to use in application development? Please advice. Thanks in advance. ...more >>

WebRequest Help Please
Posted by Bob at 3/12/2006 12:00:00 AM
Hi, I am new to using a web resource which is not a webservice and I am spinning my wheels with the webrequest class. I am trying to interact with a URI that has been given to me. It is say www.bloggs.com/cgi-bin/thin-client" My app gathers data and is supposed to pass this data to the URI w...more >>


DevelopmentNow Blog