XusinboyBekchanov / VisualFBEditor

IDE for FreeBasic
Other
176 stars 39 forks source link

Forms which are really fomrs should get other icon. #55

Closed rexxitall closed 3 years ago

rexxitall commented 4 years ago

Its very hard to open the form in the GUI editor cause you do not know if its named right . At the moment there is also no logic to detect source which can be edited with the dialog designer or not. I try to change the menu structure a bit and was looking inside the ide if there is some kind of menu editor. Did not found anything and get confused cause there was files which starts with "frm" but just has had code and nothing to edit in the dialog GUI editor... Such files would be in VBA opened inside the GUI editor instead inside the code editor first.

XusinboyBekchanov commented 4 years ago

Added frm extension to Form module: https://github.com/XusinboyBekchanov/VisualFBEditor/commit/a6af9ebfb911c019b332e06e6de5f853ad34496b

rexxitall commented 4 years ago

no it doesnt sove it :) image See the difference :)

XusinboyBekchanov commented 4 years ago

Here it is. image

What difference do you say?

rexxitall commented 4 years ago

I can see alredy it in the treeview what i will get when i open it :) At least in stonehenge old VBA. They use two sort of icon :)

XusinboyBekchanov commented 3 years ago

Fixed: Icon in the Tab pages: https://github.com/XusinboyBekchanov/VisualFBEditor/commit/a87cea368f98967fca4ec2a929e2828e69e6f397

DavidIceBird commented 2 years ago

Hi, I am so happy the progress of project VisualFBEditor.

  1. We can not change the background color and forecolor also

  2. I did some change in Function ProcessMessage of Control.bas. without success.

@.***

从 Windows 版邮件https://go.microsoft.com/fwlink/?LinkId=550986发送

发件人: Xusinboy @.> 发送时间: 2021年9月18日 8:55 收件人: @.> 抄送: @.***> 主题: Re: [XusinboyBekchanov/VisualFBEditor] Forms which are really fomrs should get other icon. (#55)

Closed #55https://github.com/XusinboyBekchanov/VisualFBEditor/issues/55.

― You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/XusinboyBekchanov/VisualFBEditor/issues/55#event-5322526385, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AGA22NOR4UAMNBTY7PXN2G3UCQSV5ANCNFSM4ONLXK3A. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

XusinboyBekchanov commented 2 years ago

What control do you want to change the color? It would be nice if you open a new issue.

DavidIceBird commented 2 years ago

Hi,

  1. I am so happy we can make Android APP now. Could you please tell me how to build Android APP or where could I got the FBC compiler?

  2. Yes. I did some change to fix bugs and make progress and will submits later.

  3. The forecolor could not change for controls like the picture showing. CommandButtom, ComboxEdit

Liu Xialin

发件人: Liu @.> 发送时间: 2021年11月23日 13:46 收件人: @.> 主题: Bugs Report: can not change the backcolor and forecolor for some control

Hi, I am so happy the progress of project VisualFBEditor.

  1. We can not change the background color and forecolor also

  2. I did some change in Function ProcessMessage of Control.bas. without success.

@.***

从 Windows 版邮件https://go.microsoft.com/fwlink/?LinkId=550986发送

发件人: Xusinboy @.> 发送时间: 2021年9月18日 8:55 收件人: @.> 抄送: @.***> 主题: Re: [XusinboyBekchanov/VisualFBEditor] Forms which are really fomrs should get other icon. (#55)

Closed #55https://github.com/XusinboyBekchanov/VisualFBEditor/issues/55.

― You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/XusinboyBekchanov/VisualFBEditor/issues/55#event-5322526385, or unsubscribehttps://github.com/notifications/unsubscribe-auth/AGA22NOR4UAMNBTY7PXN2G3UCQSV5ANCNFSM4ONLXK3A. Triage notifications on the go with GitHub Mobile for iOShttps://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Androidhttps://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

XusinboyBekchanov commented 2 years ago
  1. The forecolor could not change for controls like the picture showing. CommandButtom, ComboxEdit

To do this, you yourself must draw using the BS_OWNERDRAW (for CommandButton) and CBS_OWNERDRAWFIXED (for ComboBoxEdit and ComboBoxEx) styles.

XusinboyBekchanov commented 2 years ago
  1. I am so happy we can make Android APP now. Could you please tell me how to build Android APP or where could I got the FBC compiler?

The FreeBasic compiler is located here: https://github.com/XusinboyBekchanov/fbc/tree/android

Some information here: https://rpg.hamsterrepublic.com/ohrrpgce/Compiling_for_Android

1) This command installs fbc to the specified directory: /install/path: make prefix=/install/path compiler install-compiler install-includes -j4

2) This commands installs rtlibs for different platforms to the specified directory: /install/path: make prefix=/install/path TARGET=i686-linux-android SYSROOT=/path/to/android-ndk-r12b/platforms/android-9/arch-x86 rtlib install-rtlib -j4 make prefix=/install/path TARGET=arm-linux-androideabi SYSROOT=/path/to/android-ndk-r12b/platforms/android-9/arch-arm rtlib install-rtlib -j4 ...

To compile for these targets, you must first include the platform paths in your environment variables: \path\to\android-ndk-r12b\toolchains\x86-4.9\prebuilt\windows\bin \path\to\android-ndk-r12b\toolchains\arm-linux-androideabi-4.9\prebuilt\windows\bin ...