Search found 94 matches: myapp

Return to advanced search

Re: link between PRG and RC

... the easier it will be to mantain it. This can be easily achieved using child folders from a parent folder. This is a good structure to use: Folder MyApp + Folder source + Folder include + Folder lib (if you are using third party libs) + Folder obj (to place the resulting C and OBJs) + Folder resources ...
by Antonio Linares
Mon Jan 29, 2024 9:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: link between PRG and RC
Replies: 20
Views: 1639

Include exe file as a resource (solved)

Good afternoon, I have created a small program in fwh64, for example, "myapp.exe." The program "myapp.exe" calls a utility, "pdftopng.exe," which is open-source and occupies 1MB, in the background. I would like to distribute my program ...
by alvaro533
Thu Oct 19, 2023 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Include exe file as a resource (solved)
Replies: 3
Views: 261

Incluir un ejecutable dentro de otro (resuelto)

Buenas tardes, He hecho un pequeño programa en fwh64, por ejemplo "myapp.exe". El programa "myapp.exe" llama en segundo plano a una utilidad, "pdftopng.exe" que es de código abierto y ocupa 1mb. Me gustaría poder distrubuir mi programa ...
by alvaro533
Thu Oct 19, 2023 1:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluir un ejecutable dentro de otro (resuelto)
Replies: 3
Views: 186

Re: A big hit: Neither Apache and mod_harbour are needed

... There ( /opt ) i clone harbour and many other software, and there i put for example my software app so under /opt there is /opt/harbour and /opt/myapp and for example /opt/netio server i change the ownership of this directories to myself with chown and chgrp to modify source and to run executables ...
by nikko1960
Wed May 25, 2022 4:37 pm
 
Forum: mod_harbour
Topic: A big hit: Neither Apache and mod_harbour are needed
Replies: 61
Views: 15347

Re: dbfntx very slow with 2+ users

I am also experiencing the same issue. There are 2 PC's ie PC1 and PC2 . The application and data reside on PC1. For eg on D Drive ie D:\MyApp The operating system used on both the PC's are Windows 10 The problem occurs ONLY when the second user uses the Application irrespective of whether ...
by anserkk
Wed Mar 30, 2022 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfntx very slow with 2+ users
Replies: 41
Views: 6795

Re: New FTDN November/Noviembre (FWH 21.11)

... Para usar otro icono, el número de índice (comienza con 0) se puede especificar entre paréntesis de la siguiente manera: Ejemplo: "c:\mypath\myapp.exe(2)". En este caso, el tercer icono es mostrado. 3. [cInfoTip]: Opcional. Se muestra al pasar el puntero del ratón por encima. * TMSGBAR ...
by Antonio Linares
Tue Nov 30, 2021 10:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 996

New FTDN November/Noviembre (FWH 21.11)

... in the exe,dll,icl is used. To use other icon, zero based index number of the icon can be specified in parenthesis like this: Eg:"c:\mypath\myapp.exe(2)". In this case, 3rd icon is displayed/ 3. [cInfoTip]; Optional. Displayed on mouse hover * TMSGBAR - New DATA nTimer: configure timer ...
by Antonio Linares
Tue Nov 30, 2021 7:19 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre (FWH 21.11)
Replies: 2
Views: 996

Re: Poor-man Electron

Cristobal,

great! :-)

This one maximizes it:

myapp.bat
Code: Select all  Expand view
start chrome --kiosk -app=https://harbour.fourtech.es/modharbour_samples/genesis/index.prg
by Antonio Linares
Sun Jul 21, 2019 5:58 pm
 
Forum: Utilities / Utilidades
Topic: Poor-man Electron
Replies: 6
Views: 1278

Re: Poor-man Electron

This seems to be a good one but SendKeys is not working yet: myapp.vbs set ws = CreateObject( "WScript.Shell" )ws.Run( "microsoft-edge:https://harbour.fourtech.es/modharbour_samples/genesis/index.prg" )ws.AppActivate( ...
by Antonio Linares
Sun Jul 21, 2019 5:25 pm
 
Forum: Utilities / Utilidades
Topic: Poor-man Electron
Replies: 6
Views: 1278

Poor-man Electron

... our remote web apps developed with mod_harbour: Once Edge shows press F11 to hide the navigation bar (any idea to do this programmatically?) myapp.vbs Set objIE = CreateObject( "Shell.Application" )objIE.Open( "microsoft-edge:https://harbour.fourtech.es/modharbour_samples/genesis/index.prg" ...
by Antonio Linares
Sun Jul 21, 2019 3:14 pm
 
Forum: Utilities / Utilidades
Topic: Poor-man Electron
Replies: 6
Views: 1278

Re: Multiple languages

Should have mentioned, the -po=lang is in a .hbm file.

So I guess I need to know the proper formatting to put this in the .hbm file.

If I do this using: harbour -j myapp.prg (from the command line) it seems to work but I need to figure out how to do it from the .hmb file.
by Jeff Barnes
Fri Jul 05, 2019 5:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple languages
Replies: 5
Views: 816

Re: Ejemplo Buildh.bat compilar varios prgs.

Hola Karina si cierto s eme paso perdon go.bat set path=C:\bcc7\binif not exist obj md objmake -fmyapp.mak myapp.mak #Borland make sample, (c) FiveTech Software 2005-2009HBDIR=c:\harbourBCDIR=c:\bcc7FWDIR=c:\fwh#change these paths as needed.path.OBJ = .\obj.path.PRG ...
by Marcelo Roggeri
Wed Jun 05, 2019 5:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 2984

Re: Ejemplo Buildh.bat compilar varios prgs.

Javier, Te falta una F make - f myapp.mak MAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc. -ffilename Uses filename as the MAKEFILE make -help Muchisimas gracias Antonio, ahora si. pero cambiando esto. myapp.res ...
by jvtecheto
Sat May 11, 2019 12:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 2984

Re: Ejemplo Buildh.bat compilar varios prgs.

Javier,

Te falta una F

make -fmyapp.mak

MAKE Version 5.41 Copyright (c) 1987, 2014 Embarcadero Technologies, Inc.

-ffilename Uses filename as the MAKEFILE

make -help
by Antonio Linares
Sat May 11, 2019 9:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 2984

Re: Ejemplo Buildh.bat compilar varios prgs.

Hola Antonio:

Mismo error y creo que en la llamada a make

make -myapp.mak

lo correcto es
make myapp.mak

y devuelve el error que dice Leandro.

Unable to open Makefile.

Todo correctamente configurado.
by jvtecheto
Sat May 11, 2019 9:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ejemplo Buildh.bat compilar varios prgs.
Replies: 30
Views: 2984
Next

Return to advanced search