Bootstrapper Settings.ini DialogText Field

  • Thread starter Thread starter Bob Dukes
  • Start date Start date
B

Bob Dukes

The Bootstrapper settings.ini file has a field named
DialogText in the [Bootstrap] section to set up a custom
dialog that appears at the start of a .NET application
installation. How do you specify a carriage return/line
feed for the DialogText value in the settings.ini to get a
multi-line string to display in the custom dialog? Thanks
for your help - Bob
 
Hi,

The BootStrapper uses GetPrivateProfileString API. That API seems not able
to accept strings with carriage.

You may download the source file of the bootstrapper from

http://go.microsoft.com/fwlink/?linkid=6302

and then modify the code manually.


Best regards,
Bradley Jiang

This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
|Content-Class: urn:content-classes:message
|From: "Bob Dukes" <[email protected]>
|Sender: "Bob Dukes" <[email protected]>
|Subject: Bootstrapper Settings.ini DialogText Field
|Date: Sun, 28 Sep 2003 12:19:42 -0700
|Lines: 7
|Message-ID: <[email protected]>
|MIME-Version: 1.0
|Content-Type: text/plain;
| charset="iso-8859-1"
|Content-Transfer-Encoding: 7bit
|X-Newsreader: Microsoft CDO for Windows 2000
|Thread-Index: AcOF9XfeXNnzqBrrQomZKi4BciBRfA==
|X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
|Newsgroups: microsoft.public.dotnet.framework
|Path: cpmsftngxa06.phx.gbl
|Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework:54921
|NNTP-Posting-Host: TK2MSFTNGXA11 10.40.1.163
|X-Tomcat-NG: microsoft.public.dotnet.framework
|
|The Bootstrapper settings.ini file has a field named
|DialogText in the [Bootstrap] section to set up a custom
|dialog that appears at the start of a .NET application
|installation. How do you specify a carriage return/line
|feed for the DialogText value in the settings.ini to get a
|multi-line string to display in the custom dialog? Thanks
|for your help - Bob
|
 
Back
Top