| Thread | Last Post | Replies |
|
| Xml and DataSets | 16 Aug 2006 13:51 GMT | 1 |
Is there a way to explicitly escape special characters (particularly & (&) and ' (')) when writing a data set with the WriteXml method? I know this is supposed to happen automatically (according to MS), but
|
| Problem with mshtml .. won't work on some comps | 16 Aug 2006 13:44 GMT | 2 |
I have application that's using web browser (which is hidden in app but that's not the point). At some stage of working in my application I have to check HTML of current page that's in browser . I found that i can get HTML content by using: (private AxSHDocVw.AxWebBrowser myWB;)
|
| Question about Multithreading | 16 Aug 2006 13:20 GMT | 3 |
I am implementing a multithreaded tcp client with two classes, cNetworkManager class and cUI Class, I created a secondary thread for receiving packets using blocking "Receive" method in cNetworkManager and when a packet is received I want to raise an event to cUI Class, but I ...
|
| Compare between Two Files | 16 Aug 2006 11:56 GMT | 1 |
I have a problem..How to match two same word files. if someword missing in second files then it should be highlight by color change.
|
| overload the * | 16 Aug 2006 11:52 GMT | 3 |
I have the following function which overloads the * sign in order to multiply a 3 axis vector by a scaler. public static _3DVector operator * (_3DVector vec, float num) {
|
| Form Generator | 16 Aug 2006 10:54 GMT | 3 |
How to programatically add C# form to existed solution? I want to make program(C# form generator),to create solution,add project to new solution,and add several forms later without even opening Visual Studio.
|
| Franson GPS Tools & C# | 16 Aug 2006 10:49 GMT | 3 |
I am trying to get a fix from a GPS using a SDK called Franson GPS tools. http://www.franson.com/gpstools I have gotten quite far on my own but am stuck - when I create a instance of class called GpsFix i get a compile error that no
|
| Newbe: C# 2003 PermissionSet question | 16 Aug 2006 10:39 GMT | 3 |
I have created a user control which I would like to use in other projects. When I try to create an instance on a form in an other project I get an error message.
|
| Dot net optimization tips | 16 Aug 2006 09:41 GMT | 4 |
Some tips for optimizing your .Net Code. You can add more by leaving comments http://dotnetforum.blogspot.com or
|
| Bitwise and | 16 Aug 2006 08:53 GMT | 5 |
I have the following definition in one class public const Int32 C_RET_ERR_INVALID_BAND = unchecked((int) 0x80080000); which I am accessing from another class:
|
| How to I use Pre-JIT | 16 Aug 2006 08:41 GMT | 1 |
We might have some applications that need to be used by Pre-JIT. As I have understood this Pre-JIT. The managed IL code is compiled into native binary before the application is being used. I just wonder how do I use this Pre-JIT. Is it some settings that must be
|
| Compare between Two Files | 16 Aug 2006 07:12 GMT | 1 |
I have a problem..How to match two same word files. if someword missing in second files then it should be highlight by color change.
|
| Convert Arraylist to Dataset | 16 Aug 2006 06:59 GMT | 1 |
I know that you can convert a Dataset into an Arraylist, I was wondering if it is possible to do the opposite - Convert an Arraylist to a Dataset? If so, how do you do this? An example of this would be much appreciated. Thanks
|
| Export DataSet to Mysql | 16 Aug 2006 06:56 GMT | 2 |
Hi all.. Is there a way to create a table in mysql with the result of a dataset??? Thx...
|
| How to forcibly call a static constructor? | 16 Aug 2006 04:41 GMT | 8 |
I understand that a static constructor is not called until and unless the class is instantiated, or any of its static members are referenced. But suppose (for the sake of argument) a class is neither instantiatable, nor has any static members. For example:
|