VisualFBEditor - IDE for FreeBasic

User projects written in or related to FreeBASIC.
Post Reply
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

thank you Xusinboy Bekchanov, the project looks promising :-)
feature request:
allow tab-order to be modified in the control's properties, most of the time the default tab-order of the order of control creation is OK, but there may be circumstances where you want a certain tab-order
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

srvaldez wrote:thank you Xusinboy Bekchanov, the project looks promising :-)
feature request:
allow tab-order to be modified in the control's properties, most of the time the default tab-order of the order of control creation is OK, but there may be circumstances where you want a certain tab-order
TabIndex added:
https://github.com/XusinboyBekchanov/Vi ... 6a95e82d91

https://github.com/XusinboyBekchanov/My ... c94c722314
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

@Xusinboy Bekchanov
thanks a million :-)
I built your latest MyFbFramework and your latest VisualFBEditor did a small test and everything works as expected :-)
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

@Xusinboy Bekchanov
I have another feature request: add support for text alignment in Text boxes :-)
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

srvaldez wrote:@Xusinboy Bekchanov
I have another feature request: add support for text alignment in Text boxes :-)
Added: Alignment property to controls Label, TextBox, CheckBox, RadioButton:
https://github.com/XusinboyBekchanov/My ... 1c308ab84e
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

@Xusinboy Bekchanov
thanks :-)
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

srvaldez wrote:@Xusinboy Bekchanov
thanks :-)
Thank you too for the suggestion for improvement.
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

changing the font size of a TextBox and command button shows in the designer form but when compiled it defaults to size 8
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

srvaldez wrote:changing the font size of a TextBox and command button shows in the designer form but when compiled it defaults to size 8
Fixed: Font size:
https://github.com/XusinboyBekchanov/My ... 59bc8809cf
srvaldez
Posts: 3612
Joined: Sep 25, 2005 21:54

Re: VisualFBEditor - IDE for FreeBasic

Post by srvaldez »

thank you , that was fast! :-)
aurelVZAB
Posts: 681
Joined: Jul 02, 2008 14:55
Contact:

Re: VisualFBEditor - IDE for FreeBasic

Post by aurelVZAB »

Hello
I have problem with compilation of this project
When i unziped zip from github into FB folder examples
then i get folder VisualFBeditor then
i go to folder src
open file VisualFBeditor.bas
I use CSed which work great for me all time before then i try to compile
and at start something missing

Code: Select all

'#########################################################
'#  Main.bi                                              #
'#  This file is part of VisualFBEditor                  #
'#  Authors: Xusinboy Bekchanov (bxusinboy@mail.ru)      #
'#           Liu XiaLin (LiuZiQi.HK@hotmail.com)         #
'#########################################################

#include once "mff/WStringList.bi"
#include once "mff/Dictionary.bi"
#include once "mff/Form.bi"
#include once "mff/Dialogs.bi"
#include once "mff/TreeView.bi"
#include once "mff/TreeListView.bi"
#include once "mff/ProgressBar.bi"
#include once "mff/TabControl.bi"
#include once "mff/ToolPalette.bi"
#include once "mff/TextBox.bi"
#include once "mff/StatusBar.bi" 'David Change
#include once "mff/IniFile.bi"
#ifndef __USE_GTK__
	#include once "mff/PageSetupDialog.bi"
	#include once "mff/PrintDialog.bi"
	#include once "mff/PrintPreviewDialog.bi"
	#include once "mff/Printer.bi"]
Heh ...there is no folder or subfolder called mff
may i ask you why missing ?
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

aurelVZAB wrote: Heh ...there is no folder or subfolder called mff
may i ask you why missing ?
mff folder here:
https://github.com/XusinboyBekchanov/MyFbFramework

When compiling, you need to specify the folder for the compiler:

Code: Select all

fbc VisualFBEditor.bas VisualFBEditor.rc -i "D:/Your Folder/MyFbFramework" 
aurelVZAB
Posts: 681
Joined: Jul 02, 2008 14:55
Contact:

Re: VisualFBEditor - IDE for FreeBasic

Post by aurelVZAB »

Ok
so this is one more download from github..right?
Can i put it into same folder where is VisualFBeditor
I dont want to have files all over places.
Xusinboy Bekchanov
Posts: 877
Joined: Jul 26, 2018 18:28

Re: VisualFBEditor - IDE for FreeBasic

Post by Xusinboy Bekchanov »

Actually, I made an instruction earlier in Readme.MD:

Code: Select all

REM Sample Windows 64 bit Build

REM CHANGE ACC. YOUR SETUP / PATHS

REM Change path to the VisualFBEditor source

c:

cd "C:\FreeBasic\Projects\VisualFBEditor-master\src"


REM A Copy of the MyFbFramework was also placed to

REM "C:\FreeBasic\Projects\VisualFBEditor-master\MyFbFramework"

REM the 64 bit FreeBasic compiler is located in

REM "C:\FreeBasic\X64\fbc.exe"

REM "Version 1.08.0 64 bit Windows build"

REM BUILD COMMAND

"C:\FreeBasic\X64\fbc.exe" "VisualFBEditor.bas" -x "../VisualFBEditor64.exe" "VisualFBEditor.rc" -i "C:\FreeBasic\Projects\VisualFBEditor-master\MyFbFramework"

"C:\FreeBasic\X64\fbc.exe" -b "..\MyFbFramework\mff\mff.bi" -dll -x "..\MyFbFramework\mff64.dll" "..\MyFbFramework\mff\mff.rc"
Last edited by Xusinboy Bekchanov on Jan 17, 2021 13:45, edited 1 time in total.
Post Reply