How to open form without project

HMG Unicode versions 3.1.x related

Moderator: Rathinagiri

Post Reply
vlademiro
Posts: 36
Joined: Mon Jun 01, 2020 4:17 am
DBs Used: DBF

How to open form without project

Post by vlademiro »

Hi all
This is my first post in this group.
I'm using HMG.3.4.4 and would like be know how to open form only to addition without open project too.

E.g:

Code: Select all

c:\myfolder\ide.exe form.fmg
Thanks all
User avatar
dragancesu
Posts: 921
Joined: Mon Jun 24, 2013 11:53 am
DBs Used: DBF, MySQL, Oracle
Location: Subotica, Serbia

Re: How to open form without project

Post by dragancesu »

No this way
You have pair prg/fmg, from prg call fmg

look samples
User avatar
danielmaximiliano
Posts: 2612
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: How to open form without project

Post by danielmaximiliano »

vlademiro wrote: Thu Jun 04, 2020 6:57 pm I'm using HMG.3.4.4 and would like be know how to open form only to addition without open project too.
by default the IDE must be the project open, to do it autonomously it is necessary to use your preferred text editor
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
User avatar
AUGE_OHR
Posts: 2062
Joined: Sun Aug 25, 2019 3:12 pm
DBs Used: DBF, PostgreSQL, MySQL, SQLite
Location: Hamburg, Germany

Re: How to open form without project

Post by AUGE_OHR »

hi,

my HBFM Tool does create FMG from DBF which will be "accept" by HMG IDE Form-Designer
DBF2FMG.ZIP
(2.23 KiB) Downloaded 156 times
it include

Code: Select all

FUNCTION Cre_Form( aSize )
FUNCTION Cre_Label( nNo, nRow, nCol, nWidth, nHeight, cValue )
FUNCTION Cre_Textbox( nNo, nRow, nCol, nWidth, nHeight, cField, cType, nLen, nDec )
FUNCTION Cre_CheckBox( nNo, nRow, nCol, nWidth, nHeight, cName )
as i can say you "full-Set" like IDE generate to fill Property Box else IDE will not accept it.
so make a Demo for all Controls you want to use and use that Code to "copy/paste" into your Source FMG
have fun
Jimmy
User avatar
Anand
Posts: 595
Joined: Tue May 24, 2016 4:36 pm
DBs Used: DBF

Re: How to open form without project

Post by Anand »

vlademiro wrote: Thu Jun 04, 2020 6:57 pm Hi all
This is my first post in this group.
I'm using HMG.3.4.4 and would like be know how to open form only to addition without open project too.

E.g:

Code: Select all

c:\myfolder\ide.exe form.fmg
Thanks all
Your code will not work in HMG, but will work in HMG MiniGUI
I use MiniGUI and open form by this way always.

Regards,

Anand
Regards,

Anand

Image
vlademiro
Posts: 36
Joined: Mon Jun 01, 2020 4:17 am
DBs Used: DBF

Re: How to open form without project

Post by vlademiro »

AUGE_OHR wrote: Thu Jun 04, 2020 10:45 pm hi,

my HBFM Tool does create FMG from DBF which will be "accept" by HMG IDE Form-Designer
DBF2FMG.ZIP
Thanks AUGE_OHR, I Will test
vlademiro
Posts: 36
Joined: Mon Jun 01, 2020 4:17 am
DBs Used: DBF

Re: How to open form without project

Post by vlademiro »

Anand wrote: Fri Jun 05, 2020 11:16 am

Your code will not work in HMG, but will work in HMG MiniGUI
I use MiniGUI and open form by this way always.

Regards,

Anand
Is It a HMG Extend ? where do i download?

Thanks
vlademiro
Posts: 36
Joined: Mon Jun 01, 2020 4:17 am
DBs Used: DBF

Re: How to open form without project

Post by vlademiro »

Thanks all
User avatar
danielmaximiliano
Posts: 2612
Joined: Fri Apr 09, 2010 4:53 pm
Location: Argentina
Contact:

Re: How to open form without project

Post by danielmaximiliano »

vlademiro wrote: Fri Jun 05, 2020 4:31 pm
Is It a HMG Extend ? where do i download?

Thanks


http://hmgforum.com/viewtopic.php?f=15&t=6456
*´¨)
¸.·´¸.·*´¨) ¸.·*¨)
(¸.·´. (¸.·` *
.·`. Harbour/HMG : It's magic !
(¸.·``··*

Saludos / Regards
DaNiElMaXiMiLiAnO

Whatsapp. := +54901169026142
Telegram Name := DaNiElMaXiMiLiAnO
vlademiro
Posts: 36
Joined: Mon Jun 01, 2020 4:17 am
DBs Used: DBF

Re: How to open form without project

Post by vlademiro »

Thanks, ide.exe open fmg file now.
Post Reply