| Thread | Last Post | Replies |
|
| Question on HandleDestroyed event | 28 Nov 2006 15:34 GMT | 1 |
Hey guys. Under what circumstances is HandleDestroyed called? Is it only called when a control is being Disposed? I sometimes get the following exception in my app:
|
| Creating a case-insensitive Hashtable in v2 | 28 Nov 2006 14:43 GMT | 5 |
In v1.x, I used to use the following code to create a case-insensitive Hashtable: Hashtable MyHashtable = new Hashtable(CaseInsensitiveHashCodeProvider.Default,
|
| Can this method overload be resolved? | 28 Nov 2006 14:35 GMT | 3 |
Given the following code Is there any way to call one of the Bar methods. using System; class Program
|
| Coding Nothing in C# | 28 Nov 2006 14:34 GMT | 7 |
I have the following code in VB that needs to be done in C# Dim o As New Company.Common.QueueItem o.OrderID = 123456789 o.QueueItemType = Company.Common.QueueItemType.StockOrder
|
| Xml write to end | 28 Nov 2006 14:17 GMT | 2 |
I want to Write XML to an already existing XML file at the end of this file however I'm at a loss on how to do that... whats the best way?
|
| FileUpload problem | 28 Nov 2006 13:25 GMT | 3 |
I am newbie in this stuff, can somebody to help me. Maybe can somebody to say how to manually to set file name and path in code for fileupload control, not to let to choose file for user with browse button.
|
| a problem help me | 28 Nov 2006 12:41 GMT | 8 |
Do you have any information how to generate a tool using .net which is used to translate the web page contents to html format. Plz reply me asap Thanks in advance
|
| exe call method of another exe | 28 Nov 2006 12:36 GMT | 6 |
i have two application, Application 1 : with a method : public int math_add(int a, int b) { return a+b;}
|
| call a function from the parent form | different namespaces | 28 Nov 2006 12:03 GMT | 1 |
I have an interesting question. I have an MDI App. The Child Windows are in different projects and namespaces according with his business logic. So, the "main" namespace contains the MDI Parent from where I call the Child Forms as you see here:
|
| LoadXML & NamespaceManager | 28 Nov 2006 11:02 GMT | 1 |
Is anyone able to help me? I have the following code and when I try to create an XPathNavigator object it keeps returning null. any cunning ideas? private void loadXMLDoc(String xml)
|
| create a click event for control in the code behind. | 28 Nov 2006 11:01 GMT | 1 |
I am writing in .net 1.1 asp.net program in c#. In the code behind I declared a reference html control (frame): [code] HtmlControl rightFrame = (HtmlControl)mainFrame.FindControl("frmRight");
|
| How can i escape special characters( % [ _ ) in an Access SQL statement? | 28 Nov 2006 10:20 GMT | 3 |
i need to escape characters, such as ( % and/or _ and/or [ ), since i have database entries that have such characters in them. the following piece works fine in an SQL statement (c#), but doesn't return entries that have one of the above characters in the argument.
|
| Dealing cards | 28 Nov 2006 10:12 GMT | 2 |
Hi, could somebody in the right direction to write a program to deal cards. What I want to do is: With an 8 deck of cards. I know the player has an ace, the dealer has a 2, is deal every possible scenario, going player,banker then dealer. Up
|
| On Application Setings in .NET 2.0 (Visual Studio 2005 Pro, C#) | 28 Nov 2006 09:59 GMT | 3 |
Hello. I apologize for asking this question as the information I need is availible via the MSDN library, however I cannot seemt o understand what I need to do, so I'm asking here. I have created application settings in Visual Studio (right-click on the
|
| How to use .dll created with C++ in C#? | 28 Nov 2006 09:34 GMT | 3 |
I have a dll created earlier by VC++ which export a class. And now i want to use this class in C# code, how can i do it? And what if it is a static library(.lib)? Thanks in advance
|