| Thread | Last Post | Replies |
|
| Can streamreader change a file? | 08 Apr 2008 01:28 GMT | 3 |
Hello group, if I open with streamreader a file to read in that way: StreamReader sr = new StreamReader(c:\\test.txt, System.Text.Encoding.GetEncoding(10000));
|
| Question on non-modal form | 07 Apr 2008 22:51 GMT | 1 |
In my program, the user can create a non-modal form (Is that the right phrase? I mean form.Show, not form.ShowDialog). This is important, because the user must go back and forth between the main and non-modal window.
|
| Code protection | 07 Apr 2008 20:19 GMT | 1 |
I've got some code contained in a component in a dll that I want to protect against reverse engineering - but I've never done anything like that before, so I'm wondering a few things: 1) What brand of obfuscation software provides best protection at a
|
| which implement interface to use | 07 Apr 2008 19:48 GMT | 1 |
hey all, when i implement my interface i built i get a choice of 1. Implement Inteface 2. Explicitly Implement Interface
|
| Deep Clones | 07 Apr 2008 16:50 GMT | 2 |
I can basically see two ways of doing this, in both cases implementing Clone() from the ICloneable interface: Given: class A : ICloneable { ... }
|
| Locating a Datagrid Row from the Datasource Row, FAST | 07 Apr 2008 16:41 GMT | 4 |
Short version of my problem: i have a Datagrid (Flexgrid from ComponentOne) with a Datatable as source. I need to search a row in the datatable, using a primary key column in the datatable, and then figure out wich row this currently
|
| Array length | 07 Apr 2008 16:31 GMT | 2 |
vs 2005 c# How do I get the number of filled item from an array? string[] myArr = {"","","",""}; myArr[0] = "one";
|
| index loop in a dataset | 07 Apr 2008 16:28 GMT | 8 |
hi all, having a few problems with a index loop on a dataset im using. basically i have a datagrid displaying rows of data. i select 1+ rows, it deletes them but misses the last row. for (int iIndex=0; iIndex<this.ultraGrid1.ActiveRow.Index; iIndex++)
|
| Advertising | 07 Apr 2008 15:35 GMT | 10 |
What the f.ck is going on with all of the GODDAMN advertising on these newsgroups? Can't ANYONE stop it?!?!?
|
| What am I doing wrong with LINQ and XML | 07 Apr 2008 14:44 GMT | 6 |
I have an xml fragment that looks like this assigned to doc variable: <charge_details> <charge> <type>Maintenance Charge</type>
|
| Pass a function as an argument | 07 Apr 2008 14:17 GMT | 3 |
I have a function within which I would like to call another function. Id like to pass the second function into the first as an argument. As follows: Function1(Function2a);
|
| c# 2.0 combobox with a locator | 07 Apr 2008 12:58 GMT | 1 |
Now, I have combo that after user presses a key it scrolls to the first value in combo that starts with the pressed key. Imagine that these values are in combo: Amanda
|
| serialize dictionary<string, string> collection in .net3.5 | 07 Apr 2008 12:57 GMT | 6 |
Is it possible to serialize to xml a dictionary<string, string> object in .net 3.5?
|
| Installer Class Question | 07 Apr 2008 12:47 GMT | 6 |
How to get the folder in which the MSI is present? What I am trying to do is, basically my app has a config file and within this the connection string is stored, when I distribute the MSI, the sys-admin normally puts the MSI on a network and installs the
|
| DataSet append | 07 Apr 2008 12:01 GMT | 2 |
I have one dataset which is exported to an external file (excel) My problem is that I want to append the data of two different views to one dataset. (because they have to be displayed in an sheet among each other)
|