Search found 59 matches: cursorarrow

Return to advanced search

Re: xHarbour.org updated!

... nil Static Function Averba() LOCAL oUrl, oCli LOCAL hQUery := Hash() TRY oUrl = TUrl():New( 'https://apis.averbeporto.com.br/php/conn.php' ) CATCH CurSorArrow() MsgInfo('Conection Error','Erro') RETURN(.F.) END IF !EMPTY( oUrl ) oCli = TIPClientHttp():New( oUrl ) IF !EMPTY( oCli ) oCli:nConnTimeout ...
by wartiaga
Tue Sep 19, 2023 7:57 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37560

Re: xHarbour.org updated!

... nil Static Function Averba() LOCAL oUrl, oCli LOCAL hQUery := Hash() TRY oUrl = TUrl():New( 'https://apis.averbeporto.com.br/php/conn.php' ) CATCH CurSorArrow() MsgInfo('Conection Error','Erro') RETURN(.F.) END IF !EMPTY( oUrl ) oCli = TIPClientHttp():New( oUrl ) IF !EMPTY( oCli ) oCli:nConnTimeout ...
by wartiaga
Tue Sep 19, 2023 12:16 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37560

Re: xHarbour.org updated!

... a different new parameter to use https? Thank you again. Code below: TRY oUrl = TUrl():New( 'https://apis.averbeporto.com.br/php/conn.php' ) CATCH CurSorArrow() MsgInfo('Erro ao criar a conexão','Erro') RETURN(.F.) END IF !EMPTY( oUrl ) oCli = TIPClientHttp():New( oUrl ) IF !EMPTY( oCli ) oCli:nConnTimeout ...
by wartiaga
Tue Sep 19, 2023 2:25 am
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37560

hbcurl xharbour

... how to rewrite this routine using hbcurl? Thanks in advance. TRY oUrl = TUrl():New( 'https://www.averbeporto.com.br/websys/php/conn.php' ) CATCH CurSorArrow() MsgInfo('Erro ao criar a conexão','Erro') RETURN(.F.) END IF !EMPTY( oUrl ) oCli = TIPClientHttp():New( oUrl ) IF !EMPTY( oCli ) oCli:nConnTimeout ...
by wartiaga
Tue Jul 18, 2023 6:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hbcurl xharbour
Replies: 1
Views: 221

TLS 1.2 doubt

Hi, I have this code to conect: TRY oUrl = TUrl():New( 'http://www.averbeporto.com.br/websys/php/conn.php' ) CATCH CurSorArrow() MsgInfo('Erro ao criar a conexão','Erro') RETURN(.F.) END IF !EMPTY( oUrl ) oCli = TIPClientHttp():New( oUrl ) IF !EMPTY( oCli ) oCli:nConnTimeout = -1 ...
by wartiaga
Thu Jul 13, 2023 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TLS 1.2 doubt
Replies: 7
Views: 364

TIPOS DE CURSORES

Buenas
Alguien tiene una lista ( o puede completar esta), de los tipos de cursores ?

CursorWait()
CursorArrow()
CursorHand()

.....


Gracias
by JESUS MARIN
Tue Mar 28, 2023 8:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TIPOS DE CURSORES
Replies: 3
Views: 240

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6348

Re: FiveODBC Error Message

... session not successfully initialized, aborting...") oOdbc:End() return nil Endif CursorWait() aFiles := oOdbc:GetTables("*", .F. ) CursorArrow() if len(aFiles) == 0 MsgAlert("There are not tables on that database, aborting...",; "ODBC Table selection") oOdbc:End() ...
by Compuin
Mon Dec 26, 2016 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveODBC Error Message
Replies: 27
Views: 4208

Re: CURSOR question

James Bott wrote:2) Maybe try adding a sysrefresh() right after CursorWait()


James, if I'm not mistaken a sysrefresh() will cancel out CursorWait(). It would be like calling CursorArrow(). In fact any update to the screen will cancel out CursorWait()
by hua
Tue Aug 11, 2015 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CURSOR question
Replies: 4
Views: 916

Re: CURSOR question

Tim, 1) Step 3 is calling cursorArrow() somewhere, directly or indirectly. To confirm this try changing your cursorArrow() to cursorHand() and then see if it changes back to an arrow. If it does, then try searching your step 3 code, but ...
by James Bott
Sat Aug 08, 2015 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CURSOR question
Replies: 4
Views: 916

Re: CURSOR question

Tim: mi experiencia con cursorwait(), cursorarrow()... al utilizarlos como mencionas:    cursorwait()   oDbf  := oApp:oConnect:Query("SELECT LOTE,CSG,GPROD,ESPECIE,NOMESP,VARIEDAD,NOMVARI,SUM(BINS),SUM(TOTEMS),SUM(KNETOS) ...
by armando.lagunas
Sat Aug 08, 2015 1:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CURSOR question
Replies: 4
Views: 916

CURSOR question

... section in a separate function and use MessageWait( ) to show what is happening. I prefer not to do that if possible 2) Use CursorWait( ) and CursorArrow( ) in line to show that work is taking place. Unfortunately the CursorWait( ) function is not changing the cursor Here are the steps: 1) ...
by TimStone
Fri Aug 07, 2015 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: CURSOR question
Replies: 4
Views: 916

Re: no me funciona CDOSYS, gmail

... nEle ] )),; 'no será enviado, no existe'}) endif Next If ! Empty( cBCC ) :BCC := AllTrim( cBCC ) EndIf :Send() End With CATCH oError Eval(bMens) CursorArrow() MsgInfo ( "Error envio de EMail" + CRLF + ; "Remitente: " + AllTrim( cFrom ) + CRLF + ; "Destinatario: " ...
by noe aburto
Fri May 29, 2015 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: no me funciona CDOSYS, gmail
Replies: 5
Views: 681

usando CDOSYS marca error, mail

... 1 To Len( aAttach ) :AddAttachment := AllTrim( aAttach[ nEle ] ) Next If ! Empty( cBCC ) :BCC := Trim( cBCC ) EndIf :Send() End With Catch oError CursorArrow() Eval(bMens) MsgStop( "No se pudo enviar el e-mail") oCfg := Nil oMsg := Nil Return .t. End Try oCfg := Nil oMsg := Nil SndPlaySound( ...
by noe aburto
Tue May 12, 2015 2:15 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: usando CDOSYS marca error, mail
Replies: 4
Views: 1128

Color de Bit

... he modificado la clase TBITMAP para utilizarla como un botón sensible al ratón, es decir que cuando el cursor pasa por encima del control pasa de CursorArrow() a CursorHand() y cambio el bitmap, cuando dejo de estar sobre el control, el cursor vuelve a CursorArrow() y recupero el bitmap original. ...
by antolin
Mon Mar 30, 2015 8:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color de Bit
Replies: 6
Views: 1480
Next

Return to advanced search