| Thread | Last Post | Replies |
|
| Class from XSD.exe ... now what | 16 Nov 2007 21:58 GMT | 1 |
I have an XSD and I generated a class with xsd.exe. I added it to my project. I can instantiate all of the appropriate classes and set values. How do I get it to write out the resulting XML?
|
| MultiLine textBox - limit num of char on each line | 16 Nov 2007 21:01 GMT | 2 |
I've a multiLine Textbox, and i want to limit each line to a maximum number of charecters. How can i do it? Thanks,
|
| Managing XML namespace prefix scoping | 16 Nov 2007 20:32 GMT | 4 |
Has anyone had any luck managing namespace scoping using System.Xml.XmlDocument? Specifically, I'm trying to avoid this: <root xmlns="urn:1"> <prefix:child xmlns:prefix="urn:2"/>
|
| Generics: how to have a constraint on an attribute? | 16 Nov 2007 20:16 GMT | 5 |
I would like to set a constraint (where keyword) on a type in a generic class, based on the [Serializable] attribute to accept as "T" type each class marked as serializable. Is it possible? If yes, how to do? Else... why not??? :-)
|
| Try Catch Finally Using | 16 Nov 2007 20:00 GMT | 4 |
All the code samples I can find show using on its own or try... catch.. .finally on its own. Will the following cover me properly in terms of handling errors and cleaning up? string conns = "Provider=Microsoft.Jet.OleDb.4.0;Data
|
| Setting Up Outlook Pop Accounts | 16 Nov 2007 19:06 GMT | 1 |
I have a scenario where upon initial running of my application I need to create a new pop3 mail account within the locally installed Microsoft Outlook program. I need to be able to set smtp auth options as well as the general server and user settings.
|
| drawing using c# | 16 Nov 2007 18:04 GMT | 2 |
I need your help please I am abegineer in drawing using c# I want to let the user use the mouse to draw a rectangle in windows form and allow him to select it and drag it in any part of the form I found many complecated codes couldn't understand them, so if you can
|
| Getting processes complete path correctly | 16 Nov 2007 17:19 GMT | 3 |
I'm trying to get the complete path of all .exe returned by Process.GetProcesses() The problem is the "theprocess.MainModule.FileName"...sometime for some process it return stange invalid path like this : \??\c:
|
| Rijndael Encryption - CAPS Result | 16 Nov 2007 17:17 GMT | 4 |
http://www.obviex.com/samples/Encryption.aspx According to this link, I am using Rijndael Encryption & Decryption Algorithms, But I want my encrypted strings just CAPS string and just alphanumeric values ABC...Z and 123...90, no other chars I want, what should
|
| Can't get XSD to generate DataSet primary keys | 16 Nov 2007 16:50 GMT | 1 |
[.Net 2.0, VS2005 SP1, MSDataSetGenerator used through IDE] No matter how I shape my XSD, I can't get it to create primary keys in my data set. I have looked at tons of examples, followed them to the letter, but still no go. When I merge my data sets I get duplicate records. If I ...
|
| Event fire clarification... | 16 Nov 2007 16:47 GMT | 2 |
Stepping through code and discoverd that an event declared for a 3rd party datagrid (Infragistics UltraWinGrid) in InitializeComponent() fires twice: 1 for setting its grid.dataSource, and a second time on its grid.dataBind().
|
| DateTime comparasion problem with 0:00:00 | 16 Nov 2007 16:43 GMT | 2 |
I have DateTime filed in db table. I'd like to search my db based on DateTime filed, actually to list all rows with particular date, for e.g. 16.11.2007... I send string to method for. eg. 16.11.2007 --> short date and convert
|
| Problems with DirectoryEntry | 16 Nov 2007 15:54 GMT | 5 |
I am working with Active Directory in C# and trying to read and set certain attributes. To set an attribute, I have the following code: DirectoryEntry de = new DirectoryEntry(); //This is assigned to a DirectoryEntry from a search result.
|
| Color box | 16 Nov 2007 15:29 GMT | 4 |
When someone selects a custom colour, that colour is placed in one of the boxes below the regular colour. How can that custom colour be retained after closing down the colour box and re-opening it? What I am asking is (I think): how to do this process in reverse
|
| grid row hight | 16 Nov 2007 15:25 GMT | 1 |
Is there more effective way to change height of all rows in a DataGridView at once instead of going through all rows and setting row.height=a for each row?
|