| Thread | Last Post | Replies |
|
| Thread Abort and DataGrid Question | 30 Jul 2008 19:23 GMT | 7 |
In my Windows application, I'm using thread, and I've 2 questions: 1. I read that it's not recommended to use Thread.Abort(), so what is the best way to close the thread, in case the user wants to cancel or the thread is finished and i want to close my application?
|
| HtmlDocument like class for HtmlReader/ | 30 Jul 2008 18:46 GMT | 2 |
Is there a class I can use which loads HtmlDocument and performs default html validation to see if the document is a valid html document like XDocument? HtmlDocument seems to me only used to create HtmlDocument and there are no methods to load the existing HTML
|
| Ensuring a base constructor is called? | 30 Jul 2008 18:15 GMT | 2 |
If I have a base class that has one constructor, is the only way that that constructor will get called be by having no constructors in my derived classes or explicitly calling base() in my derived constructors? Illustration:
|
| Need an Example Modifying Remote Registry | 30 Jul 2008 17:12 GMT | 3 |
I'm looking for an example of modifying the registry of a remote system. Thanks much! Charles
|
| how to declare custom event in interface | 30 Jul 2008 16:37 GMT | 2 |
hey all, i have a working example of a simple event delegation: http://pastebin.com/m104a6c1f can someone please show me how to define my custom event in an interface?
|
| Enum or a class | 30 Jul 2008 16:05 GMT | 3 |
I have writing a class that represents a object on a screen. The object has normal things like X,Y, Width, Height, ZOrder, and it also has drawing attributes and flags. It has properties for setting and getting values from instance variables
|
| Dictionary Problem solved..but is it a good solution? | 30 Jul 2008 15:40 GMT | 8 |
I'm implementing an application that needs to keep track of a prioritized list of items. To do this, am using a dictonary along the lines of : Dictonary<int,string> myList =new Dictonary<int, string>()
|
| Can't open database in browser control | 30 Jul 2008 14:40 GMT | 6 |
I cannot access my SQL database in a browser control created in my C# Windows application program I can, however, access the database from an IE browser. I get the ubiquitous "Login failed for NT AUTHORITY\NETWORK SERVICE" error message. I researched all the advice on the ...
|
| Sending email alerts | 30 Jul 2008 14:02 GMT | 5 |
I need to have a program running that will check at regular intervals whether or not an alert email needs to be sent out reminding the user of a task that needs to be completed, and then send that email out. Does anybody know how I would go about doing this?
|
| Application does not start from network folder | 30 Jul 2008 13:40 GMT | 11 |
Managed code .NET 3.5 C# WinForms application runs OK from Vista when in local drive. When application is copied to mapped network drive or started from \\othercmp\c\myapp\myapp.exe folder , it does not start: Vista shows
|
| Bloomberg API Asynchronous Subscription | 30 Jul 2008 13:20 GMT | 5 |
Has anybody had any luck with coding to the Bloomberg API in C#? I have tracked down sufficient code to return data synchronously i.e. subscribe a ticker and fields and return one set of results, but have had no luck in getting asynchronous reults to fire off the data event
|
| wrong syntax when I try to set Javascript code in C# Code Behind. | 30 Jul 2008 10:22 GMT | 5 |
how are you colleagues? I try to set a linkaddress in code behind for a <asp:hyperlink> server control. but I think I have some syntax problem. I don't know how to fix it. What's wrong with the code below? I have put a hyperlink on the aspx
|
| Load htm file in default browser | 30 Jul 2008 08:43 GMT | 1 |
How to load htm file from C# in default windows browser instead IE. Thanks
|
| Event not firing on a runtime-addedd control | 30 Jul 2008 08:33 GMT | 2 |
I have a problem in my C# web project: I have extended the GridView class to add some sorting features. Additionally, I need to add a quick-filter table at the bottom of this control, that will allow me to implement this feature in all my grids.
|
| Why are some types implemented as struct? | 30 Jul 2008 07:33 GMT | 13 |
I know the basic differences between a struct and a class, but apparently not good enough to know why some types/concepts are implemented as struct whereas most types are implemented as class. For example, why is DateTime implemented as a struct? Why is BitArray
|