XusinboyBekchanov / VisualFBEditor

IDE for FreeBasic
Other
169 stars 39 forks source link

Open file control remains on the form editor after the control has been deleted from the form #510

Closed W98X closed 1 year ago

W98X commented 1 year ago
  1. Add an openfilecontrol to a form
  2. Delete theopenfilecontrol from the form
  3. The openfilecontrol remains on the form and cannot be deleted

vfbe-open file control not deleted

XusinboyBekchanov commented 1 year ago

Fixed: OpenFileControl deleting: https://github.com/XusinboyBekchanov/MyFbFramework/commit/4281ec57f03d68a22ddd3a86dbe691d7972a673c

W98X commented 1 year ago

I get an error when trying to compile this latest MFF:

D:\VisualFBeditor\Controls\MyFbFramework\mff>"D:\FreeBASIC-1.09.0-win32\fbc.exe" -b "mff.bi" "mff.rc" -v -dll -x "../mff32.dll"
FreeBASIC Compiler - Version 1.09.0 (2021-12-31), built for win32 (32bit)
Copyright (C) 2004-2021 The FreeBASIC development team.
standalone
target:       win32, 486, 32bit
backend:      gas
compiling:    mff.bi -o mff.asm (main module)
D:\VisualFBeditor\Controls\MyFbFramework\mff\OpenFileControl.bas(289) error 18: Element not defined, FFirstShowed
D:\VisualFBeditor\Controls\MyFbFramework\mff\OpenFileControl.bas(290) error 3: Expected End-of-Line, found '='
XusinboyBekchanov commented 1 year ago

Fixed: Compiling MyFbFramework: https://github.com/XusinboyBekchanov/MyFbFramework/commit/ddf816bfc2b9bb09563837a24cd12c27735b667a

One file remained unsent, it turns out.

W98X commented 1 year ago

It compiles OK now and the OpenFileControl can now be deleted from the form. Thanks.