Search found 22 matches: cget1

Return to advanced search

Error sintaxis EVAL

Hola a todos El siguiente código funciona en FW16 @15,80 GET oget0 VAR cget0 OF odlgeu RIGHT SIZE 50,9 PIXEL UPDATE; VALID ; Eval ( { || IF (CGET1 = 0 , (CGET2:=CGET2), .F. ),; (CGET2,( CGET2:=CGET1*CGET0), oGET2:Refresh(),; (CGET4,( CGET4:=CGET3*CGET0), oGET4:Refresh(),; .T. )) } ) Al pasarlo ...
by Ramón J.
Wed Jan 15, 2020 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error sintaxis EVAL
Replies: 3
Views: 694

Re: FiveWeb question

... the testget.prg and testsay.prg Reference from otto.prg. // testget.prg #include "FiveWeb.ch" function Main() LOCAL oDlg, oGET1 local cGet1:=SPACE(20) local aParams /* if pcount() > 0 aParams := hb_aTokens( cParams, ":" ) MSGINFO(aParams[2]) Go(aParams) return nil endif ...
by kokookao2007
Wed Feb 26, 2014 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb question
Replies: 15
Views: 3999

Salir de DLG con gets, con ESC

... DIALOG oDLG(1) FROM nTop,nIzq-3 TO nBot+40,nDer STYLE nOR( DS_MODALFRAME, WS_POPUP ) PIXEL; COLOR aCOLOR(19),aCOLOR(18) @ 1, 1 get oGet1 var cGet1 picture '@!' @ 1,10 get oGet2 var cGet2 picture '@R' @ 1,40 get oGet3 var cGet3 picture '@S20' etc... @ (nBot-nTop)-2,(nDer-nIzq)/2-71 SBUTTON ...
by noe aburto
Thu Dec 05, 2013 5:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Salir de DLG con gets, con ESC
Replies: 8
Views: 1763

Re: Return-value with Keyboard-Col-change in xBrowse

... ; SEL_ASC(nRPos,nCPos, oGet1, oAsc) ) } Incremental seek in xBrowse from GET. oGet1:bChange = { |n,f,oGet| cKey1 := SHOW_ASC( cGet1 ), ; oBrw1:nRowSel := (1)->(ORDKEYNO()), ; oBrw1:nColSel := nCPos, ; oBrw1:Refresh(), oAsc:Refresh() } Best regards Uwe :?:
by ukoenig
Tue Jul 09, 2013 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Return-value with Keyboard-Col-change in xBrowse
Replies: 6
Views: 2418

Re: Unknown informations in log-file ( missing error-line ) ?

... by myself. I will create a little testfile with these special errors. The same mystery happend with this error : LOCAL oWnd1, oSay[4], oGet1, ,cGet1 := "?" I added these errors to \samples\testfile.prg #include "FiveWin.ch" function Main() local oText := TTxtFile():New( ...
by ukoenig
Wed Jun 19, 2013 6:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Unknown informations in log-file ( missing error-line ) ?
Replies: 6
Views: 2292

Re: Incremental xBrowse-ARRAY-search from GET ?

... http://www.pflegeplus.com/pictures/incre2.jpg http://www.pflegeplus.com/pictures/incre3.jpg @ 4, 185 GET oGet1 VAR cGet1 PICTURE "@" ; SIZE 20, 20 OF oFld:aDialogs[ 1 ] PIXEL FONT oFont3 UPDATE // ; oGet1:bChange := {|| cKey1 := ASC(cGet1), oSay[6]:Refresh(), ...
by ukoenig
Sun Jun 16, 2013 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental xBrowse-ARRAY-search from GET ?
Replies: 3
Views: 1498

Incremental xBrowse-ARRAY-search from GET ?

... from buttonaction is OK Both are using the same function !!! http://www.pflegeplus.com/pictures/ascan1.jpg @ 4, 175 GET oGet1 VAR cGet1 PICTURE "!!!!!!!!!!" ; SIZE 105, 20 OF oFld:aDialogs[ 2 ] PIXEL FONT oFont3 UPDATE oGet1:bKeyDown := { | nKey, nFlags | ; IIF( nKey ...
by ukoenig
Fri Jun 14, 2013 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental xBrowse-ARRAY-search from GET ?
Replies: 3
Views: 1498

non-standard behavior

