Windows Forms C# - Drawing and GDI+

| | | | | | |
The System.Drawing and GDI + package The System.Drawing package provides access to GDI + Windows features:
  • Drawing surfaces
  • Working with graphics and graphical transformations
  • Drawing geometric shapes
  • Working with images
  • Working with text and fonts
  • Printing on printer

Windows Forms C# - Working with directories and files

Reading from a text file
Text files provide the ideal solution for reading and writing data that should be used frequently, but too voluminous to manually enter each time the program is started.
| | | | | |
2018/02/07 04:42

Windows Forms C# - Forms and Dialogs


Forms and dialogs in Windows Forms are windows that contain controls. They can be different types: to have or to not have a frame, to be modular or not to be, to be stretchable or not to be, to be above all other windows or not to be, and so on. The System.Windows.Forms.Form class The System.Windows.Forms.Form class is a base class for all for
| | | | | |
2018/02/02 22:01

Windows Forms C# - Loops and Arrays

Loops 
Programming often requires repeated execution of a given sequence of operations. Loop is a basic programming design that allows multiple execution of a source code snippet. Depending on the type of the loop, the program code in it is repeated either a fixed number of times or while a condition is in effect. A loop that never ends is called an infinite loop.
| | | | | |
2018/02/02 13:42

Windows Forms C# - Variables, Strings and Boolean

Variables: The variable is a container of information that can change its value. It provides the opportunity for:
| | | | | | |
2018/02/02 02:07

Windows Forms C# - Controls and Code writing

Control class The System.Windows.Forms.Control class is a base class, the basis for all graphical controls, and defines a unified control framework - a programming model on which controls to be developed and implemented. It defines the common properties and events for all controls.
| | | | | |
2018/02/01 23:41

Active Directory Time Synchronization with multiple domain controllers on different Hyper-V hosts

By default, when virtual machine is created on Hyper-V host, its clock is "bound" to the virtualization host operating system clock via Hyper-V integration services. If there are two or more virtualization hosts in the same network, it may happen the operating system time on one of the hosts to be different comparing to another host.
| |
2017/10/19 03:42

Sysprep quick fix

Sometime, sysprep operation may fail with the following error message:
System Preparation Tool 3.14A fatal error occurred while trying to sysprep the machineDetails can be found on Microsoft web site https://support.microsoft.com/en-us/kb/2769827 

The quick fix is available here


| |
2017/10/18 06:13