In this post we are going to see how to create a transparent Form in Windows Form application. 1) Click on File -> New Project and select Windows Forms Application . 2) Click on the Form and select View Code 3) Type the following code in the constructor. this.TransparencyKey = (BackColor); Now your entire code will be public partial class Form1 : Form { public Form1() { InitializeComponent(); this.TransparencyKey = (BackColor); } } 4)Build and run your application either by CTRL+F5 or click on Start. 5)You will get a transparent form as shown below. 6)To remove the border and to display a transparent image on ...
You might have noticed that MASM (8086) wont rum on Windows 7 or newer versions easily whereas it runs well on Windows XP. In this tutorial i will show you how to install MASM on Windows 7 and newer versions. You will have to download two files: DOS Box Installer - Download the file from here . 8086 Assembler - Download the file from here . DOS Box is an open source DOS emulator and is available for Windows, Mac OS, Linux etc. After downloading the files, Install DOS Box on your computer. Extract the second file (8086.rar) to C drive. Make sure that the 8086 folder in C drive looks like as in the image. Now open DOS Box and type the following commands: MOUNT C C:\8086 - You will get a message saying Drive C: is mounted as Local Directory... C: EDIT FILENAME.ASM - You will get a new screen for writing the program.
This post will help you to create an OCR application in C#. For this i will be using Visual Studio 2013 and Puma.NET . Before creating the project you need to install Puma.NET on your computer. You can download Puma.NET from here . After downloading, run the installer to install Puma.NET on your device. The default installation folder will be C:\ProgramFiles (x86) on 32 bit systems. After finishing installation you will have three folders under C:\ ProgramFiles (x86)\Puma.NET . Open Assemblies folder and there you will have three DLLs named dibapi.dll, puma.interop.dll and Puma.Net.dll . Create a Windows Forms Application and add a Button and RichTextBox to the form. Right click on Project -> Add References . Select Browse and add Puma.Net.dll from the Assemblies folder under installation path of Puma.NET. Click on Build to build your project. Open Debug folder of the project and there will be puma.interop.d...
Comments
Post a Comment