| Thread | Last Post | Replies |
|
| Generic Singleton - any suggestions? | 07 Aug 2007 14:43 GMT | 1 |
I want to make a whole bunch of classes into singletons. They all descend from a base class. I'd like to have code in the base class along the lines of : private This(){ }
|
| How to limit program can only run one instance. | 07 Aug 2007 13:28 GMT | 20 |
How to limit the c# program can only run one instance at the same time ? Thank you! Best regards,
|
| connect to sql job agent | 07 Aug 2007 12:28 GMT | 2 |
Is there a way to connect to SQL server and read all of the jobs listed in the job agent and get the status of each job? I want to create either a web page or a winForm, have a list of all SQL DB servers in a drop down, select the db name, then show a list of all the jobs in the ...
|
| udp buffer issue | 07 Aug 2007 11:21 GMT | 5 |
I have some code that continually reads packets off of a udp port where the incoming packets are 26 bytes in length. CODE: byte[] recBytes = udpClient.Receive(ref ipEndPoint); I have left the udp buffer length at the default 8192. After
|
| Table format in a RichTextBox | 07 Aug 2007 09:54 GMT | 4 |
Is there any posibility for me to present data in a richtextbox as a table? I'm using VS .NET 2003 (.NET 1.1) for developing our windows application. I wish to present data in RichText format because it's easy to copy and paste into other documents or archives.
|
| Can I use FrameWork2 on Visual Studio 2003? How? | 07 Aug 2007 07:58 GMT | 1 |
Can I use FrameWork2 on Visual Studio 2003? Is There Aproperty to change The framework?
|
| Which version of Visual Studio 2005? | 07 Aug 2007 06:45 GMT | 7 |
I am trying to decide between buying Visual Studio 2005 Professional and Standard versions. As far as I can tell, there is not a whole lot of difference, but the price for Professional is almost three times. Standard
|
| Maximizing problems with Child Forms in MDI? | 07 Aug 2007 05:02 GMT | 3 |
In my Windows application, how can I manage the size of my child Forms within my MDI Forms? For example, when I maximize one child Form, all the other Forms maximize. And I need to conserve all the Forms' size. Is there an easy way to conserve the sizes?
|
| Express edition creates a "Not a valid solution" | 07 Aug 2007 01:04 GMT | 1 |
If I create a program in c# express edition, then try to open it with the full edition I get a "not a valid solution" error. I can click on the csproj file and everything works fine. I can even do a "clean solution" and "build solution" with no errors, but then if I click on
|
| Conditional compilation symbols | 06 Aug 2007 23:36 GMT | 3 |
Is there a way to use conditional compilation symbols to change the output path for the build, change the exe name and also change the the exe icon? I have an application that has "skins". I use the symbols to change
|
| How can I overcome the buffer limitation using StreamReader.ReadTo | 06 Aug 2007 23:20 GMT | 11 |
Hi, I'm using VS 2005, ,.net 2 for C# windows application. I'm using Process to run a C application and redirecting its standard output so I can read it with StreamReader.ReadToEnd. It's only reading the 1st 5 lines or so when there is about 30 lines of data.
|
| When is "volatile" used instead of "lock" ? | 06 Aug 2007 22:52 GMT | 129 |
When is it appropriate to use "volatile" keyword? The docs simply state: " The volatile modifier is usually used for a field that is accessed by
|
| Question about UdpClient | 06 Aug 2007 22:15 GMT | 7 |
I have the following program using System; using System.Collections; using System.Net.Sockets;
|
| sproc | 06 Aug 2007 21:55 GMT | 1 |
I originally wrote a sproc with one of the parameters set as SqlDBType.nvarchar,8. The parameter in the sproc was defined as 8 cahracters and the column in the table was also set to nvarchar, 8. I changed all three to allow for a 15 character long entry but the
|
| object-relational mapping (ORM) frameworks for .NET | 06 Aug 2007 21:32 GMT | 6 |
Dear members, Hi. I am really confused about object-relational mapping (ORM) softwares frameworks designed for .Net. For example I've read some about
|