Search found 20 matches: cservername

Return to advanced search

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") ...
by pedroluis
Tue Sep 22, 2020 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT NO FUNCIONA
Replies: 6
Views: 744

FWCONNECT NO FUNCIONA

... al ejecutar el 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: 744

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 ...
by nageswaragunupudi
Sun Sep 20, 2020 9:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT no conecta
Replies: 2
Views: 419

FWCONNECT no conecta

... * compilo el programa sin 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" ...
by pedroluis
Sat Sep 19, 2020 10:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWCONNECT no conecta
Replies: 2
Views: 419

Re: Acceso en red mediante hosting

Estimado: Cambia cServerName := "localhost" por la IP de tu servicio de hosting. Ej: cServerName := "190.223.152.36". Si la base de datos esta en tu dominio www, puedes reemplazar la IP con tu dominio cServerName ...
by cmsoft
Wed Oct 24, 2018 1:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Acceso en red mediante hosting
Replies: 8
Views: 1628

Re: Acceso en red mediante hosting

... on 'localhost' (10061) Adjunto 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" ...
by pedroluis
Tue Oct 23, 2018 10:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Acceso en red mediante hosting
Replies: 8
Views: 1628

Re: FTP with Harbour / MSVC / FWH issues

... INETCLOSEHANDLE( hInternet AS LONG ) AS BOOL; 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 ...
by ShumingWang
Wed Jun 27, 2018 8:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP with Harbour / MSVC / FWH issues
Replies: 8
Views: 2224

Re: Crystal report with Mysql

Dear Maurizio, Thank you for your kind help. I didn't get error now. I'm putting wrong cServerName, it should be "Data Source Name" in ODBC. Now I can run the CRViewer in localhost. But I cannot change the database location, it is still reading from localhost, ...
by dutch
Tue May 09, 2017 7:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Crystal report with Mysql
Replies: 13
Views: 3233

Re: Detectar parametros de red (IP, GateWay, Mascara de red...)

... GetHostByName(GetHostName()) te trae la IP del equipo. GetHostByAddress(Ip) obtiene el nombre del equipo que tiene una IP GetServByName( <cServerName> ) –> nPort Tienes todas las funciones en winsock.c en FWH\SOURCE\WINAPI Espero te sirva
by cmsoft
Tue Sep 01, 2015 12:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar parametros de red (IP, GateWay, Mascara de red...)
Replies: 6
Views: 1397

Re: Ayuda Por Favor

... ); } HB_FUNC( INTERNETCLOSEHANDLE ) { hb_retl( InternetCloseHandle( ( HINTERNET ) hb_parnl( 1 ) ) ); } HB_FUNC( INTERNETCONNECT ) { LPWSTR cServerName = AnsiToWide( hb_parc( 2 ) ); LPWSTR cUserName = AnsiToWide( hb_parc( 4 ) ); LPWSTR cPassword = AnsiToWide( hb_parc( 5 ) ); HINTERNET hInternet ...
by Julio Perez
Thu Jan 28, 2010 3:33 pm
 
Forum: FiveWin para Pocket PC
Topic: Ayuda Por Favor
Replies: 6
Views: 1615

Re: wifi

... ); } HB_FUNC( INTERNETCLOSEHANDLE ) { hb_retl( InternetCloseHandle( ( HINTERNET ) hb_parnl( 1 ) ) ); } HB_FUNC( INTERNETCONNECT ) { LPWSTR cServerName = AnsiToWide( hb_parc( 2 ) ); LPWSTR cUserName = AnsiToWide( hb_parc( 4 ) ); LPWSTR cPassword = AnsiToWide( hb_parc( 5 ) ); HINTERNET hInternet ...
by Otto
Tue May 19, 2009 11:59 am
 
Forum: FiveWin for Pocket PC
Topic: wifi
Replies: 9
Views: 3213

Re: New FTDN April/Abril 2009 (9.04)

... * Nuevo: Soporte para los RibbonBar de CodeJock! Por favor, revisa el ejemplo samples\RibonBar.prg. * Nuevo: Nuevas funciones RegisterServer( cServerName ) --> nResult y UnregisterServer( cServerName ) --> nResult, estas te permiten registrar y desregistrar ActiveXs y OCX servers. Por ...
by Antonio Linares
Fri Apr 10, 2009 6:12 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3632

New FTDN April/Abril 2009 (9.04)

... with new Harbour build only. Now it is ok. * New: CodeJock's RibbonBar support! Please review samples\RibonBar.prg * New: function RegisterServer( cServerName ) --> nResult and UnregisterServer( cServerName ) --> nResult let you register and unregister ActiveXs and OCX servers. In example: ...
by Antonio Linares
Fri Apr 10, 2009 1:20 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2009 (9.04)
Replies: 6
Views: 3632

error al compilar winsock de smtp luis

... } //----------------------------------------------------------------------------// #ifdef __HARBOUR__ HARBOUR HB_FUN_GETSERVBYNAME( PARAMS ) // ( cServerName ) --> nPort #else CLIPPER GETSERVBYN( PARAMS ) // AME( cServerName ) --> nPort #endif { struct servent * pServer; pServer = getservbyname( ...
by MANOLO
Thu Feb 19, 2009 7:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al compilar winsock de smtp luis
Replies: 2
Views: 855

Problema con al descargar un fichero por ftp

... ); } HB_FUNC( INTERNETCLOSEHANDLE ) { hb_retl( InternetCloseHandle( ( HINTERNET ) hb_parnl( 1 ) ) ); } HB_FUNC( INTERNETCONNECT ) { LPWSTR cServerName = AnsiToWide( hb_parc( 2 ) ); LPWSTR cUserName = AnsiToWide( hb_parc( 4 ) ); LPWSTR cPassword = AnsiToWide( hb_parc( 5 ) ); HINTERNET hInternet ...
by Elias Torres
Thu Nov 20, 2008 11:18 am
 
Forum: FiveWin para Pocket PC
Topic: Problema con al descargar un fichero por ftp
Replies: 9
Views: 2748
Next

Return to advanced search