VisualFBEditor - IDE for FreeBasic
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Fixed: Save Untitled (with extension)
https://github.com/XusinboyBekchanov/Vi ... 42b0a7ea9c
Fixed: Save Project
https://github.com/XusinboyBekchanov/Vi ... 5a9a2666a6
Fixed: Type changing in SaveFileDialog:
https://github.com/XusinboyBekchanov/My ... 962eda6a9d
https://github.com/XusinboyBekchanov/Vi ... 42b0a7ea9c
Fixed: Save Project
https://github.com/XusinboyBekchanov/Vi ... 5a9a2666a6
Fixed: Type changing in SaveFileDialog:
https://github.com/XusinboyBekchanov/My ... 962eda6a9d
Re: VisualFBEditor - IDE for FreeBasic
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
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
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
TabIndex added: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
https://github.com/XusinboyBekchanov/Vi ... 6a95e82d91
https://github.com/XusinboyBekchanov/My ... c94c722314
Re: VisualFBEditor - IDE for FreeBasic
@Xusinboy Bekchanov
thanks a million :-)
I built your latest MyFbFramework and your latest VisualFBEditor did a small test and everything works as expected :-)
thanks a million :-)
I built your latest MyFbFramework and your latest VisualFBEditor did a small test and everything works as expected :-)
Re: VisualFBEditor - IDE for FreeBasic
@Xusinboy Bekchanov
I have another feature request: add support for text alignment in Text boxes :-)
I have another feature request: add support for text alignment in Text boxes :-)
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Added: Alignment property to controls Label, TextBox, CheckBox, RadioButton:srvaldez wrote:@Xusinboy Bekchanov
I have another feature request: add support for text alignment in Text boxes :-)
https://github.com/XusinboyBekchanov/My ... 1c308ab84e
Re: VisualFBEditor - IDE for FreeBasic
@Xusinboy Bekchanov
thanks :-)
thanks :-)
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Thank you too for the suggestion for improvement.srvaldez wrote:@Xusinboy Bekchanov
thanks :-)
Re: VisualFBEditor - IDE for FreeBasic
changing the font size of a TextBox and command button shows in the designer form but when compiled it defaults to size 8
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
Fixed: Font size: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
https://github.com/XusinboyBekchanov/My ... 59bc8809cf
Re: VisualFBEditor - IDE for FreeBasic
thank you , that was fast! :-)
Re: VisualFBEditor - IDE for FreeBasic
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
Heh ...there is no folder or subfolder called mff
may i ask you why missing ?
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"]
may i ask you why missing ?
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
mff folder here:aurelVZAB wrote: Heh ...there is no folder or subfolder called mff
may i ask you why missing ?
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"
Re: VisualFBEditor - IDE for FreeBasic
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.
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.
-
- Posts: 877
- Joined: Jul 26, 2018 18:28
Re: VisualFBEditor - IDE for FreeBasic
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.