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 > dotnet general > september 2005 > threads for tuesday september 20

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

a counter in a select statement
Posted by SQLGuy at 9/20/2005 10:57:59 PM
How do I get a counter in a select statement output Say if I do Select counter, col1, col2 from table1 The output should be Counter Col1 Col2 1 val11 val21 2 val12 val22 3 val13 val23 4 val14 val24 ...more >>


Creating an Item property for a custom control
Posted by Wael at 9/20/2005 9:23:12 PM
Hi, I created a custom control, but I can't add an item property to it. I tried the code below, but when I click the property, it shows a list of Objects. I can't figure out how to have items to hold only integers. Even with Objects, they seem to be readonly. I can't assign values to them. ...more >>

Using FileWatcher on a Network Folder in a Service
Posted by PeterNZ at 9/20/2005 8:48:02 PM
Hi all, I developped an C# app which is using FileSystemWatcher. If a file is created in a specific folder, it opens the file and does some processing. This functionality works without problems in the following scenarios: In a Winform App, pointing at a Local Folder In a Winform App, poin...more >>

microsoft.visualbasic.dll err msg
Posted by bic at 9/20/2005 5:52:02 PM
Hi, My Windows app worked before, but maybe after my attempt of porting it to web app environment and could not get it to pass objExcel= GetObject("strPath"), it now fails in Windows app environment as well. The err msg is An unhandled exception of type 'System.Exception' occurred in ...more >>

Shared constructor not called before Shared method
Posted by jbrock NO[at]SPAM panix.com at 9/20/2005 5:44:52 PM
I have a base class with several derived classes (I'm writing in VB.NET). I want each derived class to have a unique class ID (a String), and I want the derived classes to inherit from the base class *Shared* methods which make use of the class ID. So I gave the base class a classID field, an...more >>

Help with regular expression
Posted by hillcountry74 at 9/20/2005 5:34:07 PM
Hi, I'm stuck with this regular expression from past 2 days. Desperately need help. I need a regular expression that will allow all characters except these *:~<>' This is my code in VB.Net- Dim regex As System.Text.RegularExpressions.Regex regex = New System.Text.RegularExpressions.Rege...more >>

VB.Net Help
Posted by BJ at 9/20/2005 12:50:04 PM
Hi List, I just started using VB.Net. and feel it's so different from VB.6. I have used VB6 for a little while. I got so lost. I tried to find some sample code, but seems everyone is pointing to different directions. Please help. What's the best way to use DataGrid control to manage SQL da...more >>

Servers Across the Atalantic
Posted by blomm at 9/20/2005 12:25:02 PM
This is probably more of a SQL server issue, but its also .net related think... I have the client side of my application installed in the US with the application and the database servers running in london. The program language is C#, all built in visual studio. When the user in the US runs t...more >>



Objects, Abstract Classes or Interfaces
Posted by Wayne Phipps at 9/20/2005 11:56:16 AM
I'm trying to get my head around objects and am asking for thoughts on this idea. If for example I were to implement a Person Object, there may be differnt Person objects representing people of different cultures. All Person objects have similar characteristics, ie Height, Weight, Age ect ...more >>

Web Browser Control - controlling the background color...
Posted by hzgt9b NO[at]SPAM nopost.com at 9/20/2005 11:46:19 AM
I am using a web browser control to display some PPT slides saved as HTML. My client has recently asked that the background of the browser be changed to sonething other than white so that the slides "standout". I've tried setting the browser's BackColor setting, but that had no effect at run ...more >>

NetworkStream.BeginRead() wierdness
Posted by 0to60 at 9/20/2005 9:41:30 AM
I have a class that wraps a TcpClient object and manages all the async reading of the socket. It works really nice, and I use it all over the place. But there's this ONE INSTANCE where I create one of these things and it WON'T read data. If I set a breakpoint in my EndRead callback, it never ...more >>

DataBinding to Custom Class breaks after New instance: how to get around this?
Posted by DraguVaso at 9/20/2005 9:35:55 AM
Hi, I'm having the following situation: - A class clsFournisseur with public property's which raise a MyPropertyChanged-event in the Set-method for each Property. Public Event NomChanged As EventHandler Public Property Nom() As String Get Re...more >>

Get ALL controls on a Form
Posted by DraguVaso at 9/20/2005 9:19:59 AM
Hi, Is there actually a way to get ALL the Controls on a Form? While using the ControlCollection, it only returns the Controls that are directly on the Form, not the controls that are on a (TableLayout)Panel etc. I never found something like that, but it just would be nice in my opinion :-)...more >>

How to search a XML document node by node
Posted by Omkar Singh at 9/20/2005 8:22:01 AM
I have want to read a xml file node by node. How can I do it? I am using following code to load xml file. XmlDocument doc = new XmlDocument(); doc.Load(fileName);...more >>

Crypt32 errors?
Posted by Rob R. Ainscough at 9/20/2005 8:11:47 AM
I have an ASP.NET web application running on a Win2K3 server. I get the following error in the Event Viewer (Application) whenever I attempt communicate using: Event Type: Error Event Source: crypt32 Event Category: None Event ID: 8 Date: 9/19/2005 Time: 5:25:07 PM User: N/A Comput...more >>

C# gdi flip vertically
Posted by RicercatoreSbadato at 9/20/2005 6:26:17 AM
I have to flip vertically a Bitmap. Is it possible with GDI+ and C#? ...more >>

.NET DLL HELL
Posted by MC at 9/20/2005 12:00:00 AM
Hi all I have created a .NET DLL in VB.NET. My first and very proud. Now i understand the new principles of CLR and .NET Framework. I want to be able to call this DLL from my existing ASP pages not ASPX. They are spread over many websites so I need to have this DLL is one common place. ...more >>


DevelopmentNow Blog