FiveDBU para 32/64 bits

User avatar
sysctrl2
Posts: 1043
Joined: Mon Feb 05, 2007 7:15 pm
Has thanked: 3 times
Contact:

Re: FiveDBU para 32/64 bits

Post by sysctrl2 »

Hola antonio, modificando un poquito la funcion Preferences()

// ITEMS { "DBFNTX", "DBFCDX", "RDDADS" }

RDDADS cambiar por ADS

// { "DBFNTX", "DBFCDX", "ADS" }

Saludos.

Code: Select all | Expand

function Preferences()

   local oDlg
   
   DEFINE DIALOG oDlg TITLE "Preferences" SIZE 400, 200

   @ 1.2, 1.5 SAY "Default RDD: " + cDefRdd OF oDlg
   
   @ 2.4, 1.2 COMBOBOX cDefRdd ITEMS { "DBFNTX", "DBFCDX", "ADS" } ;
      OF oDlg SIZE 180, 150
   
   @ 4, 7 BUTTON "&Ok" OF oDlg SIZE 45, 13 ;
      ACTION ( SavePreferences(), oDlg:End() )

   @ 4, 18 BUTTON "&Cancel" OF oDlg SIZE 45, 13 ACTION oDlg:End()
   
   ACTIVATE DIALOG oDlg CENTERED
   
return nil  
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
User avatar
sysctrl2
Posts: 1043
Joined: Mon Feb 05, 2007 7:15 pm
Has thanked: 3 times
Contact:

Re: FiveDBU para 32/64 bits

Post by sysctrl2 »

Hola antonio,

podrias agregar este include ?

#include "ADS.CH"

Tambien esta funcion INITI PROCEDURE

Code: Select all | Expand

INIT PROCEDURE Sets()
   
   LoadPreferences()
   
   if UPPER( cDefRdd ) = 'ADS'
      REQUEST ADS,ADSKeyCount,ADSKeyNo,OrdKeyCount,OrdKeyNo,AdsGetRelKeyPos,AdsSetRelKeyPos,DBFCDX,DBFFPT
      rddRegister( "ADS", 1 )
      rddsetdefault( "ADS" )
      AdsSetServerType(1)
      AdsSetFileType(2)
      SET SERVER LOCAL
      AdsSetFileType( ADS_CDX )  
   ELSE
      REQUEST DBFCDX
   ENDIF
   
   SET DATE FORMAT TO "DD/MM/YYYY"
   
return


esto es para xbrowse funcione con ADS,


Gracias por tu apoyo.

saludos.
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

César,

Estoy viendo la forma de implemtarlo para no obligar a usar la libreria de ADS para construirlo.
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
sysctrl2
Posts: 1043
Joined: Mon Feb 05, 2007 7:15 pm
Has thanked: 3 times
Contact:

Re: FiveDBU para 32/64 bits

Post by sysctrl2 »

Hola Antonio,

ademas del SET RELATION tambien vas a implementar el SET FILTER ?

Como la tecla de funcion F8 del viejo DBU.EXE

SALUDOS.
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
FiveWiDi
Posts: 1212
Joined: Mon Oct 10, 2005 2:38 pm
Has thanked: 1 time

Re: FiveDBU para 32/64 bits

Post by FiveWiDi »

Buen trabajo Antonio,

lo estas "bordando".
Un Saludo
Carlos G.

FiveWin 24.02 + Harbour 3.2.0dev (r2403071241), BCC 7.7 Windows 10
pcordonet
Posts: 111
Joined: Sat Jan 30, 2010 8:35 am
Location: Girona

Re: FiveDBU para 32/64 bits

Post by pcordonet »

Hola Antonio,

Vuelvo a tener problemas con las imagenes, serias tan amable de proporcionarlas ?
xRC: fivedbu.rc(37): warning: No newline at end of file.
xRC: fivedbu.rc(13): error: File not found: '..\bitmaps\32x32\bottom.bmp'.
xRC: fivedbu.rc(24): error: File not found: '..\bitmaps\32x32\imp_exp.bmp'.
xRC: fivedbu.rc(27): error: File not found: '..\bitmaps\32x32\process.bmp'.
xRC: fivedbu.rc(30): error: File not found: '..\bitmaps\32x32\top.bmp'.
xRC: fivedbu.rc(31): error: File not found: '..\bitmaps\32x32\relation.bmp'.

Type: C >>>Couldn't build: fivedbu.res<<<
Type: C >>>TMAKEOBJECT<<<
Type: C >>>TMAKEOBJECT:REFRESH<<<
Type: N >>> 1


Gracias
Pere
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

César,

Implementados los filtros :-) Se agradece si los probais y comentais su funcionamiento. Aqui parece que el filtro no se activa, aunque DbFilter() lo devuelve como expresión.

http://code.google.com/p/fivewin-contributions/downloads/detail?name=fivedbu_20120608.zip&can=2&q=

Image
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
lucasdebeltran
Posts: 1303
Joined: Tue Jul 21, 2009 8:12 am
Contact:

Re: FiveDBU para 32/64 bits

Post by lucasdebeltran »

Antonio,

Por favor, ¿podrías publicar un nuevo .zip actualizado incluyendo los bitmaps?.

Igualmente, he bajado el último .zip, ejecuto el exe, selecciono cualquier dbf y me dice que not found.

Gracias.
Muchas gracias. Many thanks.

Un saludo, Best regards,

Harbour 3.2.0dev, Borland C++ 5.82 y FWH 13.06 [producción]

Implementando MSVC 2010, FWH64 y ADO.

Abandonando uso xHarbour y SQLRDD.
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

Esta actualizado el post anterior con la dirección de descarga e incluye todos los bitmaps :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

Solucionado el bug de los filtros:

Code: Select all | Expand

  @ 4, 15 BUTTON "&Ok" OF oDlg SIZE 45, 13 ;
      ACTION ( cFilter := AllTrim( cFilter ),;
               If( Empty( cFilter ), DbClearFilter(), DbSetFilter( GENBLOCK( cFilter ), cFilter ) ),;
               oBrw:Refresh(), oDlg:End() )
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

Versión actualizada con comprobación de expresión en el filtro:

http://code.google.com/p/fivewin-contributions/downloads/detail?name=fivedbu_20120608_.zip&can=2&q=
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
sysctrl2
Posts: 1043
Joined: Mon Feb 05, 2007 7:15 pm
Has thanked: 3 times
Contact:

Re: FiveDBU para 32/64 bits

Post by sysctrl2 »

Antonio,

los FILTROS

O.K
Gracias.
Cesar Cortes Cruz
SysCtrl Software
Mexico

' Sin +- FWH es mejor "
User avatar
Antonio Linares
Site Admin
Posts: 42404
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 12 times
Been thanked: 48 times
Contact:

Re: FiveDBU para 32/64 bits

Post by Antonio Linares »

FiveDBU actualizado con configuración de modo compartido/exclusivo y soporte para PACK (borrado de registros eliminados) :-)

http://code.google.com/p/fivewin-contributions/downloads/detail?name=fivedbu_20120612.zip&can=2&q=
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply