En este enlace del gambasdoc, podeis ver reglas para nombrar variables, algo muy interesante para facilitar compartir códigos:
Prefijos convenidos para tipos comunes de variables
Tipo de variable | Prefijo |
Integer | i |
Float | f |
Boolean | b |
Byte | bt |
Short | sh |
Long | l |
Single | sng |
Variant | v |
Pointer | ptr |
String | s |
Date | date |
Object | o |
Prefijos convenidos para matrices o colecciones
Tipo de variable | Prefijo |
Matriz estática | ar + prefijo de tipo |
Integer[] | ari |
Float[] | arf |
Boolean][] | arb |
Byte][] | arbt |
Short[] | arsh |
Long[] | arl |
Single[] | arsng |
Variant[] | arv |
String[] | ars |
Date[] | ardate |
Object[] | aro |
Collection | col |
Tipos especiales
Prefijos de ejemplo para algunos componentes
Tipo de variable | Prefijo |
Form | frm |
TextBox | txtb |
TextArea | txta |
ListBox | lstb |
ComboBox | cbo |
Timer | tmr |
Button | but |
ToggleButton | tglbut |
ToolButton | tbut |