| Thread | Last Post | Replies |
|
| Spell Check | 24 Oct 2006 00:08 GMT | 1 |
When opening Toold- Options -- and looking for spell check there is no tab for spell check. There are 9 tabs and should be 10. What happened to Spell Check for OE? Would appreciate any assistance.
|
| browser detection and redirection | 23 Oct 2006 23:56 GMT | 1 |
I am looking for code to detect and redirect to the corresponding browser download page if the clients uses old version, could anyone have a sample code for this? I want to use the following version browser only, if they are other
|
| Limit socket connection to local machine | 23 Oct 2006 20:06 GMT | 1 |
What is the best way to limit a socket connect to the local machine Is this correct & best way to do this? mySocket = s.Accept(); if(mySocket.LocalEndPoint != mySocket.RemoteEndPoint)
|
| Suppressing .Net-BroadcastEventWindow issue | 23 Oct 2006 19:17 GMT | 2 |
Since migrating an application from .Net framework 1.1 to 2.0, I have an issue where when the app exits, I receive a popup error referring to the .Net-BroadcastEventWindow having an application error. Some searching through Google groups indicates that this is probably COM
|
| Type of base pointer | 23 Oct 2006 19:02 GMT | 1 |
Take a look on this code: using System; using System.Collections.Generic; using System.Text;
|
| watch new created processes | 23 Oct 2006 18:26 GMT | 1 |
Iam wondering if it is even possible to watch for new created process from the same machine. I want o be notified when *ANY* application is created, by monitoring the processes (or calling wmi or any other methods).
|
| CLR Debugger points to incorrect source code | 23 Oct 2006 15:24 GMT | 4 |
I have two programs with the same name but different name spaces. i.e . BusinessProcess.Provider and
|
| How To - Bounce/Return spam to sender in .NET | 23 Oct 2006 15:15 GMT | 4 |
I've spent a fair bit of time searching the internet for an example on how to bounce an email, like what MailWasher does from .NET. My home email server gets hit pretty badly with spam, and rather than using server software and risk losing email, i'd rather have some control over ...
|
| ClickOnce application on terminal server | 23 Oct 2006 13:44 GMT | 7 |
I have a ClickOnce application that I have successfully deployed to user's desktops. I have attempted to install the application on Terminal Services. The application appears to install on the terminal server, but the data folder with configuration settings and a xml data file ...
|
| How-To: Custom Desktop | 23 Oct 2006 12:13 GMT | 11 |
A friend of mine has little kid. Big enough to use the computer. He created a kid user with restricted user account for his kid but he would like to remove the confusing start menu, etc.... with a simple, home made, kiosk style, fullscreen GUI interface.
|
| Strange Performance Counter performance problem in Windows Service application | 23 Oct 2006 09:35 GMT | 8 |
I experience a strange problem I do not how to approach. My windows service application uses several performance counter. Before when staring the service deletes category and attempts to recreate it.
|
| [2.0] Hide a console application | 23 Oct 2006 08:21 GMT | 6 |
Hi, I have a console application and I would like to hide it when it's running. Of course I took a look into the StartInfo property of the Process Class (CreateNoWindow, WindowsStyle) but when I start my application, the dos windows is still visible.
|
| XmlTextReader disposal pattern | 23 Oct 2006 02:18 GMT | 2 |
I am amazed that XmlTextReader does not implement IDispoable. Is there any reason? In the case of XmlTextReader( Stream ) construction, if I wrap the Stream with a C# using statement like this:
|
| A question on 1.1 and 2.0 interoperability | 22 Oct 2006 20:13 GMT | 7 |
Is it possible to call a dll that was compiled against 1.1 when the exe is compiled against 2.0? I have bought some dll's that are compiled against 1.1 and, obviously, I don't have the source code. I hate to buy all libraries again each time
|
| StreamReader how do I move to BOF? | 22 Oct 2006 18:08 GMT | 4 |
Hello, I am using StreamReader.ReadLine() to read a text file. I need a way to move the "pointer" back to the BOF (Beginning of File) without having to close the object and create a new instance. Is there any way of doing this? or is there another class within the
|