- Aug
- 2,059
- 83
Code:
ver
TCC 22.00.41 x64 Windows 7 [Version 6.1.7601]
According to the TASKDIALOG help;
I have tried the following;/L Convert the buttons defined by /B into command links. A command link is a bigger button that has an icon and optionally a second smaller line of text. (To display a second line, append a ^n to the /B argument, followed by the text for the second line.)
Code:
@setlocal
@echo off
set title="Display A Second Line"
set instruction="Example:"
set text=To display a second line, append a ^n to the /B argument, followed by the text for the second line.
set b1="Button 1 ^n Second Line"
set b2="Button 2"
set b3="Button 3"
taskdialog /B"Button 1 ^n Second Line" /B"Button 2" /B"Button 3" /I /L /X %title %instruction %text
endlocal
which produces;
This is not producing command link buttons, which are bigger buttons that have an icon and optionally a second smaller line of text.
How do I produce command link buttons, which are bigger buttons that have an icon and optionally a second smaller line of text?
Joe