In working through debugging an oddity, I bumped into the #Pragma Warning and #Pragma Error features. Over 18 years of working with Xojo (and previous brand names), I’d never noticed this.
What a great way to identify things you’re questioning or unsure of for Debug and Analysis runs.
Interesting issue in a new project. Using this code
If DebugBuild Then
#Pragma Warning "## Finish Getting appended tape info or elevating the job."
Else
#Pragma Error "## Finish Getting appended tape info or elevating the job."
End If
is resulting in the Error flagging the IDE and the Error is being pushed instead of the Warning when debugging. A problem in 2022r2?