Total Commander Forum Index Total Commander
Форум поддержки пользователей Total Commander
Сайты: Все о Total Commander | Totalcmd.net | Ghisler.com | RU.TCKB
 
 RulesRules   SearchSearch   FAQFAQ   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Single Post  Topic: Autorun 
Author Message
yozhik



PostPosted: Thu Aug 10, 2023 20:07    Post subject: Reply with quote

Loopback
Возвращаясь к нулевым вызовам. Сегодня смог сосредоточиться и сгенерил краткий код для воспроизведения. Окружение: Win 10 x64, TC 11.00 32/64. Подопытные: два диалога cm_PackFiles и cm_SetAttrib. Запускаем 32-битный TC.
Вот так ни у одной кнопки в диалогах не будет текста "B1":
Code:
# Диалог упаковки cm_PackFiles Alt+F5
AddDialog  "TDLGZIP"
AddControl "TButton" 1 "B1"

# Диалог атрибутов cm_SetAttrib
AddDialog "TATTRIBDLG"
AddControl "TButton" 1 "B1"

А вот так будет:
Code:
# Диалог упаковки cm_PackFiles Alt+F5
AddDialog  "TDLGZIP"
AddControl "TButton" 0 "B0"
AddControl "TButton" 1 "B1"

# Диалог атрибутов cm_SetAttrib
AddDialog "TATTRIBDLG"
AddControl "TButton" 0 "B0"
AddControl "TButton" 1 "B1"
View user's profile Send private message


Powered by phpBB © 2001, 2005 phpBB Group