| Thread | Last Post | Replies |
|
| help: messagebox-like delay? | 11 May 2007 19:52 GMT | 2 |
hi, i created a windows application that uses winsock control. in the closing event, it sends a "Disconnect" string message. the server (listening application) does not receive this message. also in the closing event, a Messagebox is shown when not all values
|
| Java to C# | 11 May 2007 18:57 GMT | 2 |
In Java you have an Action class to can assign to various things, e.g. button.setAction(myAction); menuitem.setAction(myAction); The advantage being if I change a property of myAction, e.g. disabled,
|
| Load an assembly using a relative path | 11 May 2007 18:55 GMT | 3 |
I would like to create a routine that loads an assembly only knowing it's name (like abc.dll) which I know is in the same directory as the executing assembly. Do all methods require an absolute path? Is there a way around this? Thanks!
|
| How to convert string to InitCap | 11 May 2007 18:34 GMT | 2 |
Given any string variable in C#, how to convert the result into Initial Capitals? Ex: Given, "how are you?" to be converted as "How Are You?"
|
| Implementing IEqualityComparer for a struct? | 11 May 2007 18:21 GMT | 6 |
I am trying to implement the IEqualityComparer interface for a struct so I can use it as the Key for a Dictionary. My struct declaration has: public struct Ring : IEqualityComparer {
|
| Graphics to TextRenderer | 11 May 2007 18:18 GMT | 1 |
I have a custom label, that as the width changes, the height will change to fit all the text in the label... I use to do this like this... int newHeight = (int)Math.Ceiling(g.MeasureString(this.Text,
|
| if A or B | 11 May 2007 18:03 GMT | 4 |
Hi; is there a way to do #if DEFINE1 or DEFINE2 ???
|
| Outlook object | 11 May 2007 17:22 GMT | 5 |
I am using the Outlook.MailItem object to extract fields such as ReceivedBy, SenderName and Subject from emails, but it seems like there is no way to get at the actual received by email address and sent by email address, I can only get at the actual name of the sender and
|
| Saving DataGridView | 11 May 2007 16:45 GMT | 2 |
I would like to the save the column order of DataGridView. Thanks Mel
|
| How to use generics? | 11 May 2007 16:44 GMT | 32 |
In the following example, I'd like to replace int by a generic. In order word, I would like to replace int by float, double, byte or something like that. I've tried to find a common interface or something like that, but I didn't find.
|
| Serialize object to XML containing array | 11 May 2007 16:38 GMT | 2 |
Windows Application Visual Studio 2005 I am new to C# and have done very little XML or serialization. My client wishes me to store configuration data in an XML file.
|
| FileSystemWatcher and multiple changed events | 11 May 2007 15:15 GMT | 1 |
I have this problem when working with FileSystemWatcher class. I m using one of these objects to watch over a folder. Whenever i big file from another folder to the folder being watched, I get created event and multiple changed events.
|
| Using .Net 2.0 components in .Net 1.1? | 11 May 2007 15:07 GMT | 4 |
I need to convert a big .Net 1.1 solution to .Net 2.0. There is a LOT of code here and I do not want to do the conversion all in one go. I would like to be able convert individual projects from the solution to 2.0 and then reference them from the 1.1 solution, but when I try ...
|
| Craete tiff Image Page by Page | 11 May 2007 14:22 GMT | 10 |
Please help me to write a dll in C# , that will read each pages of a tiff image from a file and a memory stream object ( need two ways) and creatre a new tiff image object.The dll should return the combined tif image object.
|
| "sum" 2 bitmaps | 11 May 2007 13:41 GMT | 4 |
Hello... I have to bmps (100X100) and 1`st has an A on the left side and the other has a B on the right side. I want to "sum" this bitmaps to obtain a bitmap that contains "AB".
|