Category: You tube
-
YouTube playlist exporter
The point here is about how simple is in our days to make a simple script as a programmer. I wanted to export my playlists ( 5 minutes .NET,Export Word Exce l PDF ,EF 6,Traceability ) videos into a simple HTML file that I could put into my website. I searched first on internet –…
-
Saving Setting for Windows Forms
Saving and retrieving application settings Every application that I have made needs at minimum two things,that we will put on the generic term “ settings “: 1. “remember” their state – information that are read at the beginning,write at the end of the program . We will name those “local settings” because there are different…
-
Save settings – with a class that reads from or saves to app.config or web.config
Step 1: Add reference to System.Configuration Step 2 :Derive your class from ConfigurationSection Step 3 : Put your values to be retrieved with ConfigurationProperty attribute Step 4: add a section to your config file and an entry Step 5 : read with ConfigurationManager.GetSection and convert to your class Download code See video
-
How To … Read database connection strings from app.config or web.config file
Step 1 : Add a app.config file Step 2: Add the connection string Step 3: Add reference to system.configuration Step 4: Use the connection from ConfigurationManager.ConnectionsStrings download visual studio solution
-
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…
-
Window Forms tutorials
You will find tutorials about loading a combo box from database,loading a treeview from database and how to transmit data between windows forms. How to : fast fill a combobox with data from database How to : fast fill a combobox with data from database with Linq How To : load combo items from…
-
How To … Test code from database with nunit
In this video we will test the Business Layer for a shortening application. The Data Access Layer is made with Entity Framework . You can download files from here
-
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…