Search found 1171 matches: runtime

Return to advanced search

Re: how to change the size of an xbrowse in runtime

Please seeing the picture https://i.postimg.cc/NFwR77x7/io.png if I select "age" I go to activate the age filters but I go to activate box number 3, the topmost one, how can I make it so that if the first box is not activated, the age box takes the coordinates of the first ...
by Silvio.Falconi
Sun May 05, 2024 4:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Hello friends, For anyone interested in solutions with mod_harbour or WebView2: There is a solution with mod_harbour for this issue. Here is the link: Feel free to check it out! https://forums.fivetechsupport.com/viewtopic.php?f=45&t=44481&p=269851&sid=47b4a676d7650c0bd41dd07071e78bcb#p...
by Silvio.Falconi
Sun May 05, 2024 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Hello friends, For anyone interested in solutions with mod_harbour or WebView2: There is a solution with mod_harbour for this issue. Here is the link: Feel free to check it out! https://forums.fivetechsupport.com/viewtopic.php?f=45&t=44481&p=269851&sid=47b4a676d7650c0bd41dd07071e78bcb#p2...
by Otto
Fri May 03, 2024 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Silvio, This is a humble suggestion ......   // @  8,oBox[1]:nLeft+120  CHECKBOX  aDat[ 1] VAR l01 Prompt axArray[ 1, 2 ] SIZE 90,  11 PIXEL OF oBox[1] ;   //       COLOR CLR_BLACK, Rgb(250,250,245) FONT oBold ;   //         ON CHANGE ( IIf(l01,(oBox[2]:Show(), obrw:nBottom:=100 ,oBrw:refresh(.f.) )...
by Cgallegoa
Fri May 03, 2024 4:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

l01:= axArray[ 1, 1 ]    @  8,oBox[1]:nLeft+120  CHECKBOX  aDat[ 1] VAR l01 Prompt axArray[ 1, 2 ] SIZE 90,  11 PIXEL OF oBox[1] ;          COLOR CLR_BLACK, Rgb(250,250,245) FONT oBold ;  &nb...
by Silvio.Falconi
Thu May 02, 2024 9:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

For
@ 40,10 XBROWSE oBrw SIZE -10,390 PIXEL OF oDlg ;


you need:
oBrw:nRightMargin += 40

oBrw:nHeight += 40
by Otto
Thu May 02, 2024 9:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

change l01:= axArray[ 1, 1 ]    @  8,oBox[1]:nLeft+120  CHECKBOX  aDat[ 1] VAR l01 Prompt axArray[ 1, 2 ] SIZE 90,  11 PIXEL OF oBox[1] ;          COLOR CLR_BLACK, Rgb(250,250,245) FONT oBold ;&nbs...
by Silvio.Falconi
Thu May 02, 2024 9:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Otto wrote:Static function changeBrw(oBrw,lmarried)
IF lmarried
oBrw:nBottomMargin -= 40
else
oBrw:nBottomMargin += 40
endif
oBrw:refresh()
return nil


use the test I published
by Silvio.Falconi
Thu May 02, 2024 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Static function changeBrw(oBrw,lmarried)
IF lmarried
oBrw:nBottomMargin -= 40
else
oBrw:nBottomMargin += 40
endif
oBrw:refresh()
return nil
by Otto
Thu May 02, 2024 9:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Please post the line where you create xbrowse? the sample need tslines.prg class #include 'fivewin.ch'#include 'xbrowse.ch'#include 'constant.ch' #define DLG_nColorDlg     RGB(245,245,235) #define DLG_nColortitle1  RGB(219,230,244) #define DLG_nColortitle2  RGB(207,221,239) ...
by Silvio.Falconi
Thu May 02, 2024 9:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

Please post the line where you create xbrowse?
by Otto
Thu May 02, 2024 9:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

a test

Image

I not Know How change the height of xBrowse
by Silvio.Falconi
Thu May 02, 2024 9:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

If you use negative values for size, you should use the following to change it:
oBrw:nBottomMargin -= 40
Regards,
Otto
by Otto
Thu May 02, 2024 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

I'm trying to raise the xbrowse but I don't understand how to do it, I tried both with nHeight and with NBottom

Image


I put the checkboxes in a panel under the browse
if I click on the first check I have to raise the xbrowse
by Silvio.Falconi
Thu May 02, 2024 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273

Re: how to change the size of an xbrowse in runtime

the xbrowse is in a dialog the initial size is @ 40,10 XBROWSE oBrw SIZE -10,-110 PIXEL OF oDlg ; DATASOURCE oList COLUMNS aCols ; AUTOSORT FONT oFont; NOBORDER CELL LINES if I click on a checkbox the procedure must change the height to the xbrowse example - 60 in another procedure I have already do...
by Silvio.Falconi
Thu May 02, 2024 7:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 273
Next

Return to advanced search