[Harbour] question about hbmk2

2010-05-10 Thread Ciro Vargas C
Hi all:


How can I pass the parameter --allow-multiple-definition to the hbmk2 ?

I have been trayng in different ways without results with the sw
-cflags=(--allow-multiple-definition)

I very appreciate your help

Ciro




-- 
http://www.oohg.org
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] question about hbmk2

2010-05-10 Thread Ciro Vargas C
Works for me..

Thank you I appreciate so much your help.


Best regards
Ciro



2010/5/10 Viktor Szakáts harbour...@syenar.hu:

 On 2010 May 10, at 15:11, Ciro Vargas C wrote:

 Thank you  Viktor it works !!!

 Now...

 I need use 3 different GTs in my project

 I put in my  test.hbc

 {win}gt=gtwvg gtwvt gtwin

 But I am missing anything

 it is correct this syntax?

 No. You need to repeat 'gt=' line
 for each gt you want to add:

 {win}gt=gtwin
 {win}gt=gtwvt
 etc

 Viktor

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.org
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] question about hbmk2

2010-05-10 Thread Ciro Vargas C
Because I need overwrite language functions by my own functions.

regards
Ciro


2010/5/10 Massimo Belgrano mbelgr...@deltain.it:
 Can you post your hbp?

 Why you need -allow-multiple-definition ?
 How much is simple hbmk2?

 2010/5/10 Ciro Vargas C c...@oohg.org:
 Works for me..

 Thank you I appreciate so much your help.


 Best regards
 Ciro



 2010/5/10 Viktor Szakáts harbour...@syenar.hu:

 On 2010 May 10, at 15:11, Ciro Vargas C wrote:

 Thank you  Viktor it works !!!

 Now...

 I need use 3 different GTs in my project

 I put in my  test.hbc

 {win}gt=gtwvg gtwvt gtwin

 But I am missing anything

 it is correct this syntax?

 No. You need to repeat 'gt=' line
 for each gt you want to add:

 {win}gt=gtwin
 {win}gt=gtwvt
 etc



 --
 Massimo Belgrano
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.org
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] HMG 3 and Windows 98SE

2010-05-03 Thread Ciro Vargas C
looking for hmg forum


http://hmgforum.com/


best regards
Ciro


2010/5/3 Bruce M. Axtens bruce.axt...@gmail.com:
 Victor

 Ok, just figured out how to get poster privs at HMG.

 Bruce.

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.org
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] NETIO Questions

2010-04-22 Thread Ciro Vargas C
Hi Winston:

Why do you say that the sample does not accept multiple connections?

What kind of test you do it?

let me know each step...

best regards
Ciro



2010/4/22 Winston Garcia wisto...@yahoo.es

   Thanks Bruno.

 Can you say me how i compile with MT Mode ?

 What Program i compile with MT mode Client or Server, or Client And Server
 ?

 Thanks by your suuport



 My Env is Server Ubuntu-Server  8.04 And Client WinXp

 Greeting


 --- El *jue, 22/4/10, Bruno Luciani bruno.luci...@gmail.com* escribió:


 De: Bruno Luciani bruno.luci...@gmail.com
 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. harbour@harbour-project.org
 Fecha: jueves, 22 de abril, 2010 20:36


 Do you have compiled in multithread mode ?

 I don't have tested yet in multiple connections but If I am not wrong
 I read that , it is needed MT mode

 This is my server , the defines , are not needed but i use it as a remember
 of defaults for the server

 Bruno


 #define DBSERVER  127.0.0.1
 #define DBPORT2941
 #define DBPASSWD  topsecret
 #define DBDIR data
 #define DBFILEclients

 #define DBNAMEnet: + DBSERVER + : + DBPORT + : + ;
   DBPASSWD + : + DBDIR + / + DBFILE

 request DBFCDX

 request HB_DIREXISTS
 request MAKEDIR

 proc main()
local pSockSrv, lExists

set exclusive off
rddSetDefault( DBFCDX )

pSockSrv := netio_mtserver( DBPORT,,, /* RPC */ .T., DBPASSWD )
if empty( pSockSrv )
   ? Cannot start NETIO server !!!
   wait Press any key to exit...
   quit
endif

