Search found 341 matches: exes

Return to advanced search

Re: Reducing the EXEs sizes

Great! Keep us updated! :-)

EMG
by Enrico Maria Giordano
Sun Mar 17, 2019 2:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Enrico,

We are working on this. Not finished yet :-)
by Antonio Linares
Sun Mar 17, 2019 12:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

In the end, how to reduce the EXEs sizes? :-)

EMG
by Enrico Maria Giordano
Sat Mar 16, 2019 10:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

DBFs for fivehgc.lib From Windows bash: nm fivehgc.lib > fivehgc.txt dbfs_c.prg #include "FiveWin.ch"extern DBFCDXfunction Main()   local aLines := HB_ATokens( MemoRead( "fivehgc.txt" ), Chr( 10 ) )   local cLine, n, cName, c...
by Antonio Linares
Tue Feb 26, 2019 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Getting closer... Warning: This example TAKES TIME to execute so be patient and wait for results related.prg #include "FiveWin.ch"extern dbfcdxfunction Main()   XBrowser( Related( "window.prg" ) )    return nil   function Related( cFileName )   loc...
by Antonio Linares
Mon Feb 25, 2019 8:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Rao has implemented this great viewer on these generated DBFs: viewer.prg #include "FiveWin.ch"extern dbfcdxfunction SymbolBrowse2()   FIELD NAME   USE SYMBOLS NEW SHARED VIA "DBFCDX"   SET ORDER TO TAG NAME   USE USED    NEW SHARED VIA "DBFCDX"   SET ORDER TO T...
by Antonio Linares
Fri Feb 22, 2019 9:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Now we create a child DBF that keeps where symbols are used from: used.dbf get populated with more than 12.300 records !!! dbfs.prg #include "FiveWin.ch"extern DBFCDXfunction Main()   local aLines := HB_ATokens( MemoRead( "fivehg.txt" ), Chr( 10 ) )...
by Antonio Linares
Thu Feb 21, 2019 7:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Much better: First create fivehg.txt this way (from Windows bash): nm fivehg.lib > fivehg.txt dbfs.prg #include "FiveWin.ch"extern DBFCDXfunction Main()   local aLines := HB_ATokens( MemoRead( "fivehg.txt" ), Chr( 10 ) )   local cLine, n   DbCre...
by Antonio Linares
Thu Feb 21, 2019 6:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

We could simply do:

nm fivehg.lib > fivehg.txt

and get all the info from one single txt file...
by Antonio Linares
Wed Feb 20, 2019 6:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Given a symbol name we need to know where it is created and where it is used

Given a file name we need to know whay symbols define and what symbols import (externals)

Given a file name we need to know what other files get linked

Given a symbol name we need to know what file names get linked
by Antonio Linares
Wed Feb 20, 2019 6:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Feeding files.dbf and symbols.dbf Please notice that this is a work in progress. Your tests, feedback and help are welcome :-) dbfs.prg #include "FiveWin.ch"function Main()   local aLines := HB_ATokens( MemoRead( "extern.txt" ), Chr( 10 ) ...
by Antonio Linares
Wed Feb 20, 2019 6:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: Reducing the EXEs sizes

Building files.dbf dbfs.prg #include "FiveWin.ch"function Main()   local aLines := HB_ATokens( MemoRead( "extern.txt" ), Chr( 10 ) )    DbCreate( "files.dbf", { { "name", "c", 80, 0 &#...
by Antonio Linares
Wed Feb 20, 2019 5:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Reducing the EXEs sizes

As you may be aware Windows provides a Linux bash. Simply type bash from a cmd window. https://www.howtogeek.com/249966/how-to-install-and-use-the-linux-bash-shell-on-windows-10/ From bash we can run the nm utility: nm --defined-only fivehg.lib > defined.txt nm --extern-only fivehg.li...
by Antonio Linares
Wed Feb 20, 2019 5:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reducing the EXEs sizes
Replies: 13
Views: 2663

Re: EXE passwords are visible in plain

... any text between TEXTHIDDEN( 1 ) and TEXTHIDDEN( 0 ) in your exe This makes the text strings defined in their source impossible to see in their EXEs You can put it at the beginning and end of your source programs or just in a piece of code
by cnavarro
Fri Nov 09, 2018 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXE passwords are visible in plain
Replies: 27
Views: 5120

Re: dbfs on Network : wich performance method?

... was faster, obviously I use the resources to insert the bitmaps I prefer to make the dialog dynamic and not resources in order not to burden the exes James, What does the tdata class consist of? I think I can not use for now advantage because my budget does not allow me and so I have to make ...
by Silvio.Falconi
Tue Oct 30, 2018 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfs on Network : wich performance method?
Replies: 26
Views: 5465
PreviousNext

Return to advanced search

cron