Recent

Author Topic: MyDbfStudio - New Admin tool to manage your dbase tables  (Read 36875 times)

xircon

  • New Member
  • *
  • Posts: 25
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #15 on: March 28, 2010, 12:58:57 pm »
Cannot compile from source, have made a recording of the compile:

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

It SIGSEGV on pressing the new file button / menu item.

Tried running original compiled binary from a terminal & got the following:
Code: [Select]
[steve@localhost mydbfstudio_linux_i386_0.2beta]$ ./DbfStudio
[WARNING] Out of OEM specific VK codes, changing to unassigned
[WARNING] Out of unassigned VK codes, assigning $FF
TApplication.HandleException Access violation
  Stack trace:
  $B73B3C3E
  $081D459D
  $08118B9B
  $08117DEA
  $080F0A98
  $080F0685
  $080F167A
  $080F0B75
  $08059A71
  $0805ED5C
  $0805FE19
  $080F0685
  $080EB9AA
  $0805F35D
  $080EF13D
  $080F252B
  $08221EA9
WARNING: TLCLComponent.Destroy with LCLRefCount>0. Hint: Maybe the component is processing an event?

davesimplewear

  • Sr. Member
  • ****
  • Posts: 319
    • Davids Freeware
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #16 on: March 28, 2010, 01:21:21 pm »
You need to change the permissions and make the file executable, then just double click to run, no need for the ./

Regards
Dave
All things considered insanity seems the best option

ecalogiuri

  • Jr. Member
  • **
  • Posts: 74
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #17 on: March 29, 2010, 10:54:50 am »
You need to change the permissions and make the file executable, then just double click to run, no need for the ./

Regards
Dave

Indeed ...

xircon

  • New Member
  • *
  • Posts: 25
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #18 on: March 29, 2010, 07:06:54 pm »
Errrr yes you do need the "./" when running from a terminal (which I did in the hope of getting the author some useful feedback).

Linux requires "./" to run a program from the current directory if not in path:

Code: [Select]
[steve@localhost mydbfstudio]$ ls
COPYING.GPL.txt  COPYING.LGPL.txt  DbfStudio*  html/  img/
[steve@localhost mydbfstudio]$ DbfStudio
bash: DbfStudio: command not found
[steve@localhost mydbfstudio]$ ./DbfStudio
[WARNING] Out of OEM specific VK codes, changing to unassigned

As you can see "DbfStudio" command not found, "./DbfStudio" - runs.

Of course the program is executable - how else could I (unsuccessfully) run it if it wasn't?
« Last Edit: March 29, 2010, 07:08:47 pm by xircon »

davesimplewear

  • Sr. Member
  • ****
  • Posts: 319
    • Davids Freeware
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #19 on: March 30, 2010, 01:11:43 am »
HMM I also use linux, I should have pointed out to use nautilus or konquerer instead of the terminal then you don't need the ./ command, double click the executable file to run it as in windows. it is designed to be run that way.

Regards
Dave
All things considered insanity seems the best option

JimBeam

  • New Member
  • *
  • Posts: 36
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #20 on: June 19, 2010, 07:04:22 am »
PMFJI, I think Xircon is right: it really shouldn't make any difference whether you run it in a terminal window as long as it's in an X session or you have the display variable set.
If a program is designed to be run by pointing & clicking, please tell me how it differentiates between being started from a terminal window in an X session or a file manager in an X session (or even a menu entry in a window manager)...
I've never, ever, noticed any difference in app behaviour.

Shutting up now, as this discussion is about MyDbfStudio, not about how one should start programs... ;)

clauslack

  • Sr. Member
  • ****
  • Posts: 275
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #21 on: August 28, 2012, 01:36:27 pm »
Hello, Can update the binary with the last stable Lazarus/Fpc (the are bug fixed in fpc 2.6 for TDBF)

Regards

anis2505

  • Full Member
  • ***
  • Posts: 201
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #22 on: July 17, 2013, 07:09:31 pm »
Hi,

Sorry to revive this topic,

First Excellent product that proves the power of lazarus.

My problem is when creating a new table I can't figure out how to fill the grid with the table fields. that seems not so obvious. SO PLEASE HELP ME I need to know as soon as possible.

EDITED
***************************
Stupid me I found it. for others just use the down arrow key.



