Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有用于在文本中放置项目符号的 ASCII 代码,可用于使用该CHR$(XXX)命令对 QB64 进行编程?
CHR$(XXX)
我已经尝试过CHR$(ALT + 0149),但ALT并没有从CHR$(149).
CHR$(ALT + 0149)
ALT
CHR$(149)
在 qb64 中使用时,可以显示 0 - 31 之间的任何 ascii 字符:
REM display an ascii char _CONTROLCHR OFF ' turn off control code processing PRINT CHR$(7) ' treat control code as a character _CONTROLCHR ON