0
我接下來的兩節當複選框被選中我想另外一個是赤
Section /o "Communications Toolbox"
;SectionIn RO
FileWrite $9 "product=Communications Toolbox$\r$\n"
AddSize 0
SectionEnd
Section /o "Control System Toolbox"
;SectionIn RO
FileWrite $9 "product=Control System Toolbox$\r$\n"
AddSize 0
SectionEnd
,並在安裝的過程中,當用戶選中第二個「控制系統工具箱」,自動第一個「通訊工具箱」我想檢查,並在那一刻顯示一條消息「要安裝控制系統工具箱,你還需要安裝」通訊工具箱「。 我該怎麼做這件事?
我試圖把一個文本框放在「控制系統工具箱」中:
Section /o "Control System Toolbox"
MessageBox MB_OK "Do you want to stay in the license page?" IDOK
Abort
FileWrite $9 "product=Control System Toolbox$\r$\n"
AddSize 0
SectionEnd
我不明白爲什麼我按下按鈕後OK,沒有翻到前一頁?
說說你返回到前一頁但在你的例子中沒有頁面代碼,我們應該怎麼知道你真的想要做什麼? – Anders