| Thread | Last Post | Replies |
|
| WCF better than Net Remoting?? | 03 Jul 2008 17:06 GMT | 6 |
Is WCF better than Net remoting?? What are the adventages of WCF?? Thank you Cesar
|
| A ADO.net Transaction question | 03 Jul 2008 16:52 GMT | 3 |
I used SqlTransaction to insert datas to table A in my program ,but I find that before I commit the transaction ,I even can not use query analyzer to query data in table A, could anybody tell me why and is it normal or not? Thanks
|
| MDI Forms using MainMenu | 03 Jul 2008 16:39 GMT | 1 |
Whenever I launch an MDI Child, I can add items to the MDI Parent's MainMenu easy enough, but how do I call them from the MDI Child? In the Parent, private void miPrint_Click(object sender, EventArgs e) { /* code */ }
|
| A bug in .Net Binary Serialization? | 03 Jul 2008 15:41 GMT | 12 |
I recently came across something really strange and after a couple of days of debugging, I finally nailed the cause of it. However, I have absolutely no idea what I am doing wrong or is it just a bug in binary serialization. The following is a simple example of the code:
|
| serialize to iso ? | 03 Jul 2008 15:14 GMT | 2 |
hello, i have a classe. I want serialize it into a define encoding string ... and send it by webservice. XmlWriterSettings writerSettings = new XmlWriterSettings();
|
| Preserving column names in a data set | 03 Jul 2008 14:38 GMT | 2 |
I'm filling a data set in C# from an SQL database and then binding this to a repeater. I have an OnItemCreated method on this repeater and I am trying to get the value in a column called "ServiceFK". However, it appears I can only use an index rather than a column name
|
| How do i use ftpWebRequest with both CWD and non default port | 03 Jul 2008 13:25 GMT | 2 |
I was having problems changing directory using ftpWebRequest using the following constructs. ID ftp://qxxxx.net:4211 string << this works fine. ID "ftp://qxxxx.net/faer/:4211" string. Doesnt work
|
| Can I change IP using C#? | 03 Jul 2008 12:02 GMT | 2 |
Is it possible to change IP with C#? I don't need to change it to a specific IP, but if possible I would be happy to know how. Ofir.
|
| Web Browser Control -- View HTTPS web contents as web folder | 03 Jul 2008 11:41 GMT | 4 |
I apologies if this message was posted before. I need to develop an application which connects to HTTPS website and show the contents (web folders) just like windows explorer, so i can apply drag n drop, cut, copy and paste operations. The functionality
|
| Passing strings to C++ DLL | 03 Jul 2008 11:08 GMT | 6 |
I am attempting to write a .NET wrapper for a C++ DLL file, but am having problems with passing strings as parameters. How should I be writing my C# function call when the C header file is definined as taking a char * as an argument? For example the C++ header says
|
| resources file not working in VS2008 | 03 Jul 2008 10:28 GMT | 1 |
I have converted a project from VS2005 to VS2008, and I now have problems accessing icons which are stored in a .resources file. The target framework is still 2.0. When I look at the .resources file in the Soultion Explorer, the icon
|
| Returning "this" or classtype from static method | 03 Jul 2008 10:15 GMT | 5 |
I have a static method in a class and I need to be able to return a reference to "this". Googling around, I found a heap of discussions of the pros/cons of "abstract static" etc. It was quite a heated debate about purity of OO design that just did my head in a bit.
|
| Checkboxes and datagrids | 03 Jul 2008 10:11 GMT | 1 |
I have a datagrid with checkboxes in it.I have a total column. Now whenever a checkbox is ticked i need to retrieve the total of that row.
|
| How to compare enums? | 03 Jul 2008 09:24 GMT | 2 |
I have an enum which obviously has several values. I want to be able to do a comparison to see if the value selected by a user is the same as one of the enums in the list. My code is below. if (risk.Vehicle.ImmobiliserMake != ImmobiliserMake.None ||
|
| Generic Interfaces and casting from object at runtime problem | 03 Jul 2008 09:03 GMT | 14 |
Let's say that I would like a generic type that supports Min/Max properties and can be double or integer or even datetime if need be, something flexible. So I go about creating the following generic interface :
|