Category: tips and tricks
-
How To … Create a new site similar with regular internet site in Windows 7
Step 1 : Make a Web site with Visual Studio Step 2 : In IIS Manager create the new site Step 3: edit the hosts file (administrative rights) Step 4: Create the Web application,modify his Project=>properties=>Web =>Use local IIS Web Server Step 5: Edit bindings for new site to point to the folder of…
-
How to – transmit data between Windows Forms
You can download the project from here Also you can look to the video : Very Short: Make a constructor on the form that has a parameter of the type you want to send. Do not forget the call to this( in order to execute InitializeComponent). Always verify on Load event that the…