Search found 9 matches: cvar3

Return to advanced search

Cargar Arreglo desde Archivo .INI

... 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 de cVar3' cVar4='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: Terminal Server redirected drives

... 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

... 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, no cambia nada. Un saludo, Carlos.
by Armando Picon
Fri Nov 28, 2008 8:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas indice
Replies: 13
Views: 2550

... 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, no cambia nada. Un saludo, Carlos.
by Carlos Mora
Fri Nov 28, 2008 5:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas indice
Replies: 13
Views: 2550

... ****************************************** Function GoogleSearch(cAlgo,cENDE,ocamnet) ****************************************** local hE, cVar1, cVar3,cLink cVar1 := "http://www.google.com/search?q=" cVar3 := "&ie=UTF-8&oe=UTF-8&hl=pt&btnG=B%C3%BAsqueda+en+Google&lr=" cLink ...
by MGA
Tue Nov 18, 2008 10:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Read HTML page
Replies: 12
Views: 2217

... FUNCTION TESTALT #include 'Fivewin.ch' LOCAL oDlg LOCAL oGet1, oGet2, oGet3, oBtn LOCAL cVar1 := 'ABCDEF ' LOCAL cVar2 := SPACE(8) LOCAL cVar3 := SPACE(8) DEFINE DIALOG oDlg FROM 0, 0 TO 10, 30 ; TITLE 'Test Alt / Button / GET_VALID' @ 1, 1 GET oGet1 VAR cVar1 SIZE 30,12 PIXEL ; Valid ...
by Colin Wisbey
Thu Aug 14, 2008 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: ALT accelerator with button - Urgent help needed
Replies: 12
Views: 3417

Antonio: ALT accelerator with button - Urgent help needed

... #include 'Fivewin.ch' LOCAL oDlg LOCAL oGet1, oGet2, oGet3, oBtn LOCAL cVar1 := 'ABCDEF ' LOCAL cVar2 := SPACE(8) LOCAL cVar3 := SPACE(8) DEFINE DIALOG oDlg FROM 0, 0 TO 10, 30 ; TITLE 'Test Alt / Button / GET_VALID' @ 1, 1 GET oGet1 VAR cVar1 SIZE 30,12 PIXEL ; Valid ...
by Colin Wisbey
Wed Aug 13, 2008 7:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: ALT accelerator with button - Urgent help needed
Replies: 12
Views: 3417

Randal,

Please declare cVar3:=Space( 6 ).

Your test works fine, once the third GET looses its focus. You may consider that the GET assigns its contents only when it looses it focus, so it you type in before, after the paste, then the contents are lost.
by Antonio Linares
Sat Aug 05, 2006 9:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get Cut/Paste problem
Replies: 19
Views: 6267

Get Cut/Paste problem

... If you then type something the pasted text is deleted. #include "fivewin.ch" function main() local oDlg, oGet2, cVar1:="AAAAAA", cVar2:="BBBBBB", cVar3:=" " define dialog oDlg title "Test Get" @ 1,1 get cVar1 of oDlg update @ 2,1 get oGet2 var cVar2 of oDlg update @ 3,1 get cVar3 of oDlg update ...
by Randal
Fri Aug 04, 2006 2:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get Cut/Paste problem
Replies: 19
Views: 6267

Return to advanced search