Search found 1235 matches: width

Return to advanced search

Re: error to show pdf on dialog

Karinha,

Interesting sample !

Is there a command that the pdf will be opened in full page layout in stead of full width

Maybe a command link ? or overview ?
by Marc Venken
Fri Apr 19, 2024 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: error to show pdf on dialog
Replies: 6
Views: 584

Re: colorize btnbmp with diagonal

... BITMAP .\..\bitmaps\32x32\exit.bmp*/// FIN / END  Regards, saludos. certainly darling, but I wanted it automatically, I didn't want to insert the width and height of each button, if in a window I have 80 buttons all with different sizes, how many lines of source do you think I should write? ciertamente ...
by Silvio.Falconi
Mon Apr 15, 2024 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: colorize btnbmp with diagonal
Replies: 9
Views: 240

Re: XBROWSE with "fullwidth" autocols

Number of columns
Code: Select all  Expand view
? Len( oBrw:aCols )


To fill the width of browse window
Code: Select all  Expand view
oBrw:nStretchCol := STRETCHCOL_WIDEST
by nageswaragunupudi
Thu Feb 29, 2024 12:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE with "fullwidth" autocols
Replies: 2
Views: 143

XBROWSE with "fullwidth" autocols

Dear friends, I am working with XBROWSE and I wonder - is it possible to make the cols adjust to the available width. This is my code...I use AUTOCOLS. So please also allow me a second question. Is there a way to know how many cols are present in the specific XBROWSE? Right now ...
by Ruth
Thu Feb 29, 2024 12:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE with "fullwidth" autocols
Replies: 2
Views: 143

Re: Create a Panel width a text

corrected cNewMessage:= DivideTestoInRighe(cMessage, 80) https://i.postimg.cc/NMtg33TL/rrr.png FUNCTION DivideTestoInRighe(cTesto, lunghezzaRiga)   LOCAL nLunghezzaTesto, nRighe, nInizio, cRiga, cRisultato   // Calcola la lunghezza totale del testo  &...
by Silvio.Falconi
Wed Feb 28, 2024 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

... make error ( of visualization) perhaps it need to explorerbar to activate /noActivate close/open button ? Another question when the text is big on width it can be bad https://i.postimg.cc/76y91hkb/tt.png Perhaps we need a function to divide the text inserted into rows ? cNewMessage:= ...
by Silvio.Falconi
Wed Feb 28, 2024 9:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, it seems me that 4th Parametern cAlign of FW_SsayText is missing so      nVAlign     := If( "T" $ cAlign, DT_TOP,  If( "B" $ cAlign, DT_BOTTOM, DT_VCENTER ) )      nHAlign     := iF( "L" $ cAlign, DT_LEFT, If( "R" $ cAlign, D...
by Jimmy
Mon Feb 26, 2024 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, As i told you i prefer use Say and not get i have use GET while i had Problem with FW_SayText() and (extra) PANEL :!: GET use MEMO READONLY NO SCROLL but you can use SAY or RTF too --- when Edit Item and copy / paste those 2 Lines, save 4 x Lines, it still display 2 Lines but using WORDW...
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, As i told you i prefer use Say and not get i have use GET while i had Problem with FW_SayText() and (extra) PANEL :!: GET use MEMO READONLY NO SCROLL but you can use SAY or RTF too --- when Edit Item and copy / paste those 2 Lines, save 4 x Lines, it still display 2 Lines but using WORDWR...
by Jimmy
Sat Feb 24, 2024 3:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, your last Sample still show the Problem using       oPanelText:bPainted = { | hDC | ;          FW_SayText( hDC, ;              alltrim( ( cMessage) ), ;              { 1 , 50,  nTextHeight, 300 },, oFonttext, RGB(255,165,0), nARGB(255,rgb...
by Silvio.Falconi
Sat Feb 24, 2024 11:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, your last Sample still show the Problem using       oPanelText:bPainted = { | hDC | ;          FW_SayText( hDC, ;              alltrim( ( cMessage) ), ;              { 1 , 50,  nTextHeight, 300 },, oFonttext, RGB(255,165,0), nARGB(255,rgb(...
by Jimmy
Sat Feb 24, 2024 5:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

function CalcTextHeight( hDC, cText, oFont, nWidth )   local oWnd, nHt   DEFAULT hDC := GetDC( 0 )   if HB_ISOBJECT( hDC )      oWnd     := hDC      hDC      := oWnd:GetDC()      DEFAULT oFont := oWnd:oFont, nWidth := oWnd:nWidth   else      DEFAULT nWidth := 800   e...
by Silvio.Falconi
Fri Feb 23, 2024 12:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

function CalcTextHeight( hDC, cText, oFont, nWidth )   local oWnd, nHt   DEFAULT hDC := GetDC( 0 )   if HB_ISOBJECT( hDC )      oWnd     := hDC      hDC      := oWnd:GetDC()      DEFAULT oFont := oWnd:oFont, nWidth := oWnd:nWidth   else      DEFAULT nWidth := 800   e...
by nageswaragunupudi
Fri Feb 23, 2024 3:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Create a Panel width a text

hi Silvio, i have try your Sample and got Problem using PANEL and Codeblock   oPanelText:bPainted = { | hDC | ;    FW_SayText( hDC, ;           alltrim( ( cMessage ) ), ;          { 10, 50, aDim[ 2 ] + 50, 300 },,oFonttext, RGB(255,165,0), nARGB(...
by Jimmy
Thu Feb 22, 2024 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3168

Re: Google Graph extra graphic ? (Navaro)

... working (but I have to read into the Webview information) Trying to make the background transparent <div id="chart_div" style="width: 400px; height: 120px;"><background-color="transparent;"></div> If the html is made and the pie is drawn. do I try ...
by Marc Venken
Tue Feb 20, 2024 10:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 2841
Next

Return to advanced search