Search found 53 matches

by bosibila
Sat Feb 20, 2021 12:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TGet class difference FWH11.08 and 20.04 help (Solved) ...
Replies: 3
Views: 5292

TGet class difference FWH11.08 and 20.04 help (Solved) ...

Hello, I need some help with TGet class. A few month ago I start to upgrade my software from version FWH11.08 to 20.07 and saw differences in TGet functionality. In old version I get variable name with "oget1:oGet:Name" but in new FWH same code return name of get object. How to retrieve va...
by bosibila
Mon Nov 09, 2020 7:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FW_BarCodeBmp() / FW_SaveImage() help please [Solved]
Replies: 3
Views: 623

Re: FW_BarCodeBmp() / FW_SaveImage() help please [Solved]

I found solution from Mr. Nages, works great. Here is working example without black border / background: #include "fivewin.ch" REQUEST FWZEBRA  // Important function Main()    local hBmp,cText            cText:="https://ancdefg.hij.hr/rn?ilz=7fc0d4da335dedcf569a4e365fc8cf62&datv=2...
by bosibila
Mon Nov 09, 2020 1:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FW_BarCodeBmp() / FW_SaveImage() help please [Solved]
Replies: 3
Views: 623

Re: FW_BarCodeBmp() / FW_SaveImage() help please ...

Thanks Silvio, but I may not have described the problem in good way. My problem is not the draw QRcode on screen but the save to PNG/JPG file. After you compile and start my example you can open with some external picture viewer "test1.png" and "test2.png" and see border on QRcod...
by bosibila
Mon Nov 09, 2020 11:45 am
Forum: FiveWin for Harbour/xHarbour
Topic: FW_BarCodeBmp() / FW_SaveImage() help please [Solved]
Replies: 3
Views: 623

FW_BarCodeBmp() / FW_SaveImage() help please [Solved]

Hello to all members, I try to create QRcode with function FW_BarCodeBmp() and save it to JPG or PNG file but saved picture has black border around QRcode. Is there any way to disable border? I modified "\fwh\samples\QRcode.prg" to "QRcode1.prg" to make simple example of my probl...
by bosibila
Mon Jun 15, 2020 5:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Dolphin to FW MySql/Maria upgrade (Solved) ...
Replies: 6
Views: 851

Re: Dolphin to FW MySql/Maria upgrade (Solved)...

Thanks mr. Rao,
your solution is acceptable to me. Tested, works OK ...
by bosibila
Mon Jun 15, 2020 2:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Dolphin to FW MySql/Maria upgrade (Solved) ...
Replies: 6
Views: 851

Dolphin to FW MySql/Maria upgrade (Solved) ...

Hello, I am finishing upgrade from tDolphin to FW MySql/Maria and have one question. Is it some methods to replace this tDolphin code to FW MySql/Maria? oQry := oServer:Query( "CHECK TABLE customer" ) ? oQry:lastrec(), oQry:msg_type, oQry:msg_text oQry:end()   This code code produce error:...
by bosibila
Mon Jun 08, 2020 8:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 2004 update kills Acro activex functionality (solved)
Replies: 9
Views: 972

Re: Win10 2004 update kills some Acro activex functionality ...

Yesterday I found solution:
Acrobat Reader -> Edit -> Preferences -> Security (Enhanced) -> Enable Protected Mode at startup (uncheck).
by bosibila
Thu Jun 04, 2020 10:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 2004 update kills Acro activex functionality (solved)
Replies: 9
Views: 972

Re: Win10 2004 update kills some Acro activex functionality ...

Thanks guys, unfortunately I'm at the beginning again. I thought upgrading to the new version would solve the problem.
by bosibila
Thu Jun 04, 2020 8:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 2004 update kills Acro activex functionality (solved)
Replies: 9
Views: 972

Re: Win10 2004 update kills some Acro activex functionality ...

Thanks mr. Navarro and mr. Enrico,
can you send me your version of Fivewin, compiler and Acrobat reader?
by bosibila
Wed Jun 03, 2020 8:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Win10 2004 update kills Acro activex functionality (solved)
Replies: 9
Views: 972

Win10 2004 update kills Acro activex functionality (solved)

Hello everybody, I'm asking for help with this bug. Does anyone has experienced shutting down of some Acrobat activex functions (oActivex:Do("PrintWithDialog") and oActivex:Do("Print"))? After Win10 2004 update those two functions are disabled. Maybe is fault in my old FWH versio...
by bosibila
Tue Jan 14, 2020 6:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: Convert Strings to and from UTF8 byte arrays ...
Replies: 5
Views: 684

Re: Convert Strings to and from UTF8 byte arrays (solved) ...

Java method getbytes returns aray of character codes from string („ABCD“ -> {65,66,67,68}).
I tried to rewrite several pages of code without previous knowledge of Java, but it was much simpler writing this part of code in FiveWin.
by bosibila
Wed Jan 08, 2020 8:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Convert Strings to and from UTF8 byte arrays ...
Replies: 5
Views: 684

Re: Convert Strings to and from UTF8 byte arrays ...

Thanks João, but I think it is not applicable to my example. It is not charset convert.

When I send string to Java method 'getbytes' with this charactes:
cStr:="POST/eservice//batch/json/echoMyUserNamePass1234?"

Result is: "[B@1db9742" // UTF8 byte array
by bosibila
Wed Jan 08, 2020 7:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Convert Strings to and from UTF8 byte arrays ...
Replies: 5
Views: 684

Convert Strings to and from UTF8 byte arrays ...

Hello to all members, is there any way to convert this Java code to FWH (getBytes method): * * * protected static byte[] getTest(String httpMethod, String methodUri, String username, String password) { String str = httpMethod + "\n" + methodUri + "\n" + username + "\n" ...