Search found 1253 matches

by Natter
Mon Apr 14, 2025 8:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: Copying controls
Replies: 4
Views: 256

Re: Copying controls

Maybe it's enough to do this ?

Code: Select all | Expand

oNew:=ocopy(oDlg_1:aControls[1])
aadd(oDlg_2:aControls, oNew)
oDlg_2:Refresh()
by Natter
Mon Apr 14, 2025 8:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: Copying controls
Replies: 4
Views: 256

Re: Copying controls

Yes, both dialogs are visible at the same time. And each will have its own (similar in structure) xBrowse. In this case SetParent is not suitable
by Natter
Mon Apr 14, 2025 7:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: Copying controls
Replies: 4
Views: 256

Copying controls

On the dialog "A" there is a control - xBrowser. In the process of work I need to copy it to the dialog "B" (ocopy())/.
How can I do this ?
by Natter
Sat Apr 12, 2025 11:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: msgbar item
Replies: 3
Views: 169

Re: msgbar item

I.e. it is impossible to hide/show msgbar item ? Only add/remove ?
by Natter
Sat Apr 12, 2025 9:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: msgbar item
Replies: 3
Views: 169

msgbar item

Hi,

How can I hide/show the msgbar item ? If I write like this

Code: Select all | Expand

oWnd:oMsgBar:aItems[1]:Hide()
, I get an error - "Message not found: TMSGITEM:HIDE"
by Natter
Mon Apr 07, 2025 12:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FW and Wine
Replies: 4
Views: 346

Re: FW and Wine

Thanks, Antonio !

Which Wine to install 32 or 64 ?
by Natter
Mon Apr 07, 2025 11:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: FW and Wine
Replies: 4
Views: 346

FW and Wine

Hi,

I have Linux Rosa on my laptop. I am trying to run FW application using Wine emulator. However, I get the message - "Error reading archive...". How can I solve this problem ?
by Natter
Thu Apr 03, 2025 11:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: Part of the text of a Word table cell
Replies: 2
Views: 234

Re: Part of the text of a Word table cell

It works, though !!! Thanks, Antonio !
by Natter
Thu Apr 03, 2025 10:43 am
Forum: FiveWin for Harbour/xHarbour
Topic: Part of the text of a Word table cell
Replies: 2
Views: 234

Part of the text of a Word table cell

How can I get part of the text of a Word table cell ?

There is an object
oTb:Item(1):Rows:Item(1):Cells:Item(1)

However, if I try to cut out a piece of cell text,
oTb:Item(1):Rows:Item(1):Cells:Item(1):Range(1, 100):Text
I get an error (Word.Application:ACTIVEDOCUMENT:TABLES:ITEM:ROWS:ITEM:CELLS ...
by Natter
Wed Feb 26, 2025 6:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Rectangle
Replies: 4
Views: 3601

Re: Rectangle

Thanks Rao, good solution !
by Natter
Wed Feb 26, 2025 12:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Rectangle
Replies: 4
Views: 3601

Re: Rectangle

Thanks, I'll give it a try !
by Natter
Wed Feb 26, 2025 8:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: Rectangle
Replies: 4
Views: 3601

Rectangle

Hi,

I need to draw a rectangle on a window with an outline of a certain color and thickness. How to do it ?
by Natter
Thu Feb 13, 2025 9:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Show, hide of the frame
Replies: 2
Views: 523

Re: Show, hide of the frame

I got it. Thank you, Antonio !
by Natter
Thu Feb 13, 2025 8:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Show, hide of the frame
Replies: 2
Views: 523

Show, hide of the frame

In the process I need to show, hide, change color and size of the frame of an existing window. Is it possible to do this ?