Search found 296 matches

by nnicanor
Tue Nov 02, 2021 9:13 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Sistema multi empresa con mysql
Replies: 17
Views: 11356

Re: Sistema multi empresa con mysql

Por experiencia, crear un solo modelo de datos multiempresa es mucho mas eficiente, en SQL no importa el numero de registro, lo importante es lo optimizados que se creen los indices para manipular la informacion, en nuestra empresa hemos utilizado esquema multiempresa con millones de registros y nos...
by nnicanor
Thu Jan 02, 2020 10:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SCROLL INSIDE XBROWSE LINES WITH MEMO
Replies: 2
Views: 398

SCROLL INSIDE XBROWSE LINES WITH MEMO

I have an xbrowse with memos with different lines numbers, i need to adjust lines to size or scroll into xbrowse line if line numbers greater than 3 lines.

Regards,
by nnicanor
Thu Oct 24, 2019 4:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TARRAYDATA AND Eof()
Replies: 9
Views: 1058

Re: TARRAYDATA AND Eof()

Thanks but correct syntax is fromQuery() instead New()

oData:= TarrayData():fromQuery( oCn, "Select ....", aParams )

Regards
by nnicanor
Mon Oct 21, 2019 5:36 am
Forum: FiveWin for Harbour/xHarbour
Topic: TARRAYDATA AND Eof()
Replies: 9
Views: 1058

Re: TARRAYDATA AND Eof()

Hi, EOF() is not working     cSql :="Select id, tc, concep, valdeb, descue, valcre,detalle,vence from unicuota where tc='CM' and matric="+ClipValue2Sql( mmm:matric )    oRs := oCn:RowSet( cSql )    aData := oRs:GetRows()    oRs2:= TArrayData():New( AClone(aData) , oRs:aStructure )    oRs2:...
by nnicanor
Fri Sep 27, 2019 1:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Please make a visual update for errorsysw
Replies: 5
Views: 1216

Re: Please make a visual update for errorsysw

Some missing functions Compilando MySQL_utils.PRG... Enlazando WadmonSQL.exe... Error: Unresolved external '_HB_FUN_MSGWAIT1' referenced from H:\PROYECTOSFW\SQLWADMON\OBJ\MYSQL_UTILS.OBJ Error: Unresolved external '_HB_FUN_STRALFANUM' referenced from H:\PROYECTOSFW\SQLWADMON\OBJ\MYSQL_UTILS.OBJ Erro...
by nnicanor
Fri Sep 27, 2019 2:37 am
Forum: FiveWin for Harbour/xHarbour
Topic: BUG MARIADB SUPPORT FWH1906
Replies: 5
Views: 809

Re: BUG MARIADB SUPPORT FWH1906

Hi, after change on fields type now works fine. thanks. CREATE TABLE `usuarios` (     `USER` TINYBLOB NULL DEFAULT NULL,     `PASSWORD` VARBINARY(255) NULL DEFAULT NULL,     `level` VARBINARY(255) NULL DEFAULT NULL,     `NAME` VARCHAR(100) NULL DEFAULT NULL,     `email` VARCHAR(100) NULL DEFAULT NUL...
by nnicanor
Fri Sep 27, 2019 1:16 am
Forum: FiveWin for Harbour/xHarbour
Topic: BUG MARIADB SUPPORT FWH1906
Replies: 5
Views: 809

Re: BUG MARIADB SUPPORT FWH1906

Thanks your sample works fine, this is my table with fwh1802 works fine, i'm going to change data types and test, i'll inform about results CREATE TABLE `usuarios` (     `USER` CHAR(40) NULL DEFAULT NULL,     `PASSWORD` CHAR(40) NULL DEFAULT NULL,     `level` CHAR(40) NULL DEFAULT NULL,     `NAME` C...
by nnicanor
Fri Sep 27, 2019 1:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: Download Harbour 3.4 for BCC7.3
Replies: 1
Views: 512

Re: Download Harbour 3.4 for BCC7.3

You can download builds on http://whosaway.com

Regards
by nnicanor
Wed Sep 25, 2019 2:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: BUG MARIADB SUPPORT FWH1906
Replies: 5
Views: 809

BUG MARIADB SUPPORT FWH1906

Hi, We have this bug using mariaDB support on last FWH Build, i have user table with data encryption by MySql AES_ENCYPT() Function, on last version of FWH code retrieve data but gets all fields blank, i run query on Heidi or sqlyog or Tdolphin and works ok and get data on query. cSql:=" UPDATE...
by nnicanor
Thu Aug 22, 2019 9:17 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Factura Electrónica Colombia - Agradecimiento
Replies: 15
Views: 2374

Re: Factura Electrónica Colombia - Agradecimiento

Mauricio, por favpr compartir el codigo nnicanor arroba yahoo.com

Gracias
by nnicanor
Mon Mar 04, 2019 4:03 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Sistema de Gestión Documental
Replies: 7
Views: 1703

Re: Sistema de Gestión Documental

Hola Ramon,

Encontraste alguna solucion al tu requerimiento, hace tiempo yo desarrolle un proyecto para el almacenamiento y control de polizas de pronto la logica te pudiera servir.
by nnicanor
Tue Dec 04, 2018 3:54 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Favor Ayuda para Compilar con RC
Replies: 8
Views: 1148

Re: Favor Ayuda para Compilar con RC

Hola cambia la línea para que cada path de include esté separado te debe compilar sin problemas ya lo pude compilar pero me faltan los archivos de recursos c:\PellesC\bin\porc.exe -r -fo"c:\util\Boxpaci\Menucon.res" -ic:\PellesC\Include\Win -ic:\PellesC\Include -D__FLAT__ "c:\util\Box...
by nnicanor
Mon Nov 26, 2018 2:36 am
Forum: FiveWin para Harbour/xHarbour
Topic: Favor Ayuda para Compilar con RC
Replies: 8
Views: 1148

Re: Favor Ayuda para Compilar con RC

Hola,

Puede usar el mismo compilador de Recursos de Pelles C, cambia las rutas de acuerdo a tu configuración

Code: Select all


c:\PellesC64\bin\porc.exe -r -fo".\Path\of\YourResource.res" -ic:\PellesC64\Include\Win;c:\PellesC64\Include -D__FLAT__ ".\Path\Of\YourRC.rc"

 
Saludos