Code: Select all
Updating Registry entries...
ERROR: Access is denied.
ERROR: Access is denied.
ERROR: Access is denied.
ERROR: Access is denied.
Error installing WinHlp32
Code: Select all
Updating Registry entries...
ERROR: Access is denied.
ERROR: Access is denied.
ERROR: Access is denied.
ERROR: Access is denied.
Error installing WinHlp32
Code: Select all
reg add "HKLM\SOFTWARE\Microsoft\WinHelp" /v "AllowProgrammaticMacros" /t REG_DWORD /d "0x00000001" /f
reg add "HKLM\SOFTWARE\Microsoft\WinHelp" /v "AllowIntranetAccess" /t REG_DWORD /d "0x00000001" /f
reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\WinHelp" /v "AllowProgrammaticMacros" /t REG_DWORD /d "0x00000001" /f
reg add "HKLM\SOFTWARE\Wow6432Node\Microsoft\WinHelp" /v "AllowIntranetAccess" /t REG_DWORD /d "0x00000001" /f
Code: Select all
reg add /?
Code: Select all
reg add HKLM\SOFTWARE\Microsoft\WinHelp
AZJIO -- You are so right, so to help clean it up a bit I went back to my OP, edited the subject line to show solved and added a comment at the bottom of that OP to explain the final resolution. I hope that will help.AZJIO wrote: Tue Jul 23, 2024 7:06 pm Randy Walker
Try [IDE Tool] Help
It seems to me that you are solving two completely different issues in one topic, this will turn into trash
Good clue!! I stupidly tried to convert the reg commands form the original bat file into a .reg file and that of course did not work. So following your lead I reverted my .reg file back into a bat file and added your suggested line to the top as follows:Axolotl wrote: Tue Jul 23, 2024 1:25 pm I was looking what the command in the bat file do by typing this in a console:Code: Select all
reg add /?
Code: Select all
HKLM\SOFTWARE\Wow6432Node\Microsoft\WinHelp /f
jacdelad wrote: Sun Jul 21, 2024 10:36 pmRandy Walker wrote: Sun Jul 21, 2024 8:25 pmIt's not a matter of the OS (Operating System) Its a matter of the SO (Stupid Operator). I also fly with no antivirus Since forever and never any issue. Any SO will have issues even with the latest fully updated OS.jacdelad wrote: Sun Jul 21, 2024 11:02 am Windows 7 doesn't get updates for ages now. Good luck securing it...
Security experts irritate the hell out of me with their ignorant comments about things they really don't understand.
I do use double firewall plus VPN to help insure true security.
Like a true dummy I tried a blind search and replace, changing all .l with .i and ended up corrupting critical log files when I ran my code. (".LOG" <> ".iOG") Duh!!
To avoid the need for administrator rights, You could use HKEY_CURRENT_USER instead of HKEY_LOCAL_MACHINERandy Walker wrote: Tue Jul 23, 2024 5:47 am My reg file:Code: Select all
reg add "HKLM\SOFTWARE\Microsoft\WinHelp" /v "AllowProgrammaticMacros" /t REG_DWORD /d "0x00000001" /f .....
Code: Select all
reg add "HKCU\SOFTWARE\Microsoft\WinHelp" /v "AllowProgrammaticMacros" /t REG_DWORD /d "0x00000001" /f
Code: Select all
RunProgram(GetEnvironmentVariable("comspec"), "/k reg add HKCU\SOFTWARE\Microsoft\WinHelp /v AllowProgrammaticMacros /t REG_DWORD /d 0x00000001 /f", "", #PB_Program_Wait)
Thanks for reviewing my problem and for the suggestions Marc56us. Sample code from help worked fine -- my first step in troubleshooting. Debug has been no help so far so my next idea is to try to export data from the list box to a file.Marc56us wrote: Sat Mar 15, 2025 10:27 am Hi,
I haven't read the 3-page topic in detail, but here's what I see here
We don't see header text in your Listicongadget ? DPI error ?
Some tests:
- Try the first sample of Listicongadget in help: if this is work, there is someting in your code.
- Use debug tools to see if your gadget if filled with data when run