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 > dotnet general > may 2005 > threads for monday may 2

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

HtmlSelect and RequiredFieldValidator
Posted by BK at 5/2/2005 11:05:58 PM
I'm having a really strange problem with and HtmlSelect server control (listbox) and a RequiredFieldValidator that I am trying to use to make sure that someone has items in the listbox. The way that the HtmlSelect is populated is via a combination of client-side javascript and another aspx pag...more >>


ComboBox DroppedDown
Posted by Chandra at 5/2/2005 10:55:44 PM
Hello Sir, This is Chandra and Working as Software Engineer. I got a really weird problem with ComboBoxes. I have set the ComboBox DroppedDown Property to true. Now the actual problem is When the ComboBox DroppedDown is Shown I have to actually click twice to get out of the form or need t...more >>

Need two views for a datalist
Posted by Smitty200 at 5/2/2005 8:58:04 PM
I have a datalist that displays catalog items on the page 4 in a row using the RepeatColumns="4" and RepeatDirection="Horizontal" the page displays two rows of data when first viewed and if there is more then 8 products to display will create page numbers at the top of the page for each subsiqu...more >>

Displaying a pdf file in an Asp.net form
Posted by BillG at 5/2/2005 8:26:07 PM
I need to pop open a window and display a pdf document in a webform. What is the best way to go about this? ...more >>

Blogs
Posted by Alex at 5/2/2005 6:16:35 PM
Hello people, Here's an interesting question that I'd like to address to the = intermediate-to-advanced developers: There are quite a number of blogs (.NET-related and otherwise) on the = Internet. I would like to know which ones you've found to be the most informative? Specifically, whi...more >>

access a method's own signature in a collection ?
Posted by Mad Scientist Jr at 5/2/2005 2:51:08 PM
Is it possible to write a method with a signature for x parameters (so you get intellisense when you call it), but from within the method, be able to access the parameter names and values in a name/value collection (or similar, perhaps a name/value/type collection) so that one generic function e...more >>

C# dotnet and Word Automation
Posted by ANDY at 5/2/2005 12:55:05 PM
I am trying to save a document (automatically) to an XML document. I am using the following code: wrdApp.ActiveDocument.SaveAs(ref oOutFileName, ref oFormat, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing...more >>

Getting only one project to start in a solution
Posted by John Bailo at 5/2/2005 11:49:38 AM
If I have a solution with multiple projects, I can do a "Set As Start" to indicate which project should run. However, when I hit the run button, it seems to want to compile all projects in the solution. How can I get it to *not* to do this ?!? ...more >>



Problem trying to select all items in listbox
Posted by DCount17 at 5/2/2005 11:23:06 AM
I have used the following code, but I get an error. I'm using C#. When the checkbox is selected, I want to select all items in lstTeams (90 items) so the user doesn't have to manually select each item: private void chkAllTeams_CheckedChanged(object sender, System.EventArgs e) { //If the use...more >>

Which namespaces are automatically "used" by .net platform?
Posted by sparks at 5/2/2005 11:11:01 AM
As you might know that "java.lang" package are automatically imported by the java compiler so that one don't need to write the import statement of that package in the source code. Are there any packages in .net are automatically "used" when your are writing a .net application? I am told that V...more >>

Killing and Starting a Process on a Remote Machine
Posted by Yosh at 5/2/2005 10:59:55 AM
I am developing an application that will stop and start a process on a remote machine. What security rights are needed for my application to be able to do this? Hope this makes sense. Yosh ...more >>

Using XML Documentation Comments
Posted by Shawn Melton at 5/2/2005 9:35:03 AM
How would I document an enum for Intellisense to work properly? I have the following enum: public enum Level {A, B, C}; I can document the whole enum with a Summary tag. But how would I give each member in the enum a description? ...more >>

Thread safety of the Excel object.
Posted by Saurabh K at 5/2/2005 6:26:01 AM
Hi, I am using the Excel object in C#. Using this object, I am populating a Excel sheet from the database. In the code I am opening an Excel Application object, on which I am opening a Workbook and subsequently a Worksheet, which is to be populated. Now, my concern is whether this Excel ob...more >>

Where is the "Setup"type of project in VisualC# 2005?
Posted by A. L. at 5/2/2005 6:10:03 AM
Like the title says, my installation of VC# 2005 Beta 2 doesn't seem to have a Setup kind of project available. Actually, except for the Screensaver Starter Kit, it has only four types: Windows app., Console app., Library and Empty project. I have the .Net Framework SDK 2.0 installed (of cou...more >>

User Control - ListDictionary property
Posted by Doug at 5/2/2005 5:48:17 AM
I'm trying to create a user control that would have a ListDictionary property. When trying to use the property and set values for this collection, the dialog box that appears has everything disabled. I'm unsure of what I have to have set in code in order to enable this?? ...more >>

It is hard to be OO when using a datetime object
Posted by BillG at 5/2/2005 1:34:03 AM
I have a class that has as a member a datetime (birthdate). I try to retrieve a value from a table. Member.Birthdate = dsData.Tables(0).rows(0)("BirthDate") works fine except when the birthdate in the table is null so If dsData.Tables(0).rows(0)("BirthDate") is DBNull.Value then ...more >>

Fast String Processing in .NET
Posted by rawCoder at 5/2/2005 12:00:00 AM
Hi, Consider a server which receives delimiter based string data from client. It needs to process this data very fast. Now if its built in C++, one obvious idea would be to put the string on heap as char* and then pass the pointer around, delimiter separated fields will be accessed via po...more >>

what do I develop with nowadays?
Posted by Neinstein at 5/2/2005 12:00:00 AM
I want to develop a lightweight standalone windows app to distribute as shareware, and I'm just not sure anymore what language I should use. It seems I want to avoid the .NET stuff as they come encumbered with the requirement to download 17Meg of framework, plus they won't work for Windows 9...more >>

Info on starting with VB.Net
Posted by Cyber-Guy at 5/2/2005 12:00:00 AM
Hi, Looking to start to mess around with Visual Basic but since I've been more into networking and did my MCSE dont know where to start. Was thinking of getting a book for beginners on VB. Plz help and give me your opinions. Or should I start with something else? ...more >>


DevelopmentNow Blog