| Thread | Last Post | Replies |
|
| Binding behaviour regarding exceptions | 25 Sep 2006 04:17 GMT | 6 |
Is there any way to enable exception throws in VS 2005, that occur during binding operations? I am upset that i can't see exceptions that are thrown during binding operations. It's very hard to track down erroneous behaviour of your app if
|
| Spinner Control | 25 Sep 2006 03:50 GMT | 6 |
Is there a way to make the spinner control "Rollover" In other words, when we hit the down button on the control and reach zero, if I press down again I would like it to rollover to 9. And when I hit up and I finally come to 9, I would like the next up
|
| Office program | 25 Sep 2006 03:13 GMT | 3 |
I would like to start a MS Word program to open a specified document, that's fine by calling Process.Start(). However, I would like to offer the user only Save option to save the document, ie no "Save As".
|
| How do I invoke a "Right-Click" Programmtically? | 24 Sep 2006 23:03 GMT | 7 |
How do I invoke a "Right-Click" Programmtically? John
|
| IComparer vs. IComparable? | 24 Sep 2006 22:03 GMT | 1 |
What are the reasons to use one over the other? SortedList implements IComparer.Compare(). Why would you also want to create a SortedList class that implements IComparable.CompareTo()? I know IComparable compares objects of the same type and IComparer
|
| XmlTextReader error | 24 Sep 2006 21:51 GMT | 1 |
XmlTextReader XmlRdr = new System.Xml.XmlTextReader(XmlFile); //while moving through the xml document. while(XmlRdr.Read()) {
|
| A little help please.... | 24 Sep 2006 21:39 GMT | 1 |
I am really new to this .Net stuff, but I am wondering if you can help me with a webservice issue. I have 15 locations that need to access a webservice. The webservice accepts XML and returns an xml response immediately.
|
| Call click event via code? C# | 24 Sep 2006 21:30 GMT | 10 |
private void cmdTryMe_Click(object sender, System.EventArgs e) { MessageBox.Show("Something"); }
|
| No buffer error (WSAENOBUFS) in my active connection | 24 Sep 2006 21:12 GMT | 1 |
My active connection created by my application from windows 2000 to Windows 2003 (or any linux machine) get closed as it receives WSAENOBUFS error . While I googled , I come to know that this may occur for the below reasons,
|
| MDI Webbrowser... | 24 Sep 2006 20:15 GMT | 2 |
I'm creating a MDI application that has two child forms. One has the linklabels that would control the 2nd child form. The 2nd child form has a webbrowser. How do I make the webbrowser on form2 navigate to a specific url when
|
| Case-insensitive List<string> | 24 Sep 2006 19:59 GMT | 4 |
Is it possible to create a case-insensitive List<string> collection? E.g. List<string> MyList = new List<string>; MyList.Add("MyString");
|
| error in my prog with VS 2005 C# | 24 Sep 2006 14:57 GMT | 2 |
I try to buid little prog from Shildt book but error.VS 2005 Here: using System; class Example
|
| Best Practise Advice Calling C# DLL from VBA | 24 Sep 2006 10:33 GMT | 2 |
Can anybody give me a quick heads up on the best way to develop C# based DLL's that are called via VBA. I'm developing a pop-up window that will record information within SQL. I need to launch this pop-up from an application that only supports VBA. So I
|
| Detach an event based on an anonymous method? | 24 Sep 2006 10:29 GMT | 1 |
Hi, is it possible to detach an event which is implemented via an anonymous method. ie. If the code is: myObject.myEvent += delegate(object sender, EventArgs e) {
|
| Write access to 'get'-only public property from within a class - best practice? | 24 Sep 2006 05:44 GMT | 4 |
I have a class with a get-only public bool property. This is good because I want users of this class to ONLY READ it. So I've defined it thus: private bool _IsDirty;
|