Search found 43 matches: cusername

Return to advanced search

Re: New Fivewin with new PDF

... #DEFINE TRUE .T. #DEFINE FALSE .F. function Main() TestSend() return nil Function TestSend() Local cServer := "smtp.gmail.com" Local cUserName := "Shipping@mycompany.com" Local cPassWord := "mypassword" Local cFrom := "Shipping@mycompany.com" Local cSubject ...
by byron.hopp
Tue Apr 05, 2022 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Fivewin with new PDF
Replies: 12
Views: 938

Re: New FTDN April/Abril 2021 (FWH 21.04)

... el filtro, el puntero de registro se mueve al registro más cercano respetando el filtro. * Nueva función WNetAddConnection2W( cPath, cPassword, cUserName, cDrive ) Es la versión unicode de la función existente WNetAddConnection2. * FW_STRICMP() mejorado. Se puede utilizar para comparar cadenas, ...
by Antonio Linares
Fri Jun 04, 2021 2:15 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1960

New FTDN April/Abril 2021 (FWH 21.04)

... respect the filter, the record pointer is moved to the nearest record respecting the filter. * New function WNetAddConnection2W( cPath, cPassword, cUserName, cDrive ) is Unicode version of the existing function WNetAddConnection2. * FW_STRICMP() improved. Can be used to compare strings as well ...
by Antonio Linares
Mon May 31, 2021 3:53 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2021 (FWH 21.04)
Replies: 8
Views: 1960

Re: FWCONNECT NO FUNCIONA

... It's Work Mr.Rao !!! Lo probé donde ud. me indicó y funcionó. HB_SetCodePage("TRWIN") FWCONNECT oCn HOST cServername USER cUsername PASSWORD cPassword DB cDatabasename PORT 3306 CHARSET "latin5" if oCn == nil msginfo("Error de conexión") return nil else ...
by pedroluis
Tue Sep 22, 2020 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT NO FUNCIONA
Replies: 6
Views: 761

FWCONNECT NO FUNCIONA

... siguiente código, no sólo no me muestra nada, sinó que me saca de la pantalla sin mostrar absolutamente nada. FWCONNECT oCn HOST cServername USER cUsername PASSWORD cPassword DB cDatabasename if oCn == nil ? "Connect Fail" return nil else oRs := oCn:RowSet( "lecturas" ) // ...
by pedroluis
Tue Sep 22, 2020 2:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT NO FUNCIONA
Replies: 6
Views: 761

Re: FWCONNECT no conecta

cServerName := "mi-paginaweb.com.ar" cDatabaseName := "pedrolavallen" cUserName := "uv_pedrol" cPassword := "sanluis" Are these the real values? If so we can not connect with FiveDBU also, either with ADO or MySql library. The ...
by nageswaragunupudi
Sun Sep 20, 2020 9:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT no conecta
Replies: 2
Views: 424

FWCONNECT no conecta

... ningún error. * lo ejecuto y cuando quiero conectarme se sale del programa. * uso fwh 17.09 local oCn, oRs, cPassword, cServerName, cDatabaseName, cUserName cServerName := "mi-paginaweb.com.ar" cDatabaseName := "pedrolavallen" cUserName := "uv_pedrol" cPassword := ...
by pedroluis
Sat Sep 19, 2020 10:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT no conecta
Replies: 2
Views: 424

Re: Problem with LoadHRB

... 0060: hb_vfCopyFile( hb_GetEnv( "PRGPATH" ) + "/views/form.view", hb_GetEnv( "PRGPATH" ) + "/data/" + cUserName + "/views/form.view" ) 0061: 0062 => hb_vfCopyFile( hb_GetEnv( "PRGPATH" ) + "/views/designer.view", hb_GetEnv( ...
by Otto
Sat Jun 13, 2020 9:10 pm
 
Forum: mod_harbour
Topic: Problem with LoadHRB
Replies: 4
Views: 663

Re: IF

Try

if len(alltrim(cUserName )) > 0
by stefano
Thu Mar 12, 2020 11:03 pm
 
Forum: mod_harbour
Topic: IF
Replies: 4
Views: 1061

IF

I am running this simple code

cUserName := "Luis"

If cUserName <> ""
? "Not Empty"
Else
? "Empty"
EndIf

The response is "Empty".
I tried everything that I can think.
Driving me crazy...

Thanks
by luiscambuston
Thu Mar 12, 2020 7:22 pm
 
Forum: mod_harbour
Topic: IF
Replies: 4
Views: 1061

Re: Acceso en red mediante hosting

... los códigos en fwh y en php #include "FiveWin.ch" REQUEST DBFCDX function Main() local oCn, cPassword, cServerName, cDatabaseName, cUserName cServerName := "localhost" cDatabaseName := "lavpedro_jkoslay" cUserName := "lavpedro" cPassword := "PedroLav****" ...
by pedroluis
Tue Oct 23, 2018 10:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Acceso en red mediante hosting
Replies: 8
Views: 1648

Re: FTP with Harbour / MSVC / FWH issues

... PASCAL FROM "InternetCloseHandle" LIB hLib DLL32 FUNCTION INETCONNECT( hInternet AS LONG, cServerName AS LPSTR, nServerPort AS LONG, cUserName AS LPSTR, cPassword AS LPSTR, nService AS DWORD, nFlags AS DWORD, @nContext AS PTR ) AS LONG; PASCAL FROM "InternetConnectA" LIB ...
by ShumingWang
Wed Jun 27, 2018 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2232

Re: Nuevo ADORDD

Saludos

Cuando lo compilo con Harbour me da error en estas lineas en el ADORDD.prg


STATIC t_cDataSource
STATIC t_cEngine
STATIC t_cServer
STATIC t_cUserName
STATIC t_cPassword
STATIC t_cQuery
STATIC oConnection

Dice Error E0004 STATIC Declaration Follow Executable Statement
by ruben Dario
Sat Jun 13, 2015 1:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16562

Re: ADO RDD xHarbour

... := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 3, ";" ) LOCAL cServer := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 4, ";" ) LOCAL cUserName := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 5, ";" ) LOCAL cPassword := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 6, ";" ) I ...
by AHF
Mon May 11, 2015 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446415

Re: ADO RDD xHarbour

... := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 3, ";" ) LOCAL cServer := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 4, ";" ) LOCAL cUserName := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 5, ";" ) LOCAL cPassword := hb_tokenGet( aOpenInfo[ UR_OI_NAME ], 6, ";" ) I ...
by lucasdebeltran
Sun May 10, 2015 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446415
Next

Return to advanced search

cron