Hi, If I run this little program .... #include "fivewin.ch" #define crlf CHR(13)+CHR(10) FUNCTION main() LOCAL oDlg LOCAL oGet1 , cGet1 := "Aaaaa " + crlf + "Bbbbbbb " LOCAL oGet2 , cGet2 := "Cccccc Dddd Eeeeee " DEFINE DIALOG oDlg @ 1 , 1 GET oGet1 VAR ...
by MarcoBoschi
Thu Dec 15, 2011 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: non-standard behavior
Replies: 15
Views: 2671

Re: GET COPY/PASTE and crlf

... many *little* problems are solved. Thank you #include "fivewin.ch" #define crlf CHR(13)+CHR(10) FUNCTION main() local oDlg local oGet1 , cGet1 := "Marco Boschi " local oGet2 , cGet2 := "Enrico Maria Giordano " define dialog oDlg @ 1,1 get oGet1 var cGet1 of oDlg @ ...
by MarcoBoschi
Thu Nov 03, 2011 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET COPY/PASTE and crlf
Replies: 18
Views: 2289

Re: GET COPY/PASTE and crlf

... is to use in these gets "multiline" property how have I to define them? Many thanks marco FUNCTION main() local oDlg local oGet1 , cGet1 := "Marco " local oGet2 , cGet2 := "Enrico Maria Giordano " define dialog oDlg @ 1,1 get oGet1 var cGet1 of oDlg @ 2,1 get ...
by MarcoBoschi
Wed Nov 02, 2011 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GET COPY/PASTE and crlf
Replies: 18
Views: 2289

Re: Cursor

Enrico, I'm sorry. The original code of my sample is #include "fivewin.ch" FUNCTION MAIN() LOCAL oDlg LOCAL oGet1 , cGet1 := SPACE(100) LOCAL oGet2 , cGet2 := SPACE(100) SET( _SET_INSERT , .T. ) DEFINE DIALOG oDlg FROM 10 , 10 TO 400 , 700 PIXEL @ 10 , 1 GET oGet1 VAR cGet1 ...
by MarcoBoschi
Sat Jul 23, 2011 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Cursor
Replies: 18
Views: 2784

Re: ExplorerBar and Get

Patrizio, @ 40, 30 GET oGet1 VAR cget1 OF oTitle1 SIZE 100, 25 PIXEL FONT oSysFont UPDATE // Get the needed Hight for the Get from Fontsize // @ 40, 30 GET oGet1 VAR cget1 OF oTitle1 SIZE 100, oSysFont:nInpHeight + 5 PIXEL FONT oSysFont UPDATE ...
by ukoenig
Thu Jul 21, 2011 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ExplorerBar and Get
Replies: 12
Views: 4990

Double Enter pressed

... in a valid function. Like a double click of the mouse in a get field. #include "fivewin.ch" FUNCTION MAIN() LOCAL oDlg LOCAL oGet1 , cGet1 := SPACE(10) LOCAL oGet2 , cGet2 := SPACE(10) DEFINE DIALOG oDlg @ 1 , 1 GET oGet1 VAR cGet1 VALID myfunction() @ 2 , 1 GET oGet2 VAR cGet2 ACTIVATE ...
by MarcoBoschi
Mon May 02, 2011 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Double Enter pressed
Replies: 2
Views: 657

difference between xp and seven

... #include "fivewin.ch" FUNCTION MAIN() LOCAL oDlg LOCAL oFld LOCAL aFld := { } LOCAL oSay1 , cSay1 := "First" LOCAL oGet1 , cGet1 := SPACE( 10 ) LOCAL oSay2 , cSay2 := "Second" LOCAL oGet2 , cGet2 := SPACE( 10 ) DEFINE DIALOG oDlg RESOURCE "DIALOG_1" REDEFINE ...
by MarcoBoschi
Mon Mar 21, 2011 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: difference between xp and seven
Replies: 14
Views: 5238

Re: Border around GET

Maybe ( with any Color and Pen-Size ) ??? http://www.service-fivewin.de/pictures/getbox.jpg REDEFINE GET oGET1 VAR cGET1 ID 250 OF oDlg UPDATE // TOP, LEFT, hDC, WIDTH, HEIGHT, PEN, COLOR oGet1:bPainted := { |hDC| DRAWBOX ( 0, 0, hDC, oGet1:nWidth-5, oGet1:nHeight-5, 3, ...
by ukoenig
Wed May 19, 2010 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Border around GET
Replies: 46
Views: 13692
Next

Return to advanced search