? NETIO server activated.
hb_idleSleep( 0.1 )
wait


 2010/4/22 Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 

   Hi Bruno.

 Have you a sample of Netio server what received many conections ?

 The samples en contrib/netio only accept one conection at time ?

 Greeting

 Winston Garcia
 Venezuela

 --- El *jue, 22/4/10, Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 * escribió:


 De: Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es


 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. 
 harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 
 Fecha: jueves, 22 de abril, 2010 13:23


Thanks Bruno. I'll try.

 Winston Garcia

 --- El *jue, 22/4/10, Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 * escribió:


 De: Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 
 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. 
 harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 
 Fecha: jueves, 22 de abril, 2010 13:17

 I am using Netio to some tests

 You neet to compile server using MT support ( Multithread )

 In my tests i try in this way to use index and aparently work ok



 if !FILE(net:clients.cdx)
index on Nombre tag nom to net:clients.cdx
 endif

 Bruno

 2010/4/22 Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 

   Hi All, my English is bad.

 How work the index in netio ?
 any sample ?
 The Netiosvr samples only support one conection, how i enable to support
 any conection ?

 greeting

 Winston Garcia
 Venezuela


 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour



 -Adjunto en línea a continuación-

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour



 -Adjunto en línea a continuación-

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour



 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour



 -Adjunto en línea a continuación-

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour



 

Re: [Harbour] NETIO Questions

2010-04-22 Thread Ciro Vargas C
Porque dcies q no te acepta sino una conexion que error te sale?

si el server esta en linux pideseelo ya compildo a Bruno.

Why do you say that only accept one connection, what type of error is
showed?

saludos
regards
Ciro




2010/4/22 Winston Garcia wisto...@yahoo.es

   Hola Ciro. Se que hablas español y asi te lo explico mejor.

 Estoy migrando una pequeña aplicacion de Facturacion e Inventarios que
 tenia en Clipper a harbour, hasta alli todo bien excepto una libreria de
 terceros y simule con harbour las funciones de estas.

 Por razones de estabilidad estoy haciendo unos test desde windows-xp contra
 un servidor ubuntu-linux que es donde estan las tablas dbf. y me encuentro
 en que solo me permite hacer una coneccion al server, ahora lo que me falta
 probar es compilar con MT mode.

 Ahora te agradeceria me hicieras saber algunos tips para trabajar con esta
 extraordinaria funcionabilidad de harbour

 Saludos

 Winston Garcia
 Venezuela



 --- El *jue, 22/4/10, Ciro Vargas C c...@oohg.org* escribió:


 De: Ciro Vargas C c...@oohg.org

 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. harbour@harbour-project.org
 Fecha: jueves, 22 de abril, 2010 21:54


  Hi Winston:

 Why do you say that the sample does not accept multiple connections?

 What kind of test you do it?

 let me know each step...

 best regards
 Ciro



 2010/4/22 Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 

   Thanks Bruno.

 Can you say me how i compile with MT Mode ?

 What Program i compile with MT mode Client or Server, or Client And Server
 ?

 Thanks by your suuport



 My Env is Server Ubuntu-Server  8.04 And Client WinXp

 Greeting


 --- El *jue, 22/4/10, Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 * escribió:


 De: Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 
 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. 
 harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 
 Fecha: jueves, 22 de abril, 2010 20:36


 Do you have compiled in multithread mode ?

 I don't have tested yet in multiple connections but If I am not wrong
 I read that , it is needed MT mode

 This is my server , the defines , are not needed but i use it as a
 remember of defaults for the server

 Bruno


 #define DBSERVER  127.0.0.1
 #define DBPORT2941
 #define DBPASSWD  topsecret
 #define DBDIR data
 #define DBFILEclients

 #define DBNAMEnet: + DBSERVER + : + DBPORT + : + ;
   DBPASSWD + : + DBDIR + / + DBFILE

 request DBFCDX

 request HB_DIREXISTS
 request MAKEDIR

 proc main()
local pSockSrv, lExists

set exclusive off
rddSetDefault( DBFCDX )

pSockSrv := netio_mtserver( DBPORT,,, /* RPC */ .T., DBPASSWD )
if empty( pSockSrv )
   ? Cannot start NETIO server !!!
   wait Press any key to exit...
   quit
endif

