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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
|