Search found 663 matches

by Gale FORd
Mon Jan 04, 2021 8:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange issue: Excel
Replies: 6
Views: 2709

Re: Strange issue: Excel

Maybe try making Excel visible to see if it has problems.

// Create the object
oExcel := ExcelObj( )

oExcel:Visible := .t.

oExcel:WorkBooks:Add( )
oAS := oExcel:ActiveSheet( )

oAS:Cells:Font:Name := "Arial"
oAS:Cells:Font:Size := 12
by Gale FORd
Mon Dec 23, 2019 8:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Old DOS to new Windows = Conversion thoughts
Replies: 15
Views: 2922

Re: Old DOS to new Windows = Conversion thoughts

I have several real old programs that were converted to (x)Harbour/XHB Add this to compile/link [C:\xHB\Samples\GT_wvg.prg] Link in [C:\xHB\Lib\WVG.lib] so you can use mouse and graphic fonts. Then I add this to emulate dos screen with mouse.      SET EVENTMASK TO INKEY_ALL    Wvt_SetCodePage(511)  ...
by Gale FORd
Wed Feb 14, 2018 10:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Working with barcode
Replies: 9
Views: 1968

Re: Working with barcode

Maybe add oBC1:oJump := oBC1 to valid     REDEFINE GET oBC1 VAR cBarCode  ID 200 OF oBCdlg1 UPDATE ;         VALID ( AADD( aBrowseCodes, cBarCode),;         oLbc1:update(),;         cBarCode := SPACE(30),;         oBCdlg1:update(), ;         oBC1:oJump := oBC1,;  // This might work here         .t.)...
by Gale FORd
Wed Jan 03, 2018 9:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: SCAN barcode within an application
Replies: 1
Views: 776

Re: SCAN barcode within an application

I have done it with built in camera. Saved picture(s) to jpg files. Then used eztwain functions to open file and read barcode (3of9 built in). If barcode in other formats would need 3rd party barcode engine that can be bridged. The version of Eztwain i use only requires dll files. No installation of...
by Gale FORd
Thu Oct 12, 2017 7:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: scroll buttons tablet win10
Replies: 5
Views: 1345

Re: scroll buttons tablet win10

What about using Tabs/Folder?
Each tab could hold so many tables/buttons.
by Gale FORd
Tue Sep 19, 2017 10:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Re: Problem with Escape key and dialog on MDI child

I have no problem keeping dialog from closing.
I was just trying to incorporate the escape key and fix some bugs that crop up as a result.

I guess there is no way to make MDI child with dialog work reliably with escape key.
Oh well.
by Gale FORd
Tue Sep 19, 2017 9:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Re: Problem with Escape key and dialog on MDI child

Is there something about changing the size of the dialog you think will fix the escape key problem?
You keep referring to setsize() as the fix but I don't see where that relates to my problem, unless i am missing something.
by Gale FORd
Tue Sep 19, 2017 9:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Re: Problem with Escape key and dialog on MDI child

Sure but you cannot use escape key to close window.
I was just hoping that there was a fix for the escape key problem.
by Gale FORd
Tue Sep 19, 2017 6:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Re: Problem with Escape key and dialog on MDI child

That did not work at all. In the sample testmdi4.prg there was code after the activate dialog that sizes the window to match the dialog. Still the escape problem persists. I have included the full modified testmdi4.prg You will need the testmdi4.rc from the samples folder to run. If you press the es...
by Gale FORd
Tue Sep 19, 2017 6:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Re: Problem with Escape key and dialog on MDI child

i will try that but how does that relate to problem pressing escape key?
by Gale FORd
Tue Sep 19, 2017 3:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Escape key and dialog on MDI child
Replies: 8
Views: 2128

Problem with Escape key and dialog on MDI child

I am having trouble fixing a problem when a user presses escape key on a MDI child window with dialog. Either the dialog box closes and leaves and empty MDI child or I have problems with valid or disappearing menu. I went back to basics and looked at sample testmdi4.prg I found another reference in ...
by Gale FORd
Fri Sep 15, 2017 4:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: CONGRATULATIONS TO US PROGRAMMERS
Replies: 5
Views: 1323

Re: CONGRATULATIONS TO US PROGRAMMERS

How many programmers does it take to change a light bulb?
.
.
.
.
.
None, that is a hardware problem.

Yeah to us.
by Gale FORd
Tue Sep 05, 2017 7:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Cell Edit
Replies: 8
Views: 1846

Re: xBrowse Cell Edit

I started another conversation and received similar solution.
Thanks for your follow up. Appreciated as always.
by Gale FORd
Thu Aug 31, 2017 1:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Invoice software
Replies: 14
Views: 2989

Re: Invoice software

What about this one.

https://www.tapatalk.com/topic/52609-fi ... e-included

I have not downloaded it but you might want to look at it.
by Gale FORd
Thu Aug 24, 2017 2:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to make memo edit in dialog automatic selectnone?
Replies: 5
Views: 1235

Re: How to make memo edit in dialog automatic selectnone?

Thanks,
This line was enough for my purposes.
oGet1:bGotFocus = { || oGet1:SetSel( 0, 0 ) }