? NETIO server activated.
hb_idleSleep( 0.1 )
wait


 2010/4/22 Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 

   Hi Bruno.

 Have you a sample of Netio server what received many conections ?

 The samples en contrib/netio only accept one conection at time ?

 Greeting

 Winston Garcia
 Venezuela

 --- El *jue, 22/4/10, Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 * escribió:


 De: Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es


 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. 
 harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 
 Fecha: jueves, 22 de abril, 2010 13:23


Thanks Bruno. I'll try.

 Winston Garcia

 --- El *jue, 22/4/10, Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 * escribió:


 De: Bruno Luciani 
 bruno.luci...@gmail.comhttp://es.mc269.mail.yahoo.com/mc/compose?to=bruno.luci...@gmail.com
 
 Asunto: Re: [Harbour] NETIO Questions
 Para: Harbour Project Main Developer List. 
 harbour@harbour-project.orghttp://es.mc269.mail.yahoo.com/mc/compose?to=harb...@harbour-project.org
 
 Fecha: jueves, 22 de abril, 2010 13:17

 I am using Netio to some tests

 You neet to compile server using MT support ( Multithread )

 In my tests i try in this way to use index and aparently work ok



 if !FILE(net:clients.cdx)
index on Nombre tag nom to net:clients.cdx
 endif

 Bruno

 2010/4/22 Winston Garcia 
 wisto...@yahoo.eshttp://es.mc269.mail.yahoo.com/mc/compose?to=wisto...@yahoo.es
 

   Hi All, my English is bad.

 How work the index in netio ?
 any sample ?
 The Netiosvr samples only support one conection, how i enable to support
 any conection ?

 greeting

 Winston

Re: [Harbour] run without see command prompt

2010-03-31 Thread Ciro Vargas C
i think that you can do it with waitrun() command or with shellexecute
in hiden mode.

best regards
Ciro


2010/3/31 Massimo Belgrano mbelgr...@deltain.it:
 Is Possible execute a command to exe with parameter without see command
 prompt?
 PROCEDURE Main
    LOCAL cCommand := convert.exe files.jpg files.pcl
     CLS
     RUN (cCommand)
  RETURN
 convert.exe is from imagemagik

 --
 Massimo Belgrano


 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour





-- 
http://www.oohg.org
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] HBNETIO

2010-01-13 Thread Ciro Vargas C
in Letodb it's not posible but in Netio I don't know...

regards
Ciro
2010/1/13 Bruno Luciani bruno.luci...@gmail.com:
 It is posible to use HBNETIO server to share some DBF 's and
 at the same time use locally a system that access the
 same  DBF' s directly in shared mode ?


 Bruno

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour





-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Happy New year

2009-12-31 Thread Ciro Vargas C
Happy New year to all harbour users and developers  !!!

Best regards
Ciro Vargas Clemow

-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Gongratulations

2009-12-24 Thread Ciro Vargas C
Hi all:

i'm very happy with this new version.

Congratulations to all community


Merry Christmas and a happy new year

best regards
Ciro


-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] c compiler ?

2009-11-16 Thread Ciro Vargas C
Very thanks Chen and Massimo, another similar way in a   #ifdef   ?


regards
Ciro

2009/11/16 Chen Kedem n...@synel.co.il:
 Ciro,

 any way to know what compiler has been used  at compile time in PRG level ?

 HB_Compiler()

  Chen.
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] c compiler ?

2009-11-16 Thread Ciro Vargas C
OK Viktor thanks.

best regards
Ciro

2009/11/16 Viktor Szakáts harbour...@syenar.hu:
 Generally speaking .prg should never depend on the
 C compiler used to build the software, it's a low-level
 implementation detail. For this reason we don't
 have such macro and I don't think we should have one.

 If you need to create different code for different
 compilers (f.e. because some external components are
 or aren't available based on that), you can solve it
 on the build level, and/or you can introduce some
 local macros which control inclusion of these
 components. (hbmk2 helps you to do that)

 Brgds,
 Viktor

 On 2009 Nov 16, at 14:44, Ciro Vargas C wrote:

 Very thanks Chen and Massimo, another similar way in a   #ifdef   ?


 regards
 Ciro

 2009/11/16 Chen Kedem n...@synel.co.il:
 Ciro,

 any way to know what compiler has been used  at compile time in PRG level ?

 HB_Compiler()

  Chen.
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




 --
 http://www.oohg.prg
 http://sistemascvc.tripod.com

 donaciones para CVC de ooHG

 https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour

 ___
 Harbour mailing list (attachment size limit: 40KB)
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] c compiler ?

