| Thread | Last Post | Replies |
|
| Splitter Container Resize | 21 Nov 2007 23:02 GMT | 3 |
I have a horizontal Splitter, for which I would like the top panel to remain 20 pixels in height. I do this because I have a containter on it, and I overide the OnPaint method. It is being painted as a band similar to that of Disk Defragmentor.
|
| ToString() Formatting Trick | 21 Nov 2007 23:01 GMT | 2 |
Hey Folks, I have searched "hours" for where this tricky option is documented. I can NOT find it! So, I am asking assistance on two issues >> 1) What are the formatting switches available for the ToString()
|
| MailMessage question... | 21 Nov 2007 22:22 GMT | 1 |
In the Body of the MailMessage, if I wanted to have a few blank lines below my message, how would I do that? I know that if I was in VB, I could probably get away with CHR(13) & CHR(10). msg.Body = "The attached text file contains Craft labor. ";
|
| avoid flickering during sizing form | 21 Nov 2007 21:13 GMT | 4 |
Basically i've read that under C++ we can avoid flickering forms during sizing (maximize, minimize, restore,...) in SDi/MDI application. I understood that for that i need to override the WndProc with WM_PAINT and WM_SIZE messages.
|
| only one MDI Children in MDI'form | 21 Nov 2007 21:04 GMT | 1 |
How would only accept in MDI' form one window children open at a time. thanks
|
| passing objects into methods that do database processing? | 21 Nov 2007 21:02 GMT | 2 |
Is it good (or should I say normal) practice to pass an object into a method for database processing? Or should I stay away from that sort of thing.
|
| How to pass Composite Control messages to the parent Form? | 21 Nov 2007 20:07 GMT | 7 |
I developed a Composite Control with Visual C# (Rocker Button). The button detects MouseUp events inside the control. However I would like these MouseUp events to be transferred to the parent form of this control so I can update the form with the new information.
|
| phantom namespace across assemblies | 21 Nov 2007 19:54 GMT | 1 |
I can't find where i have declared ICategoryService as being in the IVS.WMS.Product namespace. I have recompiled. Deleted the obj and bin dirs. Removed the reference. I can't figure out how the Server dll thinks the ICategoryService interface is in the IVS.WMS.Product
|
| StringBuilder to byte array | 21 Nov 2007 19:53 GMT | 16 |
What is the easiest way to convert StringBuilder to byte array? Thanks
|
| LINQ and Distinct method and custom IEqualityComparer | 21 Nov 2007 19:27 GMT | 1 |
I am playing with Visual Studio 2008 and LINQ to XML. When trying to use the Distinct method with a custom class implementing IEqualityComparer<XElement> I can't compile the project which I do not understand. Maybe someone here can tell me what I am doing wrong.
|
| multiple criteria switch | 21 Nov 2007 17:57 GMT | 2 |
is it possible to have a multiple criteria switch in C# switch(name , surname){ case "John","Smith" break;
|
| Import unmanaged C++ class from dll issue | 21 Nov 2007 16:54 GMT | 1 |
I'm trying to import code from a c++ unmanaged dll in a c# project. In the dll there's a class named Connection, but the dll exposes only 2 methods (outside the class): - HBITMAP DownloadIntra(char *host, int port, char *user, char *pwd,
|
| Selecting text in another application and importing it into mine | 21 Nov 2007 16:39 GMT | 4 |
How can select a single word of text, in any application, e.g. Windows Explorer, Internet Explorer etc. , without double clicking it and instead use a combination of mouse and keyboard, for example Left Control key + Right Mouse Button, and retrieve that word into my application ...
|
| How do I get WebProxy to work in HttpWebRequest? | 21 Nov 2007 16:32 GMT | 3 |
I found an example online and when I tried repeating it with the proxy I normally use for my browser, I get errors. What I do is this: WebProxy proxy = new WebProxy("http://www.autoconfig/pac", true);
|
| bitwise rotation in c# | 21 Nov 2007 16:19 GMT | 6 |
How can i perform bitwise rotation in C#?
|