regards
« Last Edit: July 17, 2013, 10:06:30 pm by anis2505 »
Dear Confucius you said {A picture is worth a thousand words}
I say {a good example is worth a thousand words}

kodok.buncit

  • New Member
  • *
  • Posts: 35
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #23 on: July 17, 2013, 09:13:02 pm »
weird it doesn't work on my ubuntu
Code: [Select]
[WARNING] Out of OEM specific VK codes, changing to unassigned
[WARNING] Out of unassigned VK codes, assigning $FF
TApplication.HandleException Invalid floating point operation
  Stack trace:
  $B6556FDC
not even when i double click

anyone can run it on linux?
kodok.buncit on github https://github.com/kodok-buncit/

Primary OS : Linux Ubuntu 12.04
fpc & laz      : always Trunk version

kodok.buncit

  • New Member
  • *
  • Posts: 35
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #24 on: July 17, 2013, 09:30:24 pm »
ok after downloading the source and compile it then i found error on unit DsDataExport
Code: [Select]
procedure TDsDataExport.SaveRecords;
 Var Bookmark : TBookmarkStr; //
     ACancel : Boolean;
begin
 FDataSet.DisableControls;

 Try
   If FPreserveBookmark Then
    Bookmark:=DataSet.Bookmark;// <-- expected AnsiString but get TByte
//omited for clarity...

then i change it to
Code: [Select]
procedure TDsDataExport.SaveRecords;
 Var Bookmark : TBookmark; // <-- change to TBookmark
     ACancel : Boolean;
begin
 FDataSet.DisableControls;

 Try
   If FPreserveBookmark Then
    Bookmark:=DataSet.Bookmark;
//omited for clarity...

finally it works  O:-)

environtment :
OS : Linux Ubuntu
fpc : 2.7.1
laz : 1.1.x
kodok.buncit on github https://github.com/kodok-buncit/

Primary OS : Linux Ubuntu 12.04
fpc & laz      : always Trunk version

Gustavo 'Gus' Carreno

  • Hero Member
  • *****
  • Posts: 1111
  • Professional amateur ;-P
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #25 on: March 16, 2021, 11:34:32 pm »
Hey All,

I'm wondering if this tool's source can be obtained somewhere else than from the http://mydbfstudio.altervista.org , since the page mentioned above is archived.

Has anyone saved the source code in a dark corner of your HDD and could share?

Many thanks in advance!

Cheers,
Gus
Lazarus 3.99(main) FPC 3.3.1(main) Ubuntu 23.10 64b Dark Theme
Lazarus 3.0.0(stable) FPC 3.2.2(stable) Ubuntu 23.10 64b Dark Theme
http://github.com/gcarreno

wp

  • Hero Member
  • *****
  • Posts: 11854
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #26 on: March 17, 2021, 01:16:29 am »
The site is in the wayback machine (https://web.archive.org/web/20180423093628/http://mydbfstudio.altervista.org/index.html), the downloads, however, seem to be missing.

Gustavo 'Gus' Carreno

  • Hero Member
  • *****
  • Posts: 1111
  • Professional amateur ;-P
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #27 on: March 17, 2021, 01:48:31 am »
Hey WP,

The site is in the wayback machine (https://web.archive.org/web/20180423093628/http://mydbfstudio.altervista.org/index.html), the downloads, however, seem to be missing.

Awww, crap!!

Well, many thanks for the effort in getting the link to the wayback machine!!

Cheers,
Gus
Lazarus 3.99(main) FPC 3.3.1(main) Ubuntu 23.10 64b Dark Theme
Lazarus 3.0.0(stable) FPC 3.2.2(stable) Ubuntu 23.10 64b Dark Theme
http://github.com/gcarreno

paweld

  • Hero Member
  • *****
  • Posts: 970
Best regards / Pozdrawiam
paweld

cdbc

  • Hero Member
  • *****
  • Posts: 1025
    • http://www.cdbc.dk
Re: MyDbfStudio - New Admin tool to manage your dbase tables
« Reply #29 on: March 17, 2021, 06:39:03 pm »
Hi
@paweld: Thank you  :)
Regards Benny
If it ain't broke, don't fix it ;)
PCLinuxOS(rolling release) 64bit -> KDE5 -> FPC 3.2.2 -> Lazarus 2.2.6 up until Jan 2024 from then on it's: KDE5/QT5 -> FPC 3.3.1 -> Lazarus 3.0

 

TinyPortal © 2005-2018