2009-11-15 Thread Ciro Vargas C
Hi all:

any way to know what compiler has been used  at compile time in PRG level ?

TIA
Ciro


-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] image library

2009-11-03 Thread Ciro Vargas C
look for a external pogram in my page called wdialog

http://sistemascvc.tripod.com

in download section,

regards
Ciro

2009/11/3 Maurizio Faccio adinet mauf...@adinet.com.uy:
 I have a console application (a pure clipper code ) that I've migrated to
 harbour.  I wish to add something like a pop-up window that shows me an
 image of the items that I am browsing with a tbrowse.
 I am really lost with all the graphic libraries addons,   and it seems no
 one apply for this task (minigui for example)
 Which library you recommend me for that task

 Thank you in advance

 Maurizio

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] about Netio

2009-11-01 Thread Ciro Vargas C
Hi all:

any way to know what files are opened in a netio server from a program?

In order to make a File Monitor.

TIA
Ciro


-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] FreeDOS in VMWare VM

2009-10-10 Thread Ciro Vargas C
Hi Viktor:

Wine has a configuration file where you can assign a drive letter to a folder.
You can edit this file with normal text linux editor or use wineconf.

If the folder is in another machine, before activate  the NFS daemon.

and mount the folder in the current machine from the another like in windows


regards
Ciro


2009/10/10 Viktor Szakáts harbour...@syenar.hu:
 Thanks Bruno, that did the trick!

 Now I have to find out how to mount the host
 system as a drive :)

 Brgds,
 Viktor

 On 2009 Oct 10, at 04:46, Bruno Luciani wrote:

 I think that DOSEMU isn't it a good choice too
 Wine works better than DOSEMU

 May be your choice is good , freedos in vmware

 Take a look at this link

 http://www.youtube.com/watch?v=sIxK9qO95p8


 Bruno


 2009/10/9 Viktor Szakáts harbour...@syenar.hu
 Hi Bruno,


 Did you try to execute DOS aplications in WINE ?

 works very well

 Thanks for the tip.

 Since I'd like to use it for Clipper/DOS reference
 testing in context of Harbour development, I'd
 like to use a DOS environment as close to MS-DOS
 as possible, wine seems to thick of a layer for
 this purpose and I'm not sure their main goal is
 MS-DOS compatibility.

 It also isn't supported on Mac OS X wine port:
 ---
 fixme:module:wine_load_dos_exe DOS executables not supported on this
 platform
 ---

 I'm looking for something which works in a VMWare
 Fusion VM directly.


 Brgds,
 Viktor

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] FreeDOS in VMWare VM

2009-10-10 Thread Ciro Vargas C
Sorry but Wine support DOS applications.  please test it and you got surpraised

Best
regards
Ciro

2009/10/10 Viktor Szakáts harbour...@syenar.hu:
 Hi Ciro,

 Hi Viktor:

 Wine has a configuration file where you can assign a drive letter to a
 folder.
 You can edit this file with normal text linux editor or use wineconf.

 If the folder is in another machine, before activate  the NFS daemon.

 and mount the folder in the current machine from the another like in
 windows

 I'm interested networking in FreeDOS under VMWare configuration.

 For wine it's working fine (but it doesn't support DOS).

 Brgds,
 Viktor

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Harbour 2.0 changes...

2009-10-06 Thread Ciro Vargas C
Roberto I can help you

I write in private.

best regards
Ciro


2009/10/6 Roberto Lopez rober...@gmail.com:

 Viktor:

 I'm trying to compile HMG code (working on Harbour 1.0) with 2.0 and I'm
  getting lot of errors on 'hb_storni' 'hb_stornl' and hb_parc.

 I've searched the changelog for changes on these functions, but I've not
 found any help on that there.

 The error message is 'too many arguments'.

 TIA.

 Regards,

 Roberto.
 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] Re: Wich is the official harbour's user group?

