Downloading Files on Demand
If you look at Figure 1-8, you will also notice that the Help.txt file always downloads when you deploy the application using ClickOnce. However, users won't use this file unless they click on the Display Help button. If you have a large-size help file, this adds to the download time for your users. And if you have multiple help files in your application, then the entire application will also take longer to install. A better approach is to selectively download the help files as and when you need them. For example, you can set the help file to download after the application installs, when a user clicks on the Display Help button.
To specify that the help file be loaded as and when needed, you need to perform the following steps:
Change the Publish Status of Help.txt to
Include.Click the drop-down menu in the Download Group and select (New).
Specify a name for the download group, such as "Help."
The Application Files window should now look like Figure 1-9.

Figure 1-9. Changing the default publish statuses of files
Setting the Publish Status of Help.txt to
Include means the file will not
download automatically to your user's computer, thus you make
installation time quicker for your user.
Modify the code-behind for the Display Help button as follows:
Private Sub btnDisplayHelp_Click( _ ByVal sender As System.Object, _ ByVal e As System.EventArgs) _ Handles btnDisplayHelp.Click ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access