Search found 304 matches: sales

Return to advanced search

Re: Switching my setup program to webview2

... the top are: "General", "Invoice", "Invoice 2", "Text", "Versions", "Statement", "Sales", "PlanSetup", "Master Data", "Printer", "File", "Marketing". The window is opened on the ...
by Otto
Sat Feb 10, 2024 6:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 411

Re: XBRCHART FROM Cristobal

... Yes... I was looking into some sample code for generating nice graphics for presenting data for invoices, sales, ... typical business. They look very good but no prg into the samples. Seems a project of yours. Maybe the code for 1 sample )))) Please send ...
by cnavarro
Fri Oct 13, 2023 3:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBRCHART FROM Cristobal
Replies: 11
Views: 1289

Re: XBRCHART FROM Cristobal

... Yes... I was looking into some sample code for generating nice graphics for presenting data for invoices, sales, ... typical business. They look very good but no prg into the samples. Seems a project of yours. Maybe the code for 1 sample ))))
by Marc Venken
Fri Oct 13, 2023 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBRCHART FROM Cristobal
Replies: 11
Views: 1289

Gráficos de Google desde una aplicación FWH

... google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Year', 'Sales', 'Expenses'], ['2004', 1000, 400], ['2005', 1170, 460], ['2006', 660, 1120], ['2007', 1030, 540] ]); var options = { title: 'Company Performance', ...
by TOTOVIOTTI
Mon Jun 26, 2023 12:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Gráficos de Google desde una aplicación FWH
Replies: 7
Views: 578

Re: Fivewin and ADO

... => VIEWER( 2565 ) --- i found c:\fwh\samples\xbrxls.prg but it crash ... Error description: Error BASE/1004 Message not found: TXBROWSE:SALES Stack Calls =========== Called from: .\source\function\HARBOUR.PRG => _CLSSETERROR( 247 ) Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:SALES( ...
by Jimmy
Thu Jun 08, 2023 4:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3803

Re: ampersand

example:
select products
goto top
do while .NOT. eof()
cnaam=TRIM(products->naam) to transform in his real fieldname

select sales
append blank
replace sales->fieldname with ....

select products
skip 1

enddo
by jds
Mon Mar 27, 2023 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ampersand
Replies: 13
Views: 1148

Re: Graphics, icons, bmp's for program layout

... set of Google icons included for free. Using the generator you can size and color them. I purchased about 4 of their libraries. They always have sales on them, but the 4 cover all I want. I selected the latest set of Vector icons. You can start by building icons from the free set. Change the ...
by richard-service
Fri Dec 09, 2022 7:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Graphics, icons, bmp's for program layout
Replies: 12
Views: 1075

Re: Graphics, icons, bmp's for program layout

... set of Google icons included for free. Using the generator you can size and color them. I purchased about 4 of their libraries. They always have sales on them, but the 4 cover all I want. I selected the latest set of Vector icons. You can start by building icons from the free set. Change the ...
by TimStone
Fri Dec 09, 2022 12:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Graphics, icons, bmp's for program layout
Replies: 12
Views: 1075

Re: Concatenar 2 string en MSVC

... 14 bytes (13 más el byte para el cero) y obviamente eso no cabe en los 9 bytes de "destino", lo cual va a provocar un GPF porque te sales de lo que mide esa memoria. Como se resuelve esto ? 1. Tienes que darle espacio suficiente a la primera cadena para que acepte una concatenación ...
by Antonio Linares
Fri Jul 08, 2022 10:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Concatenar 2 string en MSVC
Replies: 3
Views: 342

Programming with the M1 Mac

It would appear that ARM architecture is certainly going to dominate a lot of hardware sales in the future. As Windows developers, we write code designed for the Intel x86/64 operating systems. However, now even Microsoft is embracing this new chip technology that ...
by TimStone
Thu Jul 07, 2022 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Programming with the M1 Mac
Replies: 2
Views: 336

Re: FW Preview user style

... Another issue with your delete code: Presumably you would need to delete all other data related to that customer, so you would also need to delete sales orders, invoices, past due notices, etc. When using objects this would all happen with the same one line of code. Deleting the customer and their ...
by James Bott
Sun May 15, 2022 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW Preview user style
Replies: 24
Views: 1701

Re: Advantage Database Server

... "discontinued" product out in the public domain and eliminate the licensse cost. Sadly, some just won't do that hoping for the rare sales which allow them to make money off of legacy code that comes with no support or fixes. As I've said before, Remote Desktop is not an option, nor ...
by TimStone
Thu Jan 13, 2022 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database Server
Replies: 32
Views: 3689

ot:agradecimiento a Don Antonio de Linares

... a ninguno - Creaste Fwppc y con eso hasta logre graduarme en una maestría haciendo un tesis con una pocket PC con windows CE - Ahora nos sales con Mod_Harbour un mod para apache gracias a el creo que voy a continuar ofreciendo soluciones a mis clientes ya en WEB para muestra mira esta ...
by wilsongamboa
Sat May 01, 2021 4:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ot:agradecimiento a Don Antonio de Linares
Replies: 8
Views: 1852

Re: MARIADB CANTIDAD DE TABLAS ABIERTAS SIMULTANEAMENTE

... tables, like Mr. Armando advised. Eg oRsCust := oCn:RowSet( "select * from customers" ) oRsSale := oCn:RowSet( "select * from sales" ) You need not switch the rowsets with SELE 1, SELE 2, etc. You can at the same time use any rowset by its name. Eg: ? oRsCust:name ? oRsSale:Amount
by nageswaragunupudi
Sat Jan 30, 2021 11:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MARIADB CANTIDAD DE TABLAS ABIERTAS SIMULTANEAMENTE
Replies: 2
Views: 496

Re: Program techniques : change indexorder or use aliases

... line of code to open a new copy of a database--and no save and restore needed. Actually, it could be more than one database, for instance with a sales order object. You have a customer, invoice header and invoice line items databases, and two of them are related. Still one line of code to open ...
by James Bott
Mon Nov 02, 2020 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Program techniques : change indexorder or use aliases
Replies: 4
Views: 679
Next

Return to advanced search