| Thread | Last Post | Replies |
|
| purpose of CreateInstance<T> | 28 Jun 2006 21:31 GMT | 8 |
Isn't CreateInstance(typeof(int)) the same as CreateInstance<int>()? i don't understand how this method helps anything. dan
|
| Generics with List and Delegates? | 28 Jun 2006 21:29 GMT | 4 |
I wasn't sure if I could do this. I believe I am stretching the capability of what generics can do for me but here goes. I have a generic delegate defined as public delegate bool RuleDelegate<T>(T item);
|
| Exceeding MTU which serialized tcp messages | 28 Jun 2006 20:54 GMT | 2 |
Hi, I am writing a client/server application that has quite complex messages that can only reasonably be handled by parsing serialized message class objects using a networkstream and binaryformatter. when the message objects are less than the MTU (1500b) then message is
|
| Accessing a HTML document in a resouce dll | 28 Jun 2006 20:52 GMT | 3 |
I am currently working on a C# application that uses an axWebBrowser control which displays HTML pages. This is being done to reuse an existing web application which resides on a client's computer. I have created a resource .dll linking in all of the HTML, images and
|
| Setting up Code Access Security | 28 Jun 2006 20:29 GMT | 4 |
We have an app that will be run from a network share. I know that on the machine that will run the app, I need to grant the proper permissions. On the laptop, I installed the .Net framework verson 2.0 (dotnetfx) but when I went to the control panel under administrative
|
| [OnDeserialized()] and StreamingContext | 28 Jun 2006 20:24 GMT | 1 |
For a method decorated as the one below, what passes the StreamingContext argument? The serialization infrastructure? [OnDeserialized()] private void OnDeserializedHandler(StreamingContext context) {
|
| How to read a binary file from the middle of the file | 28 Jun 2006 19:58 GMT | 4 |
Hai, I want to read from a particular point of the file not from the beginning of the file. It may be from the second line or the third or from any position, so how is it possible for me to reach the particular
|
| Reading *exact* SQL types from database | 28 Jun 2006 19:47 GMT | 6 |
I've managed to read an sql type from the database (using a kind of virtual commandbuilder and SqlDbType method) but I'm not able to retrieve exact data type (eg. maximum length of a varchar field), ie. I can only retrieve "NVarChar" type while the true type name is ...
|
| random limited repetition from array... | 28 Jun 2006 18:43 GMT | 4 |
I need to be able to choose a random string from an array. That is easy enough, but I want to restrict the repetition of that string until one or two other choices have been made. So the following output would be ok a,b,c,a,d,c or a,c,d,a,d,a but the following would not; a,b,c,c, or
|
| dotmatrix printer | 28 Jun 2006 18:36 GMT | 3 |
Is there a way to write directly to a dotmatrix printer using C#?
|
| type or namespace name does not exists, but it does. | 28 Jun 2006 18:25 GMT | 3 |
I've got a project I've been assigned to do maintenance work on. When I originally took it out of Source Safe it compiled just fine. I even made changes and it compiled fine. The project is structured as a solution containing several (7) other
|
| XmlTextWriter.WriteElementString problem | 28 Jun 2006 18:20 GMT | 2 |
I am employing the XmlTextWriter class to generate an XML document. Everything works fine, until I have to write an attribute to an element which contains a value. Examples below:
|
| e.Handled = true doesn't work OnKeyDown | 28 Jun 2006 17:25 GMT | 4 |
MyRichEdit is derived from RichTextBox. I'm overriding OnKeyDown. I'm trying to handle the TAB key but without printing it in the edit box:
|
| getting agetting a bit confused with Assembly, Namespaces, Projects and Solutions | 28 Jun 2006 17:25 GMT | 1 |
I'm getting confused about "which-name-give-to-what" developing my applications using Visual Studio. If I have to develop a "Utilities" library containing some classes for logging and other classes used for cryptography shall I build a new
|
| Question on memory used by program | 28 Jun 2006 17:24 GMT | 2 |
I have a VS2005 windows program written in c#. In this program I have an array list which stores many DataTable's. When I first run the pogram the arraylist is loaded with datatables. At this point when the see the memory used by the program in task manager it is 135,654K.
|