Download Pelles C here: http://www.smorgasbordet.com/pellesc/
include ReadRegistryString.inc
.data
subkey db 'SOFTWARE\Microsoft\Windows NT\CurrentVersion',0
ValName db 'ProductName',0
.data?
buffer db 128 dup(?)
.code
ReadRegString PROC hKey:DWORD,pSubkey:DWORD,val:DWORD,buff:DWORD
LOCAL Handle:DWORD
LOCAL buffSize:DWORD
mov buffSize,128
invoke RegOpenKeyEx,hKey,pSubkey,0,\
KEY_QUERY_VALUE,ADDR Handle
test eax,eax
jnz _exit
xor ecx,ecx
invoke RegQueryValueEx,Handle,val,ecx,\
ecx,buff,ADDR buffSize
invoke RegCloseKey,Handle
test eax,eax
setz al
_exit:
ret
ReadRegString ENDP
start:
invoke ReadRegString,HKEY_LOCAL_MACHINE,\
ADDR subkey,ADDR ValName,ADDR buffer
invoke StdOut,ADDR buffer
invoke ExitProcess,0
END start
<thead> ... </thead>
demarcation tags enclosing the headers and the<tbody> ... </tbody>
demarcation tags on the rest of the table.Quote from: John Z on May 09, 2025, 11:33:03 AMHi Quin,Hi,
Yes Pelle already uses CSS for his help file. I did not include it when creating the test file for the headers.
John Z
Quote from: John Z on May 08, 2025, 05:28:22 PMOh it definitely is, and that is certainly much appreciated.Quote from: Pelle on May 08, 2025, 02:15:09 PMExcept for any typos, I'm very much done with this topic for now...
Understood -
Well that is my fault. I was just testing how to make the change not thinking about a final look.
I'm sure your help file is still more usable for the screen reader now than before.
John Z
Page created in 3.382 seconds with 15 queries.