| Thread | Last Post | Replies |
|
| 16bppGrayScale | 02 Mar 2008 02:10 GMT | 4 |
Anyone know how to create a 16bppGrayScale? The following code crashes at the save statement with an OutOfMemory exception: bmpTemp = new Bitmap(bmpBuffer.Width, bmpBuffer.Height, PixelFormat.Format16bppGrayScale);
|
| How do I marshal a C# string to call a C++ function that needs a L | 02 Mar 2008 01:59 GMT | 2 |
Hi, I need to call a funciton in a C++ Dll that requires 2 LPCWSTR parameters. How do I marshall this in my DLLIMPORT statement in C# (string trpe)? Thank you.?
|
| Implement Interface | 01 Mar 2008 23:24 GMT | 8 |
I have a generic BinaryTree called Tree<T> below where I have implemented the IEnumerable<T> interface. The class header is shown below. public class Tree<T> : IEnumerable<T> where T : IComparable<T>
|
| "The name 'Filepath' does not exist in the current context" | 01 Mar 2008 23:10 GMT | 2 |
Please assist. New to C#. This below code is in a book it was used in VS 2005. I'm using VS 2008. On this line:
|
| Some miscellaneous newbie 2005/.Net 2 questions | 01 Mar 2008 18:23 GMT | 1 |
These have all been bugging me for a while. 1. myBuffer.Render I use manual double buffering, it works well (no flicker, and suits the logic of my app). Accordingly my on_Paint override is:
|
| How to get events assigned to ToolStripMenuItem.Click | 01 Mar 2008 17:54 GMT | 11 |
In the code below I Call CopyToolStripMenuItem which effectively copies the properties of saveToolStripMenuItem one at a time into newItem. The next statement changes the Text of newItem to "New"
|
| What property defines a controls paint bounds? | 01 Mar 2008 13:51 GMT | 14 |
I am creating a custom control and I'm trying to get the painting of it correct. I'd like to simply use: e.Graphics.FillRectangle(Brushes.White, DisplayRectangle); ... or ...
|
| Problem in executing the file? | 01 Mar 2008 12:32 GMT | 1 |
Hi friends, Iam new to this group. I have problem with executing the output(exe) file in a new system. I have created and compiled in a VS 2005 tool. when i run the exe file in a new system. its prompting me
|
| how to remove closing tag of a node of xml file in asp.net and c# | 01 Mar 2008 12:00 GMT | 2 |
I write code like this to remove perticular node. but it left closing tag in xml file. but i want remove this closing tag also. ------------------------------------------------------------ string filename = Server.MapPath("DutyStatus.xml").ToString();
|
| LINQ and SQL in general. | 01 Mar 2008 10:05 GMT | 20 |
I learn about LINQ here in this forum. I been a VB.NET programmer for quite a while and we are using an internal solution for SQL access. I have some experience with C# and I started to write a blog to share my experiences with a sql framework.
|
| How to convert a Dictionary<int, double> to an array? | 01 Mar 2008 04:22 GMT | 2 |
I am trying to convert a Dictionary into an array so that I can compare values and compare keys individually. I am looking for a solution like array[array] i.e array of array.
|
| Weird XSLT messages | 01 Mar 2008 04:16 GMT | 1 |
I keep getting these weird error messages FailPT0.002Smantis.exe -uFailPT0.002SFailPT0.002SFailPT0.001SExpected data.Some unexpected data.1093This is a sample debug messagePassPT0.001SSkippedPT0.000SBrokenPT0.000SNotImplementedPT0.000S
|
| Unwanted duplicated columns in DataView | 01 Mar 2008 04:16 GMT | 1 |
I placed a DataGridView in the form and configured it to have 3 columns A, B and C (all in design mode). After that, I did through code a DataTable also with 3 columns, A, B, and C.
|