| Thread | Last Post | Replies |
|
| How do know if a class use operator overload? | 30 May 2007 13:49 GMT | 4 |
Where can you see if a class has overloaded operator(like +,-) in Microsofts NET class library on the net? They list members, properties, fields and other stuff for a class but no operatoroverloading. It would be nice to know if a class uses overloaded opetors so you know if
|
| How do I write something into the StatusStrip ? | 30 May 2007 13:35 GMT | 1 |
I added a StatusStrip "Sstrip1" to a Form "Form1". In the procedure private void Form1_Load(...) I added the following statement:
|
| Going through hoops to get a registry DWORD to populate a Boolean | 30 May 2007 12:17 GMT | 3 |
I have a notional Boolean value stored in the Registry. Actually it's a REG_DWORD capable of taking values of either 0 or 1. So, I need to populate a checkbox on a form dependent on this value. 1. I tried this:
|
| Multi Threaded App - Stack Trace Error | 30 May 2007 11:14 GMT | 4 |
I have a multi threaded app that runs fine 99 percent of the time. However, sporadically, I receive error {Cannot evaluate expression because the current thread is in a stack overflow state.} at different spots in the code. Random lines of code seem to generate this error, never ...
|
| Critical Errors with Vista Event Logs | 30 May 2007 10:05 GMT | 1 |
I have a test routine that looks at the Application, System, and Security event logs. I noticed that Vista added a new "type" of error called "Critical". However, VS 2005 doesn't list this new type in the EventLogEntryType enum. Is there some patch that updates this type
|
| Change visible state for a Button | 30 May 2007 09:00 GMT | 1 |
On a form, I place a buton with an OnClick event. No problem. I set the visible propperty of this button to false. And reset it so true again, the event isn't fired ans my app same to be crashed ...
|
| System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: An attempt to attach an auto-named database for file | 30 May 2007 07:27 GMT | 3 |
This is the exception that I get when i create a webserivce obj and call. The error comes on the webmethod call, when it opens a connection to the db. How do I fix it? What is the solution to this?
|
| FileIO Exception and permissions | 30 May 2007 06:41 GMT | 8 |
I am working on a project to manipulate XML files. All of the files, the code, and the output are on network drives. When I run my program I get an exception (see below). I tried giving the LocalIntranet_Zone full permissions in the .NET Framework 2.0 Configuration msc. This had
|
| Getting the selected text of WebBrowser control dropdown box. | 30 May 2007 05:26 GMT | 11 |
I have a WebBrowser control on a .net 2.0 winforms app. I load up a page and want to get the selected entry of a dropdown. I can get the element: HtmlElement stationList = browser.Document.GetElementById("dropdownFacID");
|
| Regex help | 30 May 2007 05:25 GMT | 5 |
Hello, i am regex newbie. I want to extract text between 2 markers. I want all the text that happens to be between <h2> and </h2>. So far I got this: <h2>.*</h2>
|
| WebClient and Encoding | 30 May 2007 04:11 GMT | 8 |
Is it possible to tell to the WebClient to use an "automatic" encoding when doing DownloadString? The encoding of the connection is written in the header, so the WebClient should be able to sense it, but I wasn't able to find the option. I can only use a fixed Encoding (UTF8 for ...
|
| HttpWebRequest cookies from IE | 29 May 2007 22:29 GMT | 1 |
Can i make HttpWebRequest use the cookies already saved from Internet Explorer? Or, if not, how can I make it, or WebClient log into a web resource with a login form on the page.
|
| Multi threading static method and possible locking | 29 May 2007 21:34 GMT | 1 |
I have a static method that I use for data access. This particular method reads x number of rows and then updates these rows with a read = 1 flag. I access this method with several threads and I guess that one thread (thread A) could read rows and then the next thread (thread
|
| single sign on for windows applications or windows services | 29 May 2007 21:21 GMT | 3 |
Does anyone have any experience with single sign on for .Net windows applications or windows services? So the idea is to be able to use the user credentials from logging into windows to authenticate the user for using a windows application or windows service. I have found some
|
| how to track text entry in windows using c# /c#.net | 29 May 2007 21:19 GMT | 1 |
I would like to develop an application that tracks all the text input in windows (including those in MS Office apps and in IM clients) and translates them into another language. I plan to use C# to develop the app but i don't know which API i should use to track the text input in
|