Search found 1421 matches

by carlos vargas
Mon Jun 15, 2020 6:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement PeekStr()
Replies: 16
Views: 2281

Re: How to implement PeekStr()

umm, HB_ARCH_32BIT I don't remember if this constant exists in harbour, you can do the test with only that part of the code, avoiding the part for 64 bits. HB_FUNC( PTRTOSTR ) {    const char * * pStrs = ( const char * * ) hb_parnl( 1 );      hb_retc( * ( pStrs + hb_parnl( 2 ) ) ); }   this a exampl...
by carlos vargas
Mon Jun 15, 2020 4:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Dolphin to FW MySql/Maria upgrade (Solved) ...
Replies: 6
Views: 1170

Re: Dolphin to FW MySql/Maria upgrade ...

both harbor and xharbour allow the modification of methods and datas of a class. examples: /*-------------------------------------------------------------------------------------------------*/ #include "hbclass.ch" /*-------------------------------------------------------------------------...
by carlos vargas
Mon Jun 15, 2020 4:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement PeekStr()
Replies: 16
Views: 2281

Re: How to implement PeekStr()

Antonio in harbour_mod exist the funcion PtrToStr, Pointer To String. I think it would be logical to include that code in harbour directly /* **  pointers.c -- Pointers high level management module ** ** (c) FiveTech Software SL, 2019-2020 ** Developed by Antonio Linares alinares@fivetechsoft.com **...
by carlos vargas
Fri Jun 05, 2020 7:58 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Agrandar la caja de selección de un combobox
Replies: 6
Views: 1044

Re: Agrandar la caja de selección de un combobox

estas son las nuevas opciones de combobox, pero no veo una para incrementar el alto del combobox. dejame buscar en mis notas.... #xcommand @ <nRow>, <nCol> COMBOBOX [ <oCbx> VAR ] <cVar> ; [ <it: PROMPTS, ITEMS> <aItems> ] ; ... [ HEIGHTGET <nHGet> ] ; [ SELHEIGHT <nSelHt> ] ; [ ITEMHEIGHT <nItmHt> ...
by carlos vargas
Tue May 19, 2020 9:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX HEIGHTGET is not working? *Solved*
Replies: 11
Views: 2006

Re: COMBOBOX HEIGHTGET is not working?

not work    REDEFINE COMBOBOX nEstado ;       ID 109 OF oDlgPE ;       ITEMS aEstados ;       HEIGHTGET 24 ;       WHEN !Empty( cNomProy ) ;       ON CHANGE ( IIf( nEstado == 1, ( cPermisoCierre := Space( 20 ), dFechaCierre := CToD( "" ), oDlgPE:Update() ), NIL ) )   work ok.    REDEFINE C...
by carlos vargas
Tue May 19, 2020 8:56 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2428

Re: ResEdit y Borland 7.4

simplemente, pon en la plantilla

Code: Select all

#ifndef WC_STATIC
#define WC_STATIC  "Static"
#endif
 
ya lo probe aca, sin problemas.

Image
by carlos vargas
Tue May 19, 2020 4:35 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2428

Re: ResEdit y Borland 7.4

parece que el problema esta en la constante WC_STATIC, buscando en mis rc no encuentro una sola mension. por ello no tengo problemas.
by carlos vargas
Mon May 18, 2020 6:37 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2428

Re: ResEdit y Borland 7.4

agregue esto y abrio, es raro por que esta en el commctrl.h, hayq ue revisar por que no lo abrio inicialmente #ifndef NOSTATIC #ifdef _WIN32 // Static Class Name #define WC_STATICA "Static" #define WC_STATICW L"Static" #ifdef UNICODE #define WC_STATIC WC_STATICW #else #define WC_...
by carlos vargas
Mon May 18, 2020 6:18 pm
Forum: FiveWin para Harbour/xHarbour
Topic: ResEdit y Borland 7.4
Replies: 15
Views: 2428

Re: ResEdit y Borland 7.4

este es el que uso actualmente con bcc740. recuerden que se debe hacer un cambio en prsht.h http://forums.fivetechsupport.com/viewtopic.php?f=3&t=34083&p=201802&hilit=prsht.h#p201802 #include <winresrc.h> #include <windows.h> #include <commctrl.h> #ifndef WC_TABCONTROL #define WC_TABCONT...
by carlos vargas
Fri May 15, 2020 5:54 pm
Forum: mod_harbour
Topic: Hoy es el primer cumpleaños de mod_harbour !!!
Replies: 7
Views: 3920

Re: Hoy es el primer cumpleaños de mod_harbour !!!

Gracias Carles, a entrarle....
leyendo con interes....
by carlos vargas
Fri May 15, 2020 5:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: BROWSE DE HERNAN
Replies: 2
Views: 789

Re: BROWSE DE HERNAN

https://castillolawyers.zapto.org/owncloud/index.php/s/JUMoQWiHRSfmcuP incluida las lib para harbour y xharbour. se construye las lib usando xmate. https://castillolawyers.zapto.org/owncloud/index.php/s/st8i36O5ESv97cz si deseas hacer las lib recuerda modificar los archivos .env de xmate para que a...
by carlos vargas
Tue Apr 28, 2020 9:52 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Usar o no variables publicas.
Replies: 10
Views: 1557

Re: Usar o no variables publicas.

Últimamente me hecho adicto a los hash
en mis app tengo un

Code: Select all

en el modulo inicial
PUBLIC hGlobal := {=>}
hGlobal[ "userid" ] :=
hGlobal[ "userlevel" ] :=
hGlobal[ "usermodules" ] := 
 
y asi, las que necesite.
by carlos vargas
Wed Apr 15, 2020 9:09 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Construir Harbour para bcc64 7.4 o 7.3
Replies: 10
Views: 1632

Re: Construir Harbour para bcc64 7.4 o 7.3

A la fecha no es posible construir el harbour de 64 bit con bcc 64 bit 7.4, se puede llegar hasta cierto punto pero luego falla, incluso para llegar hasta donde falla es necesario realizar cambios en los fichero de configuración para la construcción del compilador, en el hbmk2 también. como indica a...
by carlos vargas
Tue Apr 14, 2020 7:47 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Construir Harbour para bcc64 7.4 o 7.3
Replies: 10
Views: 1632

Re: Construir Harbour para bcc64 7.4 o 7.3

a la fecha no es posible construir harbour con el bcc 7.4 64 bits.