| Thread | Last Post | Replies |
|
| xml vs xsd | 13 May 2008 14:32 GMT | 2 |
What is the best way to implement in c# xml validation with a given xsd? Thank u!
|
| Question on Enum flags | 13 May 2008 13:03 GMT | 6 |
I have the following defined. enum DisplayEventType{DISPUTE = 0x0001, ACTION = 0x0002, QUESTION = 0x0004); DisplayEventType dEventType;
|
| Texture.FromBitmap is slow runing from debugger | 13 May 2008 12:13 GMT | 7 |
Ive written a 3dmodel editor, and it works fairly well it harldy uses any cpu exept when its loading a texture from bitmap in the debugger, at all other times it hardly uses any cpu but from the debugger even in release mode it takes a second or so
|
| Send cookie with WebRequest | 13 May 2008 11:13 GMT | 3 |
string m_request = some_web_page; HttpWebRequest request = (HttpWebRequest)WebRequest.Create(m_request ); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Which works fine, but I need to set and send a cookie with the WebRequest.
|
| Code Snippet Respository | 13 May 2008 11:07 GMT | 6 |
All, I'd like to hear how other developers/architects keep track of old scripts, code snippets, relevant URLs, etc. I think most developers have an area where they keep reusable code they would like to use
|
| inheritance vs xml | 13 May 2008 09:32 GMT | 5 |
I have inheritance between classes which are the result of xml serialization. My question is how can I insure in serializaion stage that the hierarchy in xml is according to inheritance hierarchy in classes?
|
| Passing DBTransaction between functions in Bus Layer | 13 May 2008 08:21 GMT | 3 |
I have a function setup in my Bus Logic Layer similar to the following function ProcessOrders function InsertOrder function InsertOrderItems
|
| fundamental web services question | 13 May 2008 02:48 GMT | 5 |
I have an asp page (please don't ask me why), I would like to consume a .net web services. What is the best way to consume the web service? Is it using com component or using vbscript? Could the experts shead some light into this dark area for me?
|
| Best practice | 13 May 2008 02:43 GMT | 1 |
I´m starting with C# and .NET. So, I have some difficulties with some codes. I´m already a programmer and I´m migrating from Delphi to C#. My questions are: 1) Into a form I´ve made my connection string and my SqlConnection variable.
|
| hex type values | 13 May 2008 02:28 GMT | 5 |
If I assign an attribute using property name/value pairs such as [MyAttr(stringVal="joe")] where stringVal is a string C# generates the name\value pair using hex values 01 00 01 00 54 0E 09 73 74 72 69 6E 67 56 61 6C 03 6A 6F 65.
|
| Get Email from Exchange Server | 13 May 2008 01:24 GMT | 2 |
I am looking to get emails from a Public Folder on our internal server using a filter from exchange server 2007 extract attachments tag or set the status on each email so I don't process it again next day
|
| DataGridView and Selected Row | 13 May 2008 01:03 GMT | 2 |
If I can explain it. I have a DataGridView with say 100 rows, 30 of which will display on the screen. If I drag down the vertical scroll bar so that say row 50 is the centre
|
| Get image from MessageBoxIcon | 12 May 2008 23:16 GMT | 6 |
I want use icons available in MessageBoxIcon to use them in a PictureBox control. How can I do this? There are a way to get this icons from MessageBoxIcon, or I need to have
|
| How to add new attribute to XmlNode | 12 May 2008 22:34 GMT | 4 |
I am reading an XmlFile using XmlDocument and traverse through the XmlNode, as I read I need to append an attribute to the XmlNode on some conditions. I tried xmlNode.Attributes.Append()
|
| Associate menu item with type | 12 May 2008 21:55 GMT | 1 |
In WinForms Menu designer I need to associate type with menu item. In properties window for Customer menu item I entered =typeof(Customer) but designer creates code
|