StevenFowler's Q&A profile
Windows Forms IDesignerHost Blocks Mouse Events
Dear all, I'm in the middle of implementing a development toolkit. In order to enable users to design interfaces (forms), a form is shown in design-mode by using an IDesignerHost object. It is very powerful and reliable as I can make use of oth ...Show All
Windows Forms Divide my page into 6 rectangles
Can anyone help me to divide my page for printing into 6 compartments. So far I have managed to divide it into 2 (top and bottom) I need to print up to 6 images on 1 page in 3 rows of 2 X X X X X X Dim rect As RectangleF rect = ev.Graphics.VisibleClipBounds() rect.Height = rect.Height / 2 Dim bottomRect As New RectangleF(rect.Left, rect.Bottom, rect.Width, rect.Height) Dim font As Font = New Font( ...Show All
Smart Device Development Error creating cab file with VS.NET 2003 on Win XP Home
Hi. I have installed VS.NET 2003 on a Win XP Home computer... Every time I try to create a .CAB file for the installer of a PPC application (using the buildcab.bat batch that came with VS) cabwiz dies with this error: Error: CAB file "C:\<path to my app>\BuildCabs\Cabs\<app>.ARMV4.CAB" could not be created. I've managed to get compile the application on a different PC, which has XP Pro.   ...Show All
Visual Studio 2008 (Pre-release) How to get rid of Microsoft Expression Interactive Designer window?
Hi, I try to run my WinFX Windows application using VS 2005, the xaml always run inside the Microsoft Expression Interactive Designer runtime window after I install the Microsoft Expression Interactive Designer (Window that has forward and backward arrows on the top left hand side). Is there any method to get rid of that window (I am using Grid as document root) You need to contain ...Show All
Visual Studio Text template load a file
Hi, I need to load a project file from text template and write all lines. The below code work fine, but I need to put complete "path" in property " FileSourceCode" I need to load from "current path". <# if (System.IO.File.Exists(att.FileSourceCode)) { System.IO.StreamReader sr = new System.IO.StreamReader(att.FileSourceCode); #> <