Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
List of all QB64pe error messages
#6
Of course you could do this:

Code: (Select All)
For x% = 1 To 1024
  e$ = _ErrorMessage$(x%)
  e$ = RTrim$(e$)
  If LCase$(e$) = "unprintable error" Then
      ' nul
  Else
      Print x%; e$
  End If
Next
End
Reply


Messages In This Thread
List of all QB64pe error messages - by TDarcos - 03-25-2024, 06:49 PM
RE: List of all QB64pe error messages - by a740g - 03-25-2024, 06:53 PM
RE: List of all QB64pe error messages - by Pete - 03-26-2024, 01:50 AM
RE: List of all QB64pe error messages - by eoredson - 03-28-2024, 05:10 AM



Users browsing this thread: 1 Guest(s)