Hi !
How to organize your code to support multilangage
At this time, i use global variables like this
Notify gMessage_206$
and at the start of the program a function to choose the langage
But have you a better idea ? (more easy to maintain
to evit to create the gMessage_206b$ if i've a new message
between 206 and 207 !!!)
Thanks for your help.
How to organize your code to support multilangage
At this time, i use global variables like this
Notify gMessage_206$
and at the start of the program a function to choose the langage
Global gMessage_206$, gMessage_207$ Function Choose_langage (Langage$) select Langage$ Case "Francais" gMEssage_206$ = "erreur" gMessage_207$ = "bonjour" Case "English" gMessage_206$ = "error" gMessage_207$ = "hello" end select End Function
But have you a better idea ? (more easy to maintain
to evit to create the gMessage_206b$ if i've a new message
between 206 and 207 !!!)
Thanks for your help.