Search found 116 matches: pwd

Return to advanced search

Re: TWebView y Javascript

Estimados buenas tardes Estoy tratando de ejecutar la siguiente funcion javascript con TWebView pero no me funciona #include "FiveWin.ch" //----------------------------------------------------------------------------// function Main() local oWebView := TWebView():New() oWebView:Center() oW...
by EASYSOFT
Sun Jul 16, 2023 8:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWebView y Javascript
Replies: 6
Views: 433

Usando webservice de un tercero

... el comando que me enviaron, supuestamente los datos vienen en fichas xml https://tecnixxx.cl/?a=get-fichas&desde=1205569&user=uuuuuuuu&pwd=pppppppppp&xml=1 "https://tecnixxx.cl/?a=get-fichas&desde=1205569&user=uuuuuuuu&pwd=pppppppppp&xml=1 " Antes me he ...
by Adolfo
Tue Jun 06, 2023 10:33 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Usando webservice de un tercero
Replies: 4
Views: 411

Re: Funcion de MySQL nativa en codigo

You can test on our cloud server version 8.0.29
"209.250.245.152",
database: "fwh",
user: "fwhuser",
pwd : "FiveTech@2022"
by nageswaragunupudi
Mon Oct 03, 2022 5:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Funcion de MySQL nativa en codigo
Replies: 14
Views: 1047

Re: Secure an AJAX request

... the name. But then how can I delete the entries. I think it works better with MWRITE and MREAD. The implementation is quite easy: MWrite( "pwd", "my password" ) // memory write ? MRead( "pwd" ) // memory read from other browser tab or another user: ? MRead( "pwd" ...
by Otto
Thu Nov 12, 2020 6:58 pm
 
Forum: mod_harbour
Topic: Secure an AJAX request
Replies: 2
Views: 434

Secure an AJAX request

... On program start we write a UUID key into the memory of the server. function Main () cUUID: = GenerateUUID () hb_setenv ("pwd", cUUID) // memory write --------------------------------------------------------------------------------------------------- On AJAX request ...
by Otto
Thu Nov 12, 2020 6:00 pm
 
Forum: mod_harbour
Topic: Secure an AJAX request
Replies: 2
Views: 434

Re: Create or open a shared memory block

... https://github.com/FiveTechSoft/mod_harbour/blob/master/windows/win64/mod_harbour.so The implementation is quite easy: MWrite( "pwd", "my password" ) // memory write ? MRead( "pwd" ) // memory read from other browser tab or another user: ? MRead( "pwd" ...
by Antonio Linares
Mon May 25, 2020 8:57 am
 
Forum: mod_harbour
Topic: Create or open a shared memory block
Replies: 8
Views: 1098

TrustedNew-SelfSignedCertificate

... Point the thumbprint of the certificate (in this case 1C5DED4F0340FB7872A2EB9F36B8D3588F22F602) 2. Export private key and certificate $ pwd = ConvertTo-SecureString -String "1234" -Force -AsPlainText Export-PfxCertificate -cert Cert: \ LocalMachine \ My \ 1C5DED4F0340FB7872A2EB9F36B8D3588F22F602 ...
by Otto
Sun Oct 13, 2019 8:42 am
 
Forum: mod_harbour
Topic: TrustedNew-SelfSignedCertificate
Replies: 3
Views: 684

Re: Busqueda SQL

... + ; "server=" + cServer + ; ";database=" + cDatabase + ; ";uid=" + cUser + ; ";port=" + cPort + ; ";pwd=" + cPass ) xRfc:="XAXX010101XXX" If Empty(oCone) MsgAlert(" No se pudo establecer la conexion con la Base de Datos..","Atencion") ...
by servicomver
Fri Jul 13, 2018 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda SQL
Replies: 15
Views: 3079

Re: Install data files from apk

In QT Creator project file: COMMON_DATA.path = /assets COMMON_DATA.files = $$PWD/FiveTouch.ch COMMON_DATA.files += c:/harbour/include/hbclass.ch COMMON_DATA.depends = FORCE INSTALLS += COMMON_DATA From our source: QFile( "assets:/FiveTouch.ch" ):copy( ...
by Antonio Linares
Mon Apr 02, 2018 1:36 am
 
Forum: FiveTouch
Topic: Install data files from apk
Replies: 6
Views: 2348

Re: Backup y Restore con MySqlDump

... := oApp:cDir_001+"mysqldump --host="+oApp:IpSQL+" --port="+oApp:SQLPort+" -u "+oApp:UID+" -p"+oApp:PWD+" --all-databases > "+oApp:BackupPath+"\backupD"+strtran(dtos(Date()), "/","")+"T"+Strtran(time(), ...
by Sistem
Tue Mar 27, 2018 7:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Backup y Restore con MySqlDump
Replies: 36
Views: 6092

Error en SQL

... ODBC 3.51 Driver};" + ; "server=" + cServer + ; ";database=" + cDatabase + ; ";uid=" + cUser + ; ";pwd=" + cPass ) If Empty(oCone) MsgAlert(" No se Pudo Establecer la Conexion Con La Base De Datos..","Atencion") Return(Nil) ...
by servicomver
Thu Jan 25, 2018 9:12 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en SQL
Replies: 3
Views: 1063

Re: string connection MS Access

Dear All, I am unable to get connection using oCn := FW_OpenAdoConnection( cmdb + "," + pwd ) when file extension of Access file is changed from .mdb to .bds I need help how to connect   oCn   := FW_OpenAdoConnection( { "MSACCESS", ...
by nageswaragunupudi
Mon Oct 02, 2017 8:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: string connection MS Access
Replies: 19
Views: 3679

Re: string connection MS Access

Dear All, I am unable to get connection using oCn := FW_OpenAdoConnection( cmdb + "," + pwd ) when file extension of Access file is changed from .mdb to .bds I need help how to connect You can try to modify the function FW_AdoConnectionString as well function ...
by cnavarro
Wed Aug 23, 2017 1:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: string connection MS Access
Replies: 19
Views: 3679

Re: string connection MS Access

Dear All,
I am unable to get connection using
oCn := FW_OpenAdoConnection( cmdb + "," + pwd )
when file extension of Access file is changed from .mdb to .bds
I need help how to connect
by bpd2000
Wed Aug 23, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: string connection MS Access
Replies: 19
Views: 3679

Re: Oracle con ADO

... there is an "Oracle in InstantClient_12_2" and Voila ! cCon:="Driver=Oracle in Instantclient_12_2;dbq=localhost:1521/XE; Uid=hr;Pwd=hr" // Adodb using ODBC HB_SETCODEPAGE("ESMWIN") to void Ñs and specail char issues. Thank You again and regards
by FGamboa
Sat May 20, 2017 4:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Oracle con ADO
Replies: 21
Views: 6954
Next

Return to advanced search