Search found 30 matches: cvar2

Return to advanced search

Re: FW_SetUnicode( .T. ) 2-Byte characters

... working perfectly with German lang when FW_SetUnicode() is .T. ? TEdit() does not work correctly yet. Something happens with <cVar1> and <cVar2>: FUNCTION Main()   LOCAL oDlg   LOCAL oEdit   LOCAL cU82Lower   LOCAL cU82Upper   LOCAL cVar1   LOCAL cVar2   REQUEST HB_CODEPAGE_UTF8  ...
by frose
Mon Jun 26, 2023 9:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SetUnicode( .T. ) 2-Byte characters
Replies: 25
Views: 2193

Re: FW_SetUnicode( .T. ) 2-Byte characters

cVar2 using EDIT control is correct but cVar1 using GET control is not correct? Yes! Did some more tests with ü - 0xC3BC and some other 2-byte characters: - The first 2-byte char is ok - all the following are not ok - Pasting ...
by frose
Wed Jun 21, 2023 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SetUnicode( .T. ) 2-Byte characters
Replies: 25
Views: 2193

Re: FW_SetUnicode( .T. ) 2-Byte characters

cVar2 using EDIT control is correct but cVar1 using GET control is not correct?

I need to do more tests at my end.

Did you try keeping FW_SetUnicode( .f. ) // default
and try setting
Code: Select all  Expand view
  HB_LangSelect("DE")
   HB_SetCodePage("DEWIN")
by nageswaragunupudi
Wed Jun 21, 2023 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_SetUnicode( .T. ) 2-Byte characters
Replies: 25
Views: 2193

Cargar Arreglo desde Archivo .INI

... (creo yo) pero no he podido solucionar. Tengo un archivo .INI con las secciones y variable respectivas [Seccion 1] cVar1='Contenido de cVar1' cVar2='Contenido de cVar2' cVar3='Contenido de cVar3' cVar4='Contenido de cVar4' [Seccion 2] cVar1='Contenido de cVar1' cVar2='Contenido de cVar2' cVar3='Contenido ...
by JoseAlvarez
Thu Nov 05, 2020 11:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cargar Arreglo desde Archivo .INI
Replies: 6
Views: 837

Re: FWH 1808: Dialog as Mdichild

... activated as normal, when pressing <Tab>, the sequence of active controls is: 1. Checkbox Switch-1 2. Checkbox Switch-2 3. GET cVar1 4. GET cVar2 5. Button This is the normal operation. But if the dialog is activated as MDIChild, the sequence is reverse when pressing <Tab>: 1. GET ...
by Max HK
Sun Aug 09, 2020 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1808: Dialog as Mdichild
Replies: 14
Views: 4092

Re: Como Actilizar 2º Combobox ANIDADOS " URGENTE "

... aItems2 := {}STATIC oCombo1STATIC oCombo2FUNCTION Main()LOCAL aItemsCombo1:={}, aItemsCombo2:={}LOCAL cVar1, cVar2LOCAL oDlgLOCAL oGet, cText:=""// Obtenemos los datos de una BASE DE DATOS O LOS MONTAMOS (en este caso lo montamos)aItems1:={ {"EX","Examen ...
by remtec
Thu Apr 09, 2020 9:59 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Actilizar 2º Combobox ANIDADOS " URGENTE "
Replies: 24
Views: 2437

Re: Como Actilizar 2º Combobox " URGENTE "

Hola Jesus Si lo uso con las variables cVar1 y cVar2 en el Combobox, me da error. Al usar: Var cVar1 Items ArrTranspose(aItems1)[2] <== cVar1 contiene la posicion del elemento y ArrTranspose(aItems1)[2] muestra el segundo elemento en esta caso ...
by remtec
Wed Apr 08, 2020 4:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Actilizar 2º Combobox ANIDADOS " URGENTE "
Replies: 24
Views: 2437

Re: Problem with Get in RibbonBar

... problem of the 'cursor' and of the 'selection', but not the problem of the buffer. i have a button with a clause WHEN !Empty(cVar) .and. !Empty(cVar2) after entering data on the first GET this BUTTON activates itself only when the second GET (with datas) lost the focus and not when the second ...
by marzio
Mon May 07, 2018 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Get in RibbonBar
Replies: 13
Views: 2203

Internal and external IP - solved

... cVar2 := oHttp:ResponseText()cVar2 := StrExtract(cVar2,"Your IP Address: <strong class="+CHR(34)+"ipBlock"+CHR(34)+">","</strong>") ...
by driessen
Tue Apr 19, 2016 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Internal and external IP - solved
Replies: 11
Views: 2129

HB_DECRYPT, HB_READINI and GETPVPROFSTRING

... I read ini files using HB_READINI and than decrypt I obtain "charlybrown" If I use GETPVPROFSTRING not. The difference between cVar1 and cVar2 is the first character that compromoses the crypted string. Thanks in advance Marco #include "fivewin.ch"FUNCTION MAIN()LOCAL ...
by MarcoBoschi
Tue Oct 06, 2015 3:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HB_DECRYPT, HB_READINI and GETPVPROFSTRING
Replies: 8
Views: 1483

Re: Terminal Server redirected drives

Solved this way mnu1:={} for i:=65 to 90 cVar1:="Drive "+chr(i) cVar2:="Not available" if isdir("\\tsclient\"+chr(i)) cVar2:="Redirected drive" cVar3:="\\tsclient\"+chr(i) endif aadd(mnu1,{cVar1,cVar2}) next
by Marco Turco
Thu Feb 27, 2014 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Terminal Server redirected drives
Replies: 4
Views: 750

Re: line (row) spacing in say/get system using text coordinates

... "Row one" // @ 2,0 say "Row two" ... ... Local oSay1, oSay2 // Optional using Vars : Local cVar1 := "Row one" Local cVar2 := "Row two" @ 1,0 say oSay1 PROMPT "Row one" @ 2,0 say oSay2 PROMPT "Row two" or using Vars : @ 1,0 say oSay1 VAR ...
by ukoenig
Thu May 27, 2010 10:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: line (row) spacing in say/get system using text coordinates
Replies: 3
Views: 963

... no tiene sentido en el índice. Hay que hacerlo en la clave, al hacer el seek: Seek PADL( cVar1, LEN(alias->campo1))+PADL( cVar2, LEN(alias->campo2))+PADL( cVar3, LEN(alias->campo3)) Ahí si tiene sentido. SIEMPRE campo1 tiene una longitud Len(campo1), es una identidad, ...
by Armando Picon
Fri Nov 28, 2008 8:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas indice
Replies: 13
Views: 2550

... no tiene sentido en el índice. Hay que hacerlo en la clave, al hacer el seek: Seek PADL( cVar1, LEN(alias->campo1))+PADL( cVar2, LEN(alias->campo2))+PADL( cVar3, LEN(alias->campo3)) Ahí si tiene sentido. SIEMPRE campo1 tiene una longitud Len(campo1), es una identidad, ...
by Carlos Mora
Fri Nov 28, 2008 5:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas indice
Replies: 13
Views: 2550

... Function Client(oBtn, obtn1) // start client Local oDlg, oGet1, oGet2, cVar1, cVar2 Local lNoShow := .t. MemVar oApp, oChatserver, ochatclient cVar1:= space(15) // ip cVar2:=Space(12) // user name oBtn:Disable() // sorry for this, ...
by norberto
Wed Sep 24, 2008 7:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TCPIP Chat
Replies: 18
Views: 5368
Next

Return to advanced search