Some statusbar problems in the IDE

Working on new editor enhancements?
AND51
Addict
Addict
Posts: 1040
Joined: Sun Oct 15, 2006 8:56 pm
Location: Germany
Contact:

Some statusbar problems in the IDE

Post by AND51 »

Hello!

Image

1) As you can see, the german special characters (Umlaute) are not displayed correctly. There is a conflict between UTF-8 and ISO-8859-1 (knwon as ASCII).

2) Furthemore, the parameters are not parsed correctly, please don't use just StringField+Comma!
PB 4.30

Code: Select all

onErrorGoto(?Fred)
User avatar
Rook Zimbabwe
Addict
Addict
Posts: 4322
Joined: Tue Jan 02, 2007 8:16 pm
Location: Cypress TX
Contact:

Post by Rook Zimbabwe »

Perhaps:

Code: Select all

Macro standardError(Title$,Text$, FLAGS)
   MessageRequeter(Title$,Text$,FLAGS)
EndMacro
called by:

standardError("oops!", "Der Aktuelle...", 0)

I am not at a My workstation at home so I cannot test... :D
Binarily speaking... it takes 10 to Tango!!!

Image
http://www.bluemesapc.com/
AND51
Addict
Addict
Posts: 1040
Joined: Sun Oct 15, 2006 8:56 pm
Location: Germany
Contact:

Post by AND51 »

The purpose of the macro 'standardError()' is to give the user a quick information, that the current task cannot be continued (e. g. file not found, memory allocation problem, etc.).

BTW, the underlined words are the english translation of the german sentence "Der aktuelle Vorgang...".

I just put this macro everywhere, so that an error will be displayed, but I don't need to givew a detailed description, moreover, the description contains the line number. In order to quickly call this macro, I use the default parameters.
PB 4.30

Code: Select all

onErrorGoto(?Fred)
Post Reply