Search found 172 matches: original

Searched query: original

by Antonio Linares
Sat Jan 11, 2025 8:23 pm
Forum: Artificial Intelligence examples
Topic: CLASS Transformer
Replies: 2
Views: 44

Re: CLASS Transformer

... pRow = hb_arrayGetItemPtr( pMatrix, i + 1 );
for( j = 0; j < nCols; j++ )
{
double value = hb_arrayGetND( pRow, j + 1 ); // Obtener el valor original
PHB_ITEM pTransposedRow = hb_arrayGetItemPtr( pMatrixResult, j + 1 );
hb_arraySetND( pTransposedRow, i + 1, value ); // Asignar a la posición ...
by Antonio Linares
Sat Jan 11, 2025 8:06 pm
Forum: Artificial Intelligence examples
Topic: CLASS Transformer
Replies: 2
Views: 44

Re: CLASS Transformer

... pRow = hb_arrayGetItemPtr( pMatrix, i + 1 );
for( j = 0; j < nCols; j++ )
{
double value = hb_arrayGetND( pRow, j + 1 ); // Obtener el valor original
PHB_ITEM pTransposedRow = hb_arrayGetItemPtr( pMatrixResult, j + 1 );
hb_arraySetND( pTransposedRow, i + 1, value ); // Asignar a la posición ...
by Antonio Linares
Sat Jan 11, 2025 9:31 am
Forum: Artificial Intelligence examples
Topic: CLASS Transformer
Replies: 2
Views: 44

CLASS Transformer

... pRow = hb_arrayGetItemPtr( pMatrix, i + 1 );
for( j = 0; j < nCols; j++ )
{
double value = hb_arrayGetND( pRow, j + 1 ); // Obtener el valor original
PHB_ITEM pTransposedRow = hb_arrayGetItemPtr( pMatrixResult, j + 1 );
hb_arraySetND( pTransposedRow, i + 1, value ); // Asignar a la posición ...
by Otto
Tue Jan 07, 2025 11:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: AC4xBrowse
Replies: 13
Views: 884

Re: AC4xBrowse

... Reverse translation through Autocode:**

Autocode reads the generated source code from the PPO file.
It converts this source code back into the original directive (e.g., `@ <nRow>, <nCol> BUTTONBMP ...`), extracting the parameter and variable values.
For this, the mapping structure (`M->acd5 ...
by Silvio.Falconi
Fri Jan 03, 2025 2:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using Tget and Cuebanner
Replies: 24
Views: 822

Re: Using Tget and Cuebanner

Original

https://i.postimg.cc/8C01J3Ps/1.png

Made by me

https://i.postimg.cc/5t6JV3qJ/io.png

I'll Publish source code on afternoon

It 's a Resizable dialog As on original dialog of that italian Application


the source and pngs are on GitHub https://github.com/Falconisilvio/Customer ...
by nageswaragunupudi
Tue Dec 24, 2024 4:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: New: Read/Edit/Save XLSX files without Excel/ADO
Replies: 2
Views: 286

New: Read/Edit/Save XLSX files without Excel/ADO

... and other objects embedded in the sheet.
3. Saving will save only the current tab/sheet and does not save formatting information contained in the original xlsx file.
So, please never save by over-writing the original source file.

Size Limitations:
With 32-bit applications we may face limitations ...
by Otto
Thu Nov 28, 2024 9:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: AI in Software Development: What's Your Take?
Replies: 7
Views: 1245

Re: AI in Software Development: What's Your Take?

... will see.

But HARBOURINO removes, for example, all lines from the source code that start with |-.
That keeps everything secret!
Still, in the original source I work with, I have all the information at my fingertips.

But not only that, with HARBOURINO, I can cut the source code into pieces like ...
by nageswaragunupudi
Fri Nov 22, 2024 12:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Soporte a mariaConnect ?
Replies: 11
Views: 1809

Re: Soporte a mariaConnect ?

... the underlying table in the database.

Later when we want to save all the changes made
oRs:SaveBatch()
or to ignore all changes and restore the original table to the RowSet()
oRs:CancelBatch()

Batch mode continues till we reset.
oRs:SetBatchMode( .f. )

IMPORTANT CAUTION:
Even in lBatchMode ...
by leandro
Tue Nov 19, 2024 2:53 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Crear PDF desde EasyReport (SOLUCIONADO)
Replies: 13
Views: 1930

Re: Crear PDF desde EasyReport

Leandro:

Gusto en saludarte, llegas justo a tiempo

He revisado EasyReport original con el que yo trabajo pero no tiene el método FILE cNombrePDF
cuento con FWH 2307 pero nunca he usado EasyReport incluido en FW, será de
mucha ayuda si me orientas para utilizar el de FW, que libs, include, etc etc ...
by Armando
Tue Nov 19, 2024 2:17 am
Forum: FiveWin para Harbour/xHarbour
Topic: Crear PDF desde EasyReport (SOLUCIONADO)
Replies: 13
Views: 1930

Re: Crear PDF desde EasyReport

Leandro:

Gusto en saludarte, llegas justo a tiempo

He revisado EasyReport original con el que yo trabajo pero no tiene el método FILE cNombrePDF
cuento con FWH 2307 pero nunca he usado EasyReport incluido en FW, será de
mucha ayuda si me orientas para utilizar el de FW, que libs, include, etc etc ...
by FiveWiDi
Mon Nov 18, 2024 1:21 pm
Forum: FiveWin para Harbour/xHarbour
Topic: IsExeRunning() Dudas, cómo funciona?
Replies: 2
Views: 531

Re: IsExeRunning() Dudas, cómo funciona?

Estimado Carlos,

> Parece ser que sucede cuando lanzo la 'copia' mediante ShellExecute() desde la aplicación original.

Cuando utilizas ShellExecute() para lanzar una copia de tu aplicación, el proceso hijo hereda el espacio de nombres del mutex del proceso padre

Aclarado,

Menos mal, ya estaba yo ...
by Antonio Linares
Sun Nov 17, 2024 8:45 am
Forum: FiveWin para Harbour/xHarbour
Topic: IsExeRunning() Dudas, cómo funciona?
Replies: 2
Views: 531

Re: IsExeRunning() Dudas, cómo funciona?

Estimado Carlos,

> Parece ser que sucede cuando lanzo la 'copia' mediante ShellExecute() desde la aplicación original.

Cuando utilizas ShellExecute() para lanzar una copia de tu aplicación, el proceso hijo hereda el espacio de nombres del mutex del proceso padre
by Armando
Sun Nov 17, 2024 4:02 am
Forum: FiveWin para Harbour/xHarbour
Topic: Crear PDF desde EasyReport (SOLUCIONADO)
Replies: 13
Views: 1930

Crear PDF desde EasyReport (SOLUCIONADO)

Saludos al foro:

Tengo la impresión de las facturas utilizando un formato creado con EasyReport original
creado por Timm.

Así lo defino


EASYREPORT oVRD NAME (cFmto) PREVIEW oRsFdf:Fields("FOL_VIP"):Value OF oWnd;
MODAL TITLE "Factura: " + ALLTRIM(oRsHdr:Fields("HDR_TIP"):Value) +;
ALLTRIM ...
by FiveWiDi
Sat Nov 16, 2024 10:31 pm
Forum: FiveWin para Harbour/xHarbour
Topic: IsExeRunning() Dudas, cómo funciona?
Replies: 2
Views: 531

IsExeRunning() Dudas, cómo funciona?

... Que comprueba IsExeRunning()? El fichero '.exe' entiendo que no por que son diferentes.

A ver si alguien sabe algo al respecto.

EDITADO
*******
Parece ser que sucede cuando lanzo la 'copia' mediante ShellExecute() desde la aplicación original.
Mañana sigo investigando.

Muchas gracias,
by cmsoft
Fri Nov 15, 2024 2:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 1016

Re: xbrowse(autosort) + tdolphin - erro

... nf.filialfiscal!=0,nf.filialfiscal,nf.filial) = 1 AND nf.emissao BETWEEN '2024-11-01' AND '2024-11-30' AND COALESCE(nf.notaservico, 0 ) = 0 ORDER BY chave"

Esta es otra consulta totalmente diferente.
Cual es la consulta original que usas?
El ejemplo que yo te pase, te da errores en tu computadora?