| Thread | Last Post | Replies |
|
| how to select datastructure? | 31 Jul 2009 20:35 GMT | 9 |
hii all I am using in my win apllications some data objects. manager can have many employees. I am not sure how to store the employees. is the best way by dictionary(by
|
| SqlException was unhandled | 31 Jul 2009 19:54 GMT | 1 |
I am getting this error message: SqlException was unhandled - An attempt to attach an auto-named database for file D:\CombinatoRoyX\DB\MyDatabase#1.mdf failed. A database with the same name exists, or specified file cannot be opened, or it located on UNC share.
|
| Is it possible to extend the indexer | 31 Jul 2009 18:53 GMT | 3 |
Suppose I have a Customer class defined below, public class Customer { public int Id { get; set; }
|
| Include and Include file | 31 Jul 2009 18:30 GMT | 4 |
I need to be able to include an .aspx file that will then process simple variable substitutions prior to sending the file to the browser. In the following example when I call sample.aspx I would like the string printed at the browser to be ...
|
| Accessing WCF server without using the generated code from svcutil | 31 Jul 2009 12:30 GMT | 3 |
As you all may recall I've been working on a WCF client/server system for some time. I have need of one of my clients to be able to access the server and I'm hoping there's a way to configure the client to access the server programmatically instead of having to use the stuff
|
| How to WebBrowser.DocumentText with right encoding | 31 Jul 2009 11:12 GMT | 5 |
Hi, I am new to C#. Maybe someone can help me with this: I am writing a web crawler that puts one page at a time in WebBrowser and I want to get the DocumentText and work with it. Since I don't know the encoding of the page beforehand, I have to get the encoding and then set so I ...
|
| Update datarow | 30 Jul 2009 20:16 GMT | 2 |
hey, so i have a datatable like this: col1 col2 col3 col4 ----------------------------- M X 1 2
|
| How to consume INotifyPropertyChanged events | 30 Jul 2009 20:02 GMT | 4 |
I have a class that implements INotifyPropertyChanged. Parts of a UI are bound to it, and they work as expected. However, how can I be notified of certain property changing events without binding to it, so that I don't need to create new event handlers?
|
| Using WCF clients | 30 Jul 2009 19:24 GMT | 2 |
Is it possible to make a WCF client without using the svcutil command to generate all of that stuff in generatedProxy.cs and App.config? And, as a follow on question, is it possible to utilize the WCF services, at the client side, without referencing any calls to code in
|
| Parsing text files | 30 Jul 2009 19:06 GMT | 9 |
For practice, I have a go at implementing the GEDCOM 5.5 standard for genealogy. Here's a sample of the file format: http://homepages.rootsweb.ancestry.com/~pmcbride/gedcom/55gcch2.htm#S6 I'm planning to use StreamReader to read files, but I'm not sure exactly
|
| Copy byte array to other | 30 Jul 2009 18:54 GMT | 10 |
Hello. How I can copy one byte array to other byte array? For example I have byte[] array1 = new byte[500]; byte[] array2 = new byte[100];
|
| How to overload Down Arrow Key? | 30 Jul 2009 16:37 GMT | 9 |
I have two datagridviews on a winform. I start my operation by populating the first grid (grid1) with data from a table (tbl1) where an ID field in the table will contain an ID value for multiple rows. ID fld1 fld2
|
| group windows in taskbar | 30 Jul 2009 14:33 GMT | 1 |
I need to group my windows in task bar: 3 Orders windows - 1 group, then 3 quotes windows in another group, and so on.Orders have the same icon, Quotes have the same OTHER icon, so I can not group them by setting project icon. Is there any other way? Thank you, Nin From http://www ...
|
| Resource Embedding - help! | 30 Jul 2009 08:39 GMT | 1 |
I'm trying to embed a text file into my project's DLL as a resource (via a resx file), but I can't seem to get it to work. Does anybody know how or know a tutorial on how to add it and access it via code?
|
| C# for loop and comma operator | 30 Jul 2009 07:46 GMT | 4 |
What is the reason behind disallowing the comma operator in the for-condition of a for statement? It's allowed in C. It's allowed in the for-initializer and the for-iterator, but not the
|