Search found 52 matches: compilebuf

Return to advanced search

Re: MyRpt - Diseñador de Reportings - En desarrollo :-)

Horacio

C:\Harbour\harb20131007\bin>hbmk2 -find hb_compileBuf
-lhbcplr (installed):
hb_compileBuf()



Con este comando te dice que está en la libreria hbcplr
by cnavarro
Mon Feb 24, 2014 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MyRpt - Diseñador de Reportings - En desarrollo :-)
Replies: 132
Views: 36010

Re: Again about scripting ... HB_CompileBuf

Antonio Linares wrote:There should be no problems using that function.

The FWH print preview uses it :-)


Thank you Antonio ! Now scripts have a full power with that . It's very fine . I can to plan to build core exe , menus with directions prgs . It's really fine !
by Rimantas
Wed Mar 13, 2013 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

There should be no problems using that function.

The FWH print preview uses it :-)
by Antonio Linares
Wed Mar 13, 2013 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Rimantas, Do you think that I would advise a solution with "hiden surprises" ? I think I talk very clear always, and if there is a problem, I always warn about it. Lots of users trust me for so many years, and surely is because I have proved to be serious and professional Excuse me , Anto...
by Rimantas
Wed Mar 13, 2013 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Rimantas,

Do you think that I would advise a solution with "hiden surprises" ?

I think I talk very clear always, and if there is a problem, I always warn about it. Lots of users trust me for so many years, and surely is because I have proved to be serious and professional
by Antonio Linares
Wed Mar 13, 2013 4:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

the window remains opened because it belongs to the operating system, not to the PRG :-) Try this: local lExit := .F. ... ACTIVATE WINDOW oWnd StopUntil( { || lExit } ) From the window, change lExit to .T. to finally exit. Wwoooowwww ! And that is working ! :D Very fine ! So all power of script we ...
by Rimantas
Wed Mar 13, 2013 4:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

the window remains opened because it belongs to the operating system, not to the PRG :-)

Try this:

local lExit := .F.

...

ACTIVATE WINDOW oWnd

StopUntil( { || lExit } )

From the window, change lExit to .T. to finally exit.
by Antonio Linares
Wed Mar 13, 2013 3:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Antonio Linares wrote:Rimantas,

windows are non modal, thats why they don't work :-)

The execution continues and the script ends


:-) ... but windows it leaves , not close ... So any solution for that not exist ?
by Rimantas
Wed Mar 13, 2013 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Rimantas,

windows are non modal, thats why they don't work :-)

The execution continues and the script ends
by Antonio Linares
Wed Mar 13, 2013 12:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Antonio , after some search at last I can say some results . Some functions inside one scripts can work if script have only function or dialog . This will not work if script main control will be WINDOW ... This code works fine : #include "FiveWin.ch"function dlg()   local oDlg   Se...
by Rimantas
Wed Mar 13, 2013 12:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Rimantas, -Wl is already used by buildg.bat, so just need to add --allow-multiple-definition Try this: gcc -o%1.exe %1.o -Wall -s -mwindows -L%mingw%\lib -L%hlibs% -L%fwh%\lib -mno-cygwin -Wl --allow-multiple-definition ,--start-group -lfivehg -lfivehgc -lgtgui -luser32 -lwinspool -lkernel32 -lcomct...
by Antonio Linares
Wed Mar 13, 2013 6:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

In buildg.bat there are only two places where gcc is called. Those flags should be provided there. Antonio, excuse , but can you simple to point where I can to add this and how ? Yes, gcc is in 2 lines ( with or without .rc ) . At this moment I don't know how to let gcc listen to this commands . .h...
by Rimantas
Wed Mar 13, 2013 5:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

Antonio Linares wrote:Rimantas,
Please ty to provide me a simple example like this one that reproduces your error, thanks


+1

you could use a tdolphin server to make a sample that we can build
by Daniel Garcia-Gil
Wed Mar 13, 2013 12:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

In buildg.bat there are only two places where gcc is called. Those flags should be provided there.
by Antonio Linares
Tue Mar 12, 2013 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913

Re: Again about scripting ... HB_CompileBuf

All this outside functions ( mod_pas, newRec, delRec and excRec ) are "Undefined ..." Have you declared them as extern ? After this you sugestion I tried that : #include "fivewin.ch" #include "xbrowse.ch" #include "tdolphin.ch" #include "dtpicker.ch"...
by Rimantas
Tue Mar 12, 2013 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Again about scripting ... HB_CompileBuf
Replies: 28
Views: 4913
Next

Return to advanced search