Search found 1033 matches

by Marcelo Via Giglio
Thu Jun 14, 2018 8:23 pm
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE CON TREE DE 2 TABLAS
Replies: 6
Views: 728

Re: XBROWSE CON TREE DE 2 TABLAS

Hola,

me imagino que puedes trabajar sobre un join de las dos tablas, asi tienes los productos y sus recetas

saludos

Marcelo
by Marcelo Via Giglio
Mon Jun 04, 2018 1:51 am
Forum: FiveWin para Harbour/xHarbour
Topic: Lector no lee codigo de barra SOLUCIONADO
Replies: 15
Views: 1738

Re: Lector no lee codigo de barra

Hola,

prueba

Code: Select all

.... cCode := "*SERV005*" ....
saludos

Marcelo
by Marcelo Via Giglio
Fri May 04, 2018 1:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: email with CDO and attachment
Replies: 12
Views: 1698

Re: email with CDO and attachment SOLVED

yes, this resolve the problem

thanks very much

Marcelo
by Marcelo Via Giglio
Fri May 04, 2018 12:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: email with CDO and attachment
Replies: 12
Views: 1698

email with CDO and attachment

Hello, I have problems when I try to add attachment to email, the follow sample work when I comment the attachment line #include "fivewin.ch" function main()    LOCAL oEmailMsg    LOCAL cSchema := "http://schemas.microsoft.com/cdo/configuration/"           oEmailMsg  := CREATEOBJ...
by Marcelo Via Giglio
Fri Apr 13, 2018 9:04 pm
Forum: FiveTouch
Topic: FiveTouch for iOS (iPhone/iPad) is ready!!!
Replies: 4
Views: 2620

Re: FiveTouch for iOS (iPhone/iPad) is ready!!!

Tim, when we are working with movil device, we need to forget the use of native drive to DB connection, we need to change the chip, and use Web Services, in this way the we have a independence data source, for ADS is possible to use oData protocol, but could be easy too implement a Web Service an op...
by Marcelo Via Giglio
Thu Mar 22, 2018 12:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to edit a EMF file
Replies: 13
Views: 1102

Re: How to edit a EMF file

Hello, many years ago, I made changes to the report class, one of them was the page total number Function NumeraPag(oPrn,nRowStep,nColStep) Local x Local nPaginas := Len( oPrn:aMeta ) Local aFicheros := oPrn:aMeta Local nCol := 70*nColStep      //colocalo donde prefieras Local nLin := 64*nRowStep   ...
by Marcelo Via Giglio
Thu Mar 15, 2018 11:54 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin a C++ framework
Replies: 13
Views: 2052

Re: Fivewin a C++ framework

Dear Antonio I think [x]Harbour (clipper) has a very interesting architecture, and with FW you extended all that architecture, taking advantage of the great design, I have always thought that you could use one more layer of abstraction with QT to have a single code and multiple platforms, in its tim...
by Marcelo Via Giglio
Tue Nov 21, 2017 4:31 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Columna con EDIT_GET y botón para editar
Replies: 1
Views: 334

Re: Columna con EDIT_GET y botón para editar

Hola

prueba con

Code: Select all

oBrw:aCols[<nCol>]:edit()
saludos

Marcelo
by Marcelo Via Giglio
Thu Nov 16, 2017 12:04 am
Forum: FiveWin para Harbour/xHarbour
Topic: Mysql y Dbf
Replies: 12
Views: 1239

Re: Mysql y Dbf

Hola, es tan sencillo como : CREATE TEMPORARY TABLE IF NOT EXISTS table2 AS (SELECT * FROM table1)   esa sentencia te crea una tabla temporal table2 con la estructura de la tabla table1, y con la información de la misma. También puedes utilizar el clasico formato con nombre de columna y tipo La tabl...
by Marcelo Via Giglio
Thu Oct 26, 2017 8:36 pm
Forum: FiveWin para Harbour/xHarbour
Topic: TLISTGET, con Recursos(WS)?
Replies: 4
Views: 807

Re: TLISTGET, con Recursos(WS)?

Hola, la verdad la clase no está terminada, espero algún rato terminarla #Include "FiveWin.Ch" #include "xbrowse.ch" REQUEST DBFCDX FUNCTION main()    desdecodigo()    desderecurso() RETURN NIL                     Function desdecodigo()    Local oDlg    Local oGet, oGet1, oGet2  ...
by Marcelo Via Giglio
Wed Oct 25, 2017 9:35 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse as record adding tool for data tables
Replies: 16
Views: 2388

Re: xBrowse as record adding tool for data tables

Rick,

if we want to confirm the data for a single record, the sample code can be a possible solution, but if Reinaldo needs to confirm many record at the same time, it is other thing

saludos

Marcelo
by Marcelo Via Giglio
Wed Oct 25, 2017 6:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse as record adding tool for data tables
Replies: 16
Views: 2388

Re: xBrowse as record adding tool for data tables

Hola Reinaldo, I think we can't mix data source in xBrowse, maybe with ADS you can use transaction to rollback a not confirm insertion. Other idea (fast implementation sample) can be #include "FiveWin.ch" function Main()    local oBrw, oDlg, aData := {{1,2,3},{4,5,6},{7,8,9},{1,1,1}}      ...
by Marcelo Via Giglio
Fri Oct 13, 2017 1:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Column Function in XBROWSE
Replies: 10
Views: 1222

Re: Column Function in XBROWSE

Hola, try to use a codeblock oRs := FW_OpenRecordSet( oCn, tuple, 1 ) @ 40,10 XBROWSE oBrw SIZE -10,-50 PIXEL ; RECORDSET oRs ;       COLUMNS "ONE", "TWO", "A", "B",  {|| MYFUNCTION(fieldC)} ;       OF oDlg2   .... FUNCTION MYFUNCTION(fieldC) local x = 0 x = f...
by Marcelo Via Giglio
Mon Sep 18, 2017 2:59 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Dibujar una firma en un dialogo
Replies: 3
Views: 626

Re: Dibujar una firma en un dialogo

Hola,

seguro que el ejemplo "signatur.prg" del folder samples de FW te sirve

Saludos

Marcelo
by Marcelo Via Giglio
Sat Sep 09, 2017 3:15 am
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse with ADT Free Table
Replies: 8
Views: 1590

Re: XBrowse with ADT Free Table

Dear Teddy,

I'm using dlls and libraries from ADS v 10, try to use them

best regards

Marcelo