Search found 10 matches

by kkwan
Thu Jun 21, 2018 8:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to avoid [Can not create Dialog Box]
Replies: 5
Views: 983

How to avoid [Can not create Dialog Box]

If there are Get control, button, RichEdit in common dialog box, and then close and open dialog box after saving continuously (about 200 times) [Error dESCription: Can not create Dialog Box]
Where is the cause?
by kkwan
Tue May 15, 2018 6:26 am
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: We will contact you about MdiChild.
Replies: 3
Views: 2722

Re: We will contact you about MdiChild.

Thank you for your reply.
The point of the question is
When setting a window box to no style
If the dialog with child is resized, there is no glitter.

However, if you use NOSYSMENU or STYLE nOr (WS_CAPTION, WS_BORDER, WS_CLIPCHILDREN, WS_VISIBLE)
The first time the window box is loaded and resized ...
by kkwan
Wed May 09, 2018 8:02 am
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: We will contact you about MdiChild.
Replies: 3
Views: 2722

Re: We will contact you about MdiChild.

https://www.youtube.com/watch?v=QOxsP0J ... e=youtu.be


It is a program we are making now
This is how we want to make it.
In the mdichild window, the child dialog window moves around
The control in the dialog window is automatically resized when the window changes.
by kkwan
Tue May 08, 2018 12:13 pm
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: We will contact you about MdiChild.
Replies: 3
Views: 2722

We will contact you about MdiChild.

Define WinDow :: SubWin1 title "test" mdichild of oWnd sTyle;
nOr (WS_CLIPCHILDREN, WS_VISIBLE, 0,0,0,0,0,0,0,0)

If you run this window multiple times
Window's window event does not work.
BResize, bPainted, etc.


Define WinDow :: SubWin1 title "test" mdichild of oxwnd NOSYSMENU
This window ...
by kkwan
Tue May 08, 2018 8:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Do you know how to use iconv.dll?
Replies: 3
Views: 799

Re: Do you know how to use iconv.dll?

ANSI-> UTF8
UTF8-> ANSI

If you convert, you may notice that the undesired
We have resolved the following.
Thank you.

However, I would appreciate it if you support it in iconv.dll FWH.

cStr: = cStr + "#"
CSTR = AnsiToWide (CSTR)
CSTR = HB_TRANSLATE (CSTR "UTF16LE", "UTF8")
nPos: = at ("#", cStr ...
by kkwan
Tue May 08, 2018 5:54 am
Forum: FiveWin for Harbour/xHarbour
Topic: Do you know how to use iconv.dll?
Replies: 3
Views: 799

Re: Do you know how to use iconv.dll?

Thank you for your quick reply.
View sample and make it available in FWH
I tried coding but it was not what I wanted.
I'm sorry, but if you can support it right away in FWH
Thank you.
If not, I'll just give up.
I think it is not so important.
There are many ways to do this.
by kkwan
Mon May 07, 2018 8:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: Do you know how to use iconv.dll?
Replies: 3
Views: 799

Do you know how to use iconv.dll?

I have a question.

convert from ansi characters to UTF8
Converting from UTF8 to ANSI characters
Occasionally, unwanted broken characters stick behind.

example)
ansi-> utf8

cStr: = AnsiToWide (cStr)
cStr: = HB_TRANSLATE (cStr, "UTF16LE", "UTF8")

utf8-> ansi
cStr: = HB_TRANSLATE (cStr, "UTF8 ...
by kkwan
Tue Apr 24, 2018 10:29 am
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Unicode malfunction according to modal / nomodal format
Replies: 13
Views: 15826

Re: Unicode malfunction according to modal / nomodal format

Thank you for your quick reply.
The solution you provided was effective.
However, if you install various controls besides TGET Control
It will malfunction like before.
It seems to have avoided the bug with time difference.
It can be a useful tip for a very simple screen design.
Let's wait for more ...
by kkwan
Sat Apr 21, 2018 3:07 pm
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Unicode malfunction according to modal / nomodal format
Replies: 13
Views: 15826

Unicode malfunction according to modal / nomodal format

For Unicode and UTF8 use
In the modal / nomodal dialog, tGet and mget control malfunction.
It works fine regardless of richiedit.

In other words
Activate Dialog == No abnormality
Activate Dialog NoModal == malfunction

In the future, most of the source coding will be in the MDI window
Dialog Child ...