| Thread | Last Post | Replies |
|
| Can I get a truename or canonical filename without using interop? | 29 Nov 2005 17:40 GMT | 3 |
I want to know that two forms of an absolute filename reference the same file. How would I do this without using interop, or is it even possible? TIA,
|
| Serialization Problem to the extended attribute of a file. | 29 Nov 2005 07:58 GMT | 5 |
I am having problems with the following method in a Serializable class: public void SaveMap() { // Three different ways to open a file // a) With a handle to an extended attribute on file m_Path (Which is a directory)
|
| Graphics.DrawImage(metafile) - no antialiasing | 29 Nov 2005 04:47 GMT | 13 |
Hello; I am using the following code to render a metafile: Metafile mf = new Metafile("../../text box line.emf"); System.Drawing.Bitmap img = new System.Drawing.Bitmap(mf.get_Width(),
|
| wmf --> bmp background color | 29 Nov 2005 01:56 GMT | 22 |
Hi; I asked: 3) The rendered image has a black background. The metafile draws text, a box, and a line. But the metafile does not first fill the canvas with white.
|
| bidi support? | 24 Nov 2005 01:59 GMT | 3 |
Hi; What .net class has the same functionality as java.text.Bidi? (This is a class for handling bi-directional text - Hebrew & Arabic.) All I need is the ability to give a method a string and find where the
|
| Async Web service and Form Close() | 20 Nov 2005 15:36 GMT | 2 |
I have a Windows Forms client that calls a web service both synchronously and asynchronously. If a certain value is returned, I pop up a MessageBox to the user, and wait for their answer. I set a timer before the window opens to make sure something happens within a time period. ...
|
| getting value from FieldInfo | 17 Nov 2005 18:27 GMT | 1 |
how can i get the value from fieldinfo. want to loop all properties and get the value from my class FieldInfo[] myFieldInfo; Type myType = this.GetType();
|
| How to get an assembly's full name? | 17 Nov 2005 07:29 GMT | 1 |
I know the assembly name, dll name and class name, and it is in gac. How do I know its full name including its public key and version? Actually what I want to do is to use .Net reflection to load an assembly from GAC first. If it is not in the gac, let user provide its file path ...
|
| wmf Image raw GUID says memory BMP | 16 Nov 2005 01:58 GMT | 6 |
Hi; When I create a Bitmap object with a file, I then look at the RawFormat GUID to see what bitmap format the file was in. This works great for all of the bitmap formats (gif, jpg, etc).
|
| Metafile does not work with emf file | 15 Nov 2005 09:29 GMT | 2 |
Hi; I get a weird error if a file is missing. In the following code the emf file is not there (wrong directory). When I call:
|
| How do I save a bitmap as a metafile? | 15 Nov 2005 07:06 GMT | 9 |
Hi; I tried to take an Image that is a bitmap and save it as a metafile (ie one record, a DIB) using: img.Save(mem, System.Drawing.Imaging.ImageFormat.get_Wmf());
|
| wmf --> bmp, bitmap size | 15 Nov 2005 06:28 GMT | 3 |
Hi; I asked: Ok, I create an Image passing it a wmf file that is a placable wmf. It's header has the values of:
|
| wmf --> bmp image size | 15 Nov 2005 06:28 GMT | 5 |
Hi; I asked: Ok, I create an Image passing it a wmf file that is a placable wmf. It's header has the values of:
|
| How do I save as a RLE BMP file | 11 Nov 2005 02:29 GMT | 5 |
Hi; I am using Image.Save (stream, ImageFormat.get_Bmp()); to create a bmp file. The source used to create the Image is an uncompressed bmp file. When it saves it, I want it as a compressed bitmap - the bitmap is 98% white
|
| Getting exception in Image.Save() | 10 Nov 2005 23:01 GMT | 9 |
Hi; I am doing the following: // note data is a .bmp file read it to a byte[] System.IO.Stream file = new System.IO.MemoryStream(data, false);
|