PaulSquires / WinFBE

FreeBASIC Editor and Visual Designer for Windows
https://www.planetsquires.com
GNU General Public License v3.0
155 stars 39 forks source link

Chinese character support #43

Closed ox000008 closed 1 year ago

ox000008 commented 1 year ago

The editor can not support Chinese character.

PaulSquires commented 1 year ago

By default, new files are opened using "ANSI" mode. You will need to switch the file to either "UTF-8 (BOM)" or "UTF-16 (BOM". You do that by clicking on the area in the status bar (located in the bottom right of the editor) and then select the file format.

ox000008 commented 1 year ago

Hi Paul,

Thank you very much for your help, but there are still some issue, when I 'Compile and Run' or 'Quick Run', the result is like below. Do you know why, and can I fix it.

Best wishes!

Quick run.

---- Replied Message ---- From Paul @.>Date 02/13/2023 19:23 To @.>Cc @.>@.>Subject Re: [PaulSquires/WinFBE] Chinese character support (Issue #43) By default, new files are opened using "ANSI" mode. You will need to switch the file to either "UTF-8 (BOM)" or "UTF-16 (BOM". You do that by clicking on the area in the status bar (located in the bottom right of the editor) and then select the file format. — Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

PaulSquires commented 1 year ago

Hi, did you intend to post a screenshot or a log output? All I see in your message is the result is "Quick run." Also, are you using version 3.0.8 and the WinFBE_Suite that includes the FB compiler?

ox000008 commented 1 year ago

Yes, I usd version 3.08 and send the screenshot. Can you see the attached this time?

---- Replied Message ---- | From | Paul @.> | | Date | 02/14/2023 20:01 | | To | @.> | | Cc | @.>@.> | | Subject | Re: [PaulSquires/WinFBE] Chinese character support (Issue #43) |

Hi, did you intend to post a screenshot or a log output? All I see in your message is the result is "Quick run." Also, are you using version 3.0.8 and the WinFBE_Suite that includes the FB compiler?

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

PaulSquires commented 1 year ago

Sorry. I can not . https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/attaching-files

Maybe you could post here a small snippet of your Chinese code and I will try to run it on my machine to see what error messages are generated.

ox000008 commented 1 year ago

OK, thanks. I will post it tomorrow morning.

Have a nice day!

---- Replied Message ---- | From | Paul @.> | | Date | 02/14/2023 20:14 | | To | @.> | | Cc | @.>@.> | | Subject | Re: [PaulSquires/WinFBE] Chinese character support (Issue #43) |

Sorry. I can not . https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/attaching-files

Maybe you could post here a small snippet of your Chinese code and I will try to run it on my machine to see what error messages are generated.

— Reply to this email directly, view it on GitHub, or unsubscribe. You are receiving this because you authored the thread.Message ID: @.***>

ox000008 commented 1 year ago

Here are the snapshots. Previously I have replied on the email, so the attached pictures was missing. Quick Run Quick Run

Compile and Run Compile and Run

I have an idea that Can WinFBE have the function of "Open Declaration" like in the "Eclipse IDE" Open Declaration

PaulSquires commented 1 year ago

Hi, thank you for the additional details. I have found an error in the "Quick Run" code that would cause display errors. Because I do not have a Chinese Windows version, I used the following source code to test:

I have also uploaded new EXE's for you to test. Simply replace your existing WinFBE EXE's with the ones in the zip archive. https://www.planetsquires.com/files/chinese_quickrun_test.zip Please let me know if the problem is fixed.

include "Afx/AfxWin.inc"

' Comment the following line to enable/disable the ' Chinese code page for console output. The Print ' statement to the console window will look differently ' depending on whether the correct code page is set. SetConsoleOutputCP(936)

' Using WinFBX's dynamic CWSTR class dim as CWSTR text1 text1 = "吉伊杰杰勒 吉勒吾 诶艾伊 儿勒屁" print text1

' Using FreeBasic's built in wstring dim text2 as wstring * 256 text2 = "吉伊杰杰勒 吉勒吾 诶艾伊 儿勒屁" print text2

' These calls to the Windows messagebox function should ' correctly display the Chinese text regardless of what ' console code page is set. AfxMsg( text1 ) AfxMsg( text2 )

ox000008 commented 1 year ago

Hi Paul,

There is a new issue now. When I run the compiled "hello.exe", there is no output window display, but the process is running. image

PaulSquires commented 1 year ago

From your screenshot it looks like you compiled the EXE for "Win64 GUI (Release)". You should have compiled it for "Console" rather than "GUI". Make the change and see if you continue to have a zombie process.

ox000008 commented 1 year ago

yes, I make that mistake, Now I run the hello.exe and the Chinese characters have overlaps. image

ox000008 commented 1 year ago

And the Quick Run issue has been fixed.

PaulSquires commented 1 year ago

Hi, that is most likely due to the font that the console uses rather than anything related to WinFBE. Try changing to a different default font for your console and see if that fixes the display issue.

Thanks for reporting back that the Quick Run issue is fixed! That's great news.

ox000008 commented 1 year ago

Hi Paul,

I did not find how to change the font or other configuration to fix the overlaps. Instead I can add a space between each character to avoid that issue. Thanks for help.