Search found 49 matches: ourl

Return to advanced search

Re: xBrowse with UrlLink

... decir tener un objeto con la clase Turllink en lugar de "www". ..." ,solo así podríamos tener el efecto de color over con el mouse oURL:= New( nTop, nLeft, oWnd, lPixel, lDesign, oFont, cMsg, cURL, cToolTip, nClrInit, nClrOver, nClrVisit, lTransp )
by Silvio.Falconi
Wed Feb 28, 2024 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse with UrlLink
Replies: 3
Views: 194

Re: xHarbour.org updated!

... Regards, saludos. Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL ...
by wartiaga
Thu Sep 21, 2023 12:14 am
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... Regards, saludos. Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL ...
by karinha
Wed Sep 20, 2023 7:53 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... Regards, saludos. Very strange, please tell me what message is returned in this code: #include "Fivewin.ch" FUNCTION MAIN() LOCAL oUrl, oCli oUrl = TUrl():New( "https://apis.averbeporto.com.br/php/conn.php" ) oCli = TIPClientHttp():New( oUrl ) ? oCli:Open() RETURN NIL
by wartiaga
Wed Sep 20, 2023 7:32 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... "&Cancel" SIZE 30, 12 OF oDlg ACTION oDlg:End() CANCEL ACTIVATE DIALOG oDlg CENTERED Return 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') ...
by wartiaga
Tue Sep 19, 2023 7:57 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... "&Cancel" SIZE 30, 12 OF oDlg ACTION oDlg:End() CANCEL ACTIVATE DIALOG oDlg CENTERED Return 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') ...
by wartiaga
Tue Sep 19, 2023 12:16 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... normally but the IF oCli:Open() line is returning false, is there 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 ...
by wartiaga
Tue Sep 19, 2023 2:25 am
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

Re: xHarbour.org updated!

... DIALOG oDlg CENTERED Return nil FUNCTION WebPageSource(cUrl) local oIE,cTXT,cHTML,cMemo:="" local cString LOCAL cString1,cString2 LOCAL oUrl, oCli,lOk DEFAULT cUrl := "https://www.bcv.org.ve" BEGIN SEQUENCE oUrl = TUrl():New( cUrl ) IF EMPTY( oUrl ) BREAK ENDIF oCli = TIPClientHttp():New( ...
by wartiaga
Mon Sep 18, 2023 7:22 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 156
Views: 37552

hbcurl xharbour

Hi, Does anyone know 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( ...
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 ) ...
by wartiaga
Thu Jul 13, 2023 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TLS 1.2 doubt
Replies: 7
Views: 364

Re: FTP: Request to share samples

... top of the SSH (Secure Shell) protocol edited: I just tested Harbour hbtip connecting to a FTPS server and these lines worked as expected: local oUrl := TUrl():New( "ftps://username:password@domainname.com" ) ? oUrl:cProto Thank you. Would you like to share with other users how are ...
by nageswaragunupudi
Wed Apr 28, 2021 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP: Request to share samples
Replies: 22
Views: 2747

Re: FTP: Request to share samples

... top of the SSH (Secure Shell) protocol edited: I just tested Harbour hbtip connecting to a FTPS server and these lines worked as expected: local oUrl := TUrl():New( "ftps://username:password@domainname.com" ) ? oUrl:cProto
by hmpaquito
Wed Apr 28, 2021 5:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP: Request to share samples
Replies: 22
Views: 2747

Re: FTP: Request to share samples

... top of the SSH (Secure Shell) protocol edited: I just tested Harbour hbtip connecting to a FTPS server and these lines worked as expected: local oUrl := TUrl():New( "ftps://username:password@domainname.com" ) ? oUrl:cProto
by Antonio Linares
Wed Apr 28, 2021 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP: Request to share samples
Replies: 22
Views: 2747

Lettura mails

... oCli = TIPClientPOP():New( "pop://" + cUser + ":" + cPassword + "@" + cServer ) IF EMPTY( oCli ); BREAK; ENDIF oCli:oUrl:cUserid = Strtran( cUser, "&at;", "@" ) IF !oCli:Open(); BREAK; ENDIF aMail = oCli:RetrieveAll() FOR i = 1 TO LEN( aMail ...
by Romeo
Fri Jan 25, 2019 5:52 pm
 
Forum: All products support
Topic: Lettura mails
Replies: 12
Views: 2620

Re: testpop3

... "@" + cServer )         msginfo("STE1")         IF EMPTY( oCli ); BREAK; ENDIF         msginfo("STEP2")         oCli:oUrl:cUserid = STRTRAN( cUser, "@", "&at;" )         IF !oCli:Open(); BREAK; ENDIF                 msginfo("STEP3") ...
by damianodec
Fri Nov 10, 2017 1:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: testpop3
Replies: 20
Views: 4524
Next

Return to advanced search