I want to create a multi form project and on each form I wish have different fonts.
Currently, it's not possible because Form Designer uses the same naming for constants :
Code: Select all
Enumeration #PB_Compiler_EnumerationValue
#Font_0
#Font_1
...
EndEnumeration
Why not the form name ?
Code: Select all
Enumeration #PB_Compiler_EnumerationValue
#Font_Window_Main_0
#Font_Window_Main_1
...
EndEnumeration