Groups | Blog | Home


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 2008 > threads for friday march 21

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

MenuStrip and ContextMenuStrip
Posted by Tony Johansson at 3/21/2008 10:28:51 PM
Hello! I have a System.Windows.Forms.MenuStrip with some ToolStripMenuItem. One of these ToolStripMenuItem is called saveMemberToolStripMenuItem. This one is defined like this this.saveMemberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); I have also a ContextMenuStrip wh...more >>


C# and Web 3
Posted by Logician at 3/21/2008 10:18:50 PM
Does anyone have details from Microsoft(eg press statements) about its commitment to C# and Web 3 technologies? Specifically, the role of C# and the use of RDF, Microformats and a higher level of data encapsulation. Some useful links: http://en.wikipedia.org/wiki/Web_3 http://internet-...more >>

OOP problem: multiple inheritance througt interfaces?
Posted by Gambero at 3/21/2008 7:50:23 PM
Hi, i have this classes: class Db class SqlDb : Db class OracleDb : Db class DbConverter class SqlDbConverter : DbConverter class OracleDbConverter : DbConverter now, in SqlDbConverter classe i would like to use DbConverter methods AND SqlDb methods, in OracleDbConverter class i would...more >>

Static Classes
Posted by Prefers Golfing at 3/21/2008 3:56:06 PM
We are wrapping web ui controls in our own classes. Is there a downside (performance/memory management) to making a class static? ...more >>

VS Icons
Posted by AMP at 3/21/2008 2:39:08 PM
Hello, Where can I find a list of the Icons VS2005 uses in the IDE? I'd like to print a copy for reference. Thanks Mike...more >>

Postback Question
Posted by Rick K at 3/21/2008 2:37:00 PM
Question: Did the (!Postback) method change from VS2005 to VS 2008? I'm working in VS2008 and a tutporal DVD I am using, uses VS2005 This errors at the postback line in 2008 and not in 2005..why?? public partial class _Default : System.Web.UI.Page { protected void Page_Load(object send...more >>

Resource file question!
Posted by CSharper at 3/21/2008 1:47:05 PM
I am using VS2008 C#3.0 and I would like to know if some one can help me wiith the following 2 questions; 1. I have a XML file called test.xml file in resource and I would like to how can I read the xml file wihtout extracting it to a external file? I would like to load the object into memory an...more >>

"An operations error occurred"
Posted by Andy at 3/21/2008 1:46:06 PM
Hi, I'm having a problem querying active directory. It happens so far only on one computer under a particular user account. Things seem to work fine for that user on another computer, and if I logon to her computer the query works fine as well. here is the C# code I'm using to do the query...more >>



ASP Wizard Steps
Posted by Robert Bravery at 3/21/2008 1:25:53 PM
Hi all, How can I keep track of which wizard steps have been navigated to and completed, as well as how far down the wizard the user has navigated, ie I want to knw that he has been as far as step 5 and not step six. I gather this would be esiest by keeping a flag on the wizard. Thanks ...more >>

C# generic containers from a "C++ perspective"
Posted by Giovanni Dicanio at 3/21/2008 1:04:20 PM
When I have a List<T> in C#, I think that the "list" (i.e.: dynamically growing array) stores "pointers" to T instances, e.g. considering a pseudo-equivalent C++ code, my understanding is that the C# version: List< MyClass > is equivalent to something like this in C++: std::vector< My...more >>

PointToScreen problem in UserControl
Posted by A Nonymous at 3/21/2008 12:19:27 PM
I created a PopUp edit based on a UserControl. It has a TextBox and a button and works like a DateTimePicker except that in addition to date and time, you can pick repeat intervals, days of the week, second Tuesday, etc. The problem is with the positioning of the PopUp. Basically the firs...more >>

scalar function call
Posted by rodchar at 3/21/2008 12:16:01 PM
hey all, is it possible to call a sql server scalar function from c#? thanks, rodchar...more >>

Thread Debugging
Posted by OldButStillLearning at 3/21/2008 11:28:01 AM
I don't have much experience with threads or debugging of those threads. I'm using VS 2005 pro. I'm getting a "TypeLoadException" error soon after I invoke a thread. It is identifying a Enum member is a class for which there is a "reference to". Anyway I am trying to step through the proce...more >>

Application.DoEvents() Equivalent in a Windows Service.
Posted by Tino Donderwinkel at 3/21/2008 9:48:58 AM
I have a Windows Forms application that I'm 'converting' into a Windows Service. In order for the service to stop, I have to wait for an object to change it's state. In the windows forms application I have something like; while (myobject.state != objectstate.finished) { Application.Do...more >>

Recommendations for tree control?
Posted by Test at 3/21/2008 9:25:58 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 --- Test...more >>

Newbi question.
Posted by pdcjlw1@gmail.com at 3/21/2008 8:01:53 AM
Hey I'm trying to learn how to connect a database to a C# project. The tutorial I am trying to follow says to do the following: Creating a Database Connection The first thing you need when retrieving data from a database is, of course, a database connection. Although you can use the Data Adapt...more >>

C# 3.0 property setter question!
Posted by CSharper at 3/21/2008 7:45:19 AM
I know you can now define something like the follwing public string Name{set; get;} during compiling it will create requested information along with the private varaible to work with. Here is my question; I have a class called Person and I want to get the values but not setting the value. ...more >>

Unselect a ListBox
Posted by Joe Cool at 3/21/2008 5:41:23 AM
I have a ListBox on a form than has some items. The select mode is one item only. I select one, it is selected and hightlighted. I then click somewhere in the listbox not on any item, in the clear area of the listbox. I would like to unselect the selected item but I cannot determine which event ...more >>

Entry Level Learning C# Hampered Greatly By Wrong Search Engine
Posted by Tom at 3/21/2008 4:22:36 AM
Perhaps a year or so ago and for some reason I don't fully recollect (perhaps from reading a comparison article or installing a toolbar) I made "Yahoo" my default search engine. Over the past several months I have spent numerous hours searching for various C# topics when I got "stuck" in my entr...more >>

How to programatically close a form which has a Font/Color Dialog opened
Posted by aagarwal8@gmail.com at 3/21/2008 3:41:04 AM
Hi, I have a form (say FormB) on which i have opened a font dialog. There are situations when i need to close FormB, from another form (say FormA) in my application. i am calling FormB.Close(), but the form doesn't close. The moment i close the Font Dialog, FormB gets closed. (Also, I observe...more >>

.NET Assembly, Manifest
Posted by RP at 3/21/2008 1:37:18 AM
I am a newbie and have some questions regarding .NET Assembly and manifest: (1) What is an Assembly? When the project is build, which dll or exe is called Assembly? What is the difference between a .NET binary and .NET Assembly? (2) What is a manifest?...more >>


DevelopmentNow Blog