Search found 980 matches: rows

Return to advanced search

Re: SetMultiSelectCol() on line

... _LREADONLY( 0 ) Called from: xbmulsel.prg => (b)MAIN( 38 ) Maybe I did not say it clear enough I would like the procedure to check whether xbrowse has/does not have :SetMultiSelectCol() if it does not have the :SetMultiSelectCol() the procedure must create the :SetMultiSelectCol() as the ...
by Silvio.Falconi
Tue Apr 23, 2024 6:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 225

SetMultiSelectCol() on line

I have an xbrowse created with an array without the :SetMultiSelectCol() and I have the ability to display a menupopup like this MENU oMenu POPUP if oBrw:IsSelectedRow() MENUITEM "Deselect the current row" action DeSelect_One_array(oBrw) ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 5
Views: 225

Re: EXCEL CREATE HYPERLINK

... it possible to scroll the worksheet so that when I go into a cell that it is positioned in the upper left corner of my window so I can see other rows. To understand it is a master detail relationship between header and rows of bills. Many thanks Marco
by MarcoBoschi
Tue Apr 02, 2024 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL CREATE HYPERLINK
Replies: 3
Views: 755

Re: Create a Panel width a 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:= DivideTestoInRighe(cMessage, 150) FRom ChatGpt but not run FUNCTION DivideTestoInRighe(cTesto, lunghezzaRiga)   LOCAL ...
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: 3229

Re: Creating table with Trichedit

... DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN CENTER ; // Center table horizontally on page FONTNUMBER 1 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 9 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text in normal cells aligned ...
by Silvio.Falconi
Mon Jan 29, 2024 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Creating table with Trichedit

... DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN CENTER ; // Center table horizontally on page FONTNUMBER 1 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 9 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text in normal cells aligned ...
by MMK
Mon Jan 29, 2024 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Creating table with Trichedit

... DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text in normal cells aligned ...
by Silvio.Falconi
Sun Jan 28, 2024 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Creating table with Trichedit

... DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text in normal cells aligned ...
by Silvio.Falconi
Sat Jan 27, 2024 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Creating table with Trichedit

... DEFINE NEWTABLE oRTF ; // Specify the RTF object ALIGN LEFT ; // Center table horizontally on page FONTNUMBER 2 ; // Use font #2 for the body rows FONTSIZE 10 ; // Use 10 Pt. font for the body rows CELLAPPEAR BOLD_OFF ; // Normal cells unbolded CELLHALIGN LEFT ; // Text in normal cells aligned ...
by MMK
Sat Jan 27, 2024 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Creating table with Trichedit

...   FClose(oFile)    ? "RTF file created:", cFileNameRETURN Nice job!! I wish insert a row ( with two column) before of the 4 rows you inserted and write some texts Where I can found command as insert picture,fonts, colors ? I 'm thinked Rtf file perhaps is more used and it ...
by Silvio.Falconi
Wed Jan 24, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Creating table with Trichedit

Using InsertTable( nRows, nCols )method of Trichedit
How insert data info on each cells?

For a sample I have an array aschema is 3 rows with 10 columns
How create a table on Rtf with this array ?
by Silvio.Falconi
Mon Jan 22, 2024 9:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1494

Re: Nages, 2 diferent Db's update

... oroCn:Insert( table, [aFieldNames], aValues, .T. )  // .T. indicates UPSERT Now, this insert/update happens with all the rows (selected by where clause). If this is a regular operation and we like to transfer from local to remote only those records inserted or modified ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 728

Insert an record on array

I have an array of 32 fields that I process with xbrowse. I need to insert a record between two rows the first field must be "codsep" field how can I do ? TO paste an record of oBrw:aArrayData I use an array aCopy where I save the row Copied ...
by Silvio.Falconi
Fri Jan 12, 2024 2:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 837

Re: Text on another line

Thanks, Rao, I got the idea!!! Yes, I can also use :SetColsAsRows( 3, 4 ). But I need to keep the glued column separate. So I did it through :bStrData. In this case, I got a gluing of 2 columns (separated by a CRLF),
but I could not show the rows in the cell in different colors/fonts :(
by Natter
Tue Dec 26, 2023 7:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Text on another line
Replies: 4
Views: 482

Text on another line

Hi,

An array is viewed in the xBrowse. The xBrowse cell is 2 rows high.
I need to show basic information + additional information in the cell (with a different font).
What I do with FW_SayTextHilite().
How do I make this additional information appear on another line?
by Natter
Mon Dec 25, 2023 8:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Text on another line
Replies: 4
Views: 482
Next

Return to advanced search