TypeOf... - Versión para impresión +- Comunidad Gambas-es (https://gambas-es.org) +-- Foro: Gambas (https://gambas-es.org/forum-3.html) +--- Foro: Aplicaciones/Fragmentos de Código (https://gambas-es.org/forum-8.html) +--- Tema: TypeOf... (/thread-1339.html) |
TypeOf... - tincho - 25-04-2023 Hola amigos. Si en gambas ponemos: Código: Print TypeOf("untextocualquiera") Muy bien. Ahora, sabiendo el 9 ¿Como puedo "imprimir" gb.String? RE: TypeOf... - Shordi - 25-04-2023 Encontrarás esto en el EditList: Código: Public Sub Button1_Click() RE: TypeOf... - tincho - 25-04-2023 (25-04-2023, 13:07)Shordi escribió: Encontrarás esto en el EditList: Jeje, workaround !! pero... ¿Hay algo mas al estilo siguiente? Código: Print gb.Constanst[9] Código: '' Function that returns the type of variable as a word. As input parameter requires an integer number. |