| Thread | Last Post | Replies |
|
| Read XSD to string | 07 Jul 2008 06:41 GMT | 3 |
I have an xsd that I want to save as an XML string to store in a DB I can save as a physical file using xsd.WriteXml(@"C:\Temp\Junk\junk.xml"); But I am unable to save to a string so I can write string to a db
|
| How to overcome from the error : "Object does not match target typ | 07 Jul 2008 06:14 GMT | 4 |
Im running this code public Boolean IsLayoutOpen(String strLayoutName) { Layout Layout_Obj = null;
|
| Outlook Express GUI in C# | 07 Jul 2008 01:25 GMT | 3 |
I am trying to write a C# application that has a GUI similar to C#. Rather than "roll my own" from scratch - I wonder if anyone knows ehere I can get an example of how to write such an application - preferably, with the source available?
|
| how to step through the system code | 06 Jul 2008 19:23 GMT | 1 |
how can I step through the system code like the property editor? Im having trouble trying to find how to use the property editor to do exactly what I want, particularly now im finding
|
| SubClass And SuperClass | 06 Jul 2008 16:39 GMT | 12 |
well i have the following classes class Car { //some piece of code
|
| Filter Data | 06 Jul 2008 16:26 GMT | 1 |
I need some help with filtering. I not very savvy (yet) with c# so I am having a hard time figuring out how to filter results. Here is what I am trying to do. I am pulling data from a database and populating a listbox with the table
|
| How to pass a const object (read only object) to a method? | 06 Jul 2008 12:22 GMT | 9 |
I'm posting this fragment from another thread to frame the issue clearer. How to pass an object to a function/method call in C# that will guarantee not to change the object?* In C++, as seen below, you can
|
| 'adding' to DB table | 06 Jul 2008 08:54 GMT | 6 |
I am brand new to coding C# and Visual Studio. I have worked out how to configure the ComboBox creating my own object however it leave me with a lot of management updating as the table changes.
|
| Open Outlook on user machine | 06 Jul 2008 07:44 GMT | 23 |
How can I launch Outlook on users machines when they click a button on a web form (InfoPath)? Thanks
|
| Linq: no update in row | 05 Jul 2008 19:07 GMT | 1 |
Here is my code: MyDataContext db = new MyDataContext(); Profile profile = db.Profiles.Single(u => u.UserId == userId); // Edit
|
| how to test if a selected index has just been change ? | 05 Jul 2008 18:09 GMT | 6 |
This is, below, a piece of code that I have a problem with: In the program (french description here http://www.scalpa.info/carre_install_clickonce/aide_carre.htm) a number is generated in the interval given by the value of nudNumMin and nudNumMax.
|
| Creating a UserControl | 05 Jul 2008 17:39 GMT | 1 |
I'm reading in a book and here they says. "Now it is time to begin thinking about which events the control should provide. Because the control is derived from userControl class, it has inherited a lot of functionality that
|
| OdbcParameters in SELECT clause | 05 Jul 2008 17:22 GMT | 1 |
I am trying to safely pass the list of fields to select, as in: OdbcCommand odbcCommand = new OdbcCommand(); odbcCommand.CommandText = "SELECT ? FROM myTable"; odbcCommand.Parameters.Add(new OdbcParameter("@myField",
|
| Is there AOP framework on .NET 2.0 and 3.5? | 05 Jul 2008 12:29 GMT | 3 |
|
| Equals and value types | 05 Jul 2008 07:24 GMT | 1 |
In my book they give a sample Complex class implementation and it implements: override bool Equals(object rhs) {...}
|