| Thread | Last Post | Replies |
|
| ADO from XML | 20 Sep 2006 15:14 GMT | 1 |
Hello. I was wondering the best approach to read from a dataset, which contains an xmldocument. I used dataset.readxml(new stringreader(xmldocument.outerxml)). My goal is to shape the data into a table so I can define rows and columns.
|
| Login control | 20 Sep 2006 15:11 GMT | 1 |
is there any way at all to debug the login control? It was working perfectly and now it does not. Here is my control <asp:Login ID="Login1" runat="server" BorderPadding="4" BorderStyle="None" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#ffffff"
|
| two forms | 20 Sep 2006 14:59 GMT | 6 |
I am working on an app(C#) with two forms A and B. form A is the main form and form B is created in A's constructor. when I minimize both of them. they all shown on taskbar as A and B. my problem is when I click B, A is always maximized. but I want click B and B maximized. click A
|
| Wmi help | 20 Sep 2006 14:53 GMT | 1 |
Iam new to using wmi methods. I tried to enable wins using wmi. The code is below. public void EnableWinsServer() {
|
| find out if an instance of type type (indirectly) derives from another type | 20 Sep 2006 14:51 GMT | 8 |
When I have an instance of an object wich is of type System.Type, how can I find out if it directly or indirecly derives from another type? myTypeInstance == typeof(AnotherType) only seems to check if they are ultimately the same type (at the very
|
| Multiple forms | 20 Sep 2006 14:48 GMT | 2 |
I want to write a programming with c#.Net having forms like MS Word. The main form A contain commonly used objects.I have many other forms (B,C,D) etc that have inherited from A. i realised that when i want to open B,or C while in any of the forms a completely new form like A, B,
|
| C# 'Correct way' type question. | 20 Sep 2006 14:19 GMT | 3 |
I have a property of my object 'IsValid'. In order to evaluate the status of the object I have to invoke a method of some sort. Can I invoke a Method from against the Get method of the property. This private method sets a private variable, the value of which is then the
|
| Pass pointer from c# to C++ wrapper | 20 Sep 2006 14:02 GMT | 1 |
I have a C++.net wrapper class to a C++ library... A function takes in a pointer in the wrapper... How do I pass that in C#??? Any help would be appreciated, Thank you. // functions in original c++ library
|
| changing variable types of a function of a derived class | 20 Sep 2006 12:53 GMT | 2 |
I have a class that uses some variables to access a sql database, and I want to make a derived class that inherits all the methods of this class, because the derived one will do exactly the same process that the parent one, but with a postgres database, thus I've got to use
|
| Bit Fields | 20 Sep 2006 11:44 GMT | 2 |
Hi all I am trying to convert code that being written in C++ to C# and I found that structure that using a property in C++ called "Bit Fields" and I didn't found it in C#, is there any way to convert it to C# thx all
|
| SerialPort hard lock | 20 Sep 2006 11:19 GMT | 1 |
I'm developing a mixed Windows CE 5 and PC system APP that uses a serial port component to comunicate with other devices. App works fine under Windows CE device, but it locks in PC. If it is under debugger, locks Visual Studio too, and if it running alone, it gives the
|
| Process opens program window when outside Visual Studio | 20 Sep 2006 10:32 GMT | 2 |
My program uses the Process class to start a bat file that starts an exe. When I run my program inside Visual Studio (debug) the bat and exe run in the background (are not visible) and all their output is redirected to my stream reader.
|
| In<T>(T x, params T[] y) where T:struct, IComparable<T> | 20 Sep 2006 10:15 GMT | 4 |
Question: public static Boolean In<T>(T x, param T[ ] y) where T : struct, IComparable<T> {
|
| Generics and Casting - strange behaviour | 20 Sep 2006 10:11 GMT | 6 |
I have a class "Validator" which can be cast to a Control. The code: ValidTextBox t = (ValidTextBox)v; works just fine. However, because v doesn't descend from t, I can't use "is" or "as". I
|
| Exception parsing querystring | 20 Sep 2006 09:34 GMT | 6 |
I've got a website that uses links for page positioning which works great about 99% of the time. For some reason, 1% of the time I'll get an error when parsing the querystring, as it's reading the anchor name as part of the number.
|