2009-10-05 Thread Ciro Vargas C
A little Fix  ;)


 3) OOHG (object oriented Harbour Gui) by Ciro Vargas and Vicente Lopez. This

Is Vicente Guerra.


 version of Minigui implement the same library but using real oopp and
 clases. It also uses last version of Harbour from svn.



best regards
Ciro


-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] SF.net SVN: harbour-project:[12593] trunk/harbour

2009-09-24 Thread Ciro Vargas C
Hi Viktor:

I'm only a user but  I agree

best regards
Ciro

2009/9/24 Viktor Szakáts harbour...@syenar.hu:
 Dunno where to address this, but I tried LetoDB the other
 day with production app, and instantly stumbled upon a
 fatal because dbExists() isn't implemented.

 I also had to patch source to fix hb_socket...() function
 collision.

 It'd be great if someone could fix these in LetoDB repository.

 BTW I have nothing against hosting LetoDB in Harbour
 repository, but here Alexander has the final word, so if
 he also likes the idea, plus other Harbour developers also
 agree, we can do it.

 Brgds,
 Viktor

 On 2009 Sep 24, at 18:15, alxokhotnikov wrote:

 Hi

 NETIO

 locally (two processes)
 adding 10 entries - 80 seconds
 Read all entries - 10 seconds
 Update Records - 35 seconds

 the network (two computers)
 adding 10 records - 320 seconds
 Read all entries - 60 seconds
 Update Records - 420 seconds

 And all of this, any interruption of the client (eg, hanging) leads to
 data corruption (index)


 LetoDB

 locally (two processes)
 adding 10 entries - 10 seconds
 Read all entries - 2 seconds
 Update Records - 18 seconds

 the network (two computers)
 adding 10 entries - 45 seconds
 Read all entries - 10 seconds
 Update Records - 110 seconds

 1. Data are not damaged
 2. The results even better than the RDDADS

 Maybe in the harbour add LetoDB (or take it as a basis)?

 2009/9/24 Przemyslaw Czerpak dru...@acn.waw.pl:

 On Wed, 23 Sep 2009, Mindaugas Kavaliauskas wrote:

 I want to share more test results after using memory FS in real project.
 Report generation time (min:sec):
  Local disk database              3:07
  Network database                25:52
  Local disk database and MemFS    2:22 + 0:03 (copying to memory FS)
  Network database and MemFS       2:24 + 0:13 (copying to memory FS)

 Very nice contribution and also final results.

 In last week I've found a while to make some test with NETIO and
 MS-Windows.
 The test were done on WinXP, SMB and NETIO servers were on Suse Linux,
 T100
 LAN. Any opportunistic locks in SMB server were disabled.
 The test program is attached below. I was testing only shared mode.
 I tested SMB, NETIO and also xHarbour REDBFCDX and there is not
 noticeable
 results. All tests gave results similar:

 Harbour 2.0.0beta3 (Rev. 12431), Windows XP 5.1.2600 Dodatek Service Pack
 3
 RDD: DBFCDX type: CHARACTER (shared)
 records: 1, repeated: 1, modulo: 1
 creating database and index...        69.66 sec.
 skip test...                          17.38 sec. count: 1
 revers skip test...                   17.28 sec. count: 1
 testing seek...                       17.28 sec. count: 1
 goto test...                          17.34 sec. count: 1
 goto+skip test...                     30.38 sec. count: 1
 skip test...                          17.41 sec. count: 1
 revers skip test...                   17.27 sec. count: 1
 testing seek...                       17.30 sec. count: 1
 goto test...                          17.27 sec. count: 1
 goto+skip test...                     30.31 sec. count: 1
 Total execution time...              268.91 sec.

 and the difference were smaller then 0.5%. Just simply the net overhead
 is such huge that rest is unimportant.
 The difference can be seen only in local tests and here Harbour was
 faster then xHarbour but it's mostly result for faster Harbour VM.

 The local disk tests in WinXP and Harbour using DBFCDX with native IO
 took ~2.50 seconds. It means that in above test Harbour consumes less
 then 1% and rest is the cost of network overhead.

 BTW testing REDBFCDX do not forget to add RE_TURBO( .f. ) - REDBFCDX
 enables dirty reading by default or add Sx_SetTurbo( .t. ) to other
 RDDs to enable it too. Otherwise there is no sense to make any
 comparisons
 and probably it's also the reason why Miguel has better then native SMB
 protocol results testing REDBFCDX.
 Of course the difference strongly depends on hardware transport layer,
 the results in WAN or in T10/T1000/T1 LANs can be completely
 different
 but this test clearly shows that to reach real speed improvement it's
 necessary to create RDD oriented server which can group IO operations
 in some bigger logical units to reduce number of packages which have to
 be send and confirmed. Operating only on transport layer like NETIO we
 can reach some small improvement yet, i.e. we can disable confirmation
 in UNLOCK operation what in above tests can increase the SKIP tests ~20%
 (Maybe I'll add such extension soon) or we can try to group some
 operations,
 i.e. join index lock and concurrent access counter read into single
 operation what may give even 50% speed improvement in the SKIP but it
 needs
 modifications in core RDD code so I do not like it because it may start
 very danger in longer terms process of adding local hacks to core RDD
 code.

 best regards,
 Przemek
 ___
 

Re: [Harbour] SF.net SVN: harbour-project:[12021] trunk/harbour

2009-08-10 Thread Ciro Vargas C
I have the same problem with include files FMG in oohg.

best regards
Ciro

2009/8/10 Viktor Szakáts harbour...@syenar.hu:
 True. hbqt.ch wasn't refreshed in central include file,
 despite install runs and all that.

 I'll try to find some solution in the make system for
 this problem. It's not healthy that 'install' is required
 to create successful builds hbxbp (or any other inter-dependent
 contribs).

 Brgds,
 Viktor

 On 2009.08.10., at 4:53, Pritpal Bedi wrote:


 Hi


 Viktor Szakáts wrote:

 ../../../../../bin/darwin/gcc/harbour ../../../xbpbrowse.prg -n1 -
 i../../../../../include -q0 -w3 -es2 -kmo -l -gc0  -I../../../../../
 contrib/hbqt
 ../../../xbpbrowse.prg(1205) Warning W0001  Ambiguous reference
 'QHEADERVIEW_INTERACTIVE'
 ../../../xbpbrowse.prg(1205) Warning W0001  Ambiguous reference
 'QHEADERVIEW_FIXED'
 ../../../xbpbrowse.prg(1220) Warning W0001  Ambiguous reference
 'QHEADERVIEW_STRETCH'
 ../../../xbpbrowse.prg(1222) Warning W0001  Ambiguous reference
 'QHEADERVIEW_INTERACTIVE'
 ../../../xbpbrowse.prg(1222) Warning W0001  Ambiguous reference
 'QHEADERVIEW_FIXED'

 Looks like a casing problem.


 No, these are constants only from hbqt.ch.
 Are you compiling with updated hbqt.ch ?

 Regards
 Pritpal Bedi

 --
 View this message in context:
 http://www.nabble.com/SF.net-SVN%3A-harbour-project%3A-12021--trunk-harbour-tp24892857p24901201.html
 Sent from the Harbour - Dev mailing list archive at Nabble.com.

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour

 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour




-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] pay any developer to have GT WVW updated to latest xHarbou

2009-07-21 Thread Ciro Vargas C
What is the problem actually between xharbour and gtwvw?

regards
Ciro

2009/7/20 Massimo Belgrano mbelgr...@deltain.it:
 Anybody intrested?
 From: Marcelo Lombardo marc...@...
 Subject: GT WVW
 Newsgroups: gmane.comp.lang.xharbour.devel
 Date: 2009-07-15 13:35:25 GMT (5 days and 49 minutes ago)

 Hello,

 We have users in Brazil that are willing to **pay** any developer to
 have GT WVW updated to latest xHarbour. This could be done as a
 xHarbour improvement or as a private project. Any candidates ?

 Best Regards,

 Marcelo Lombardo
 www.xharbour.com.br


 --
 Massimo Belgrano



 ___
 Harbour mailing list
 Harbour@harbour-project.org
 http://lists.harbour-project.org/mailman/listinfo/harbour





-- 
http://www.oohg.prg
http://sistemascvc.tripod.com

donaciones para CVC de ooHG

https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclickhosted_button_id=5369884
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] test

2009-01-05 Thread Ciro Vargas C
test
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour