Search found 1567 matches: selected

Return to advanced search

SetMultiSelectCol() on line

... current row" action DeSelect_One_array(oBrw) MENUITEM "Deselect everything" action oBrw:SelectRow( 0 ) MENUITEM "Prints the selected lines" action PrintBrowse(oParent:cCaption,oBrw,oDbf) MENUITEM "Export the selected rows" action ExportToExcel(oBrw ) else // ...
by Silvio.Falconi
Sat Apr 13, 2024 8:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetMultiSelectCol() on line
Replies: 0
Views: 50

Re: A picture on top of the text

Sorry to jump in .... I could use it like this : https://www.maveco.be/fivewin/overlay.png A selected small image that position as a layover in a cell in the top right or top left position in order to show that these cells need extra care. This can be done with ...
by Marc Venken
Tue Mar 05, 2024 3:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A picture on top of the text
Replies: 3
Views: 199

Re: "Save As" dialog box

Thanks !
Is it possible to create a folder selection dialog with the condition that files are visible (files themselves cannot be selected) ?
by Natter
Fri Jan 26, 2024 1:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Save As" dialog box
Replies: 14
Views: 1828

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 recently, ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 721

Re: nYoffset and nXoffset

... I need to Know the parameters when the user select a printer, I think ..... many values are changed when the user prints because a printer is selected that returns certain values and changes the values entered into the test
by Silvio.Falconi
Mon Jan 15, 2024 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 819

Re: Insert an record on array

nageswaragunupudi wrote:
Code: Select all  Expand view
HB_AINS( oBrw:aArrayData, nPos, aRow, .T. )


nPos could be the number of record selected ?
by Silvio.Falconi
Fri Jan 12, 2024 4:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 823

Re: copy a row of xbrowse

... only when is seletected              ACTION ( aCopy := aclone(oBrw:aRow),;              oBrw:SetFocus()   ) For many rows selected Not run ok oBrw:aSelected give number or numbers not the row oBrw:aRow is as ::aArrayData[ ::nArrayAt ] you can make For n= 1 to Len( oBrw:aselected) ...
by Silvio.Falconi
Wed Dec 06, 2023 11:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

... handle multiple rows. Here is an approach to achieve this: 1. **Modify Copy Functionality**: Instead of copying a single row to `aCopy`, copy all selected rows. You can use a loop to go through the selected rows and add them to `aCopy`. 2. **Modify Paste Functionality**: When pasting, iterate ...
by Otto
Tue Dec 05, 2023 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

... xBrowse(aCopy) in your functions to see what you copy and msgInfo's. Best regards, Otto I not understood when I copy insert on acopy the row I selected ( all field) change acopy[1] with new codsep MENUITEM "Paste" WHEN acopy!=NIL ACTION ( ; oBrw:Lock(), ; aCopy[ 1 ] := codsep ,; aCopy[ ...
by Silvio.Falconi
Tue Dec 05, 2023 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

Silvio, You must search the selected and aadd( oBrw:aArrayData,aCopy ) each selected row. Then inserting: FOR I:= 1 to len(aCopy ) Regards, Otto Please try this test #include "fivewin.ch"static aCopystatic cItemFlds :="CodSep,Top,Left,Width,Height,desc,row,recno()" REQUEST ...
by Silvio.Falconi
Tue Dec 05, 2023 12:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

Silvio,

You must search the selected and
aadd( oBrw:aArrayData,aCopy )
each selected row.

Then inserting: FOR I:= 1 to len(aCopy )


Regards,
Otto
by Otto
Tue Dec 05, 2023 10:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

... the array and then save it in the dbf if I copy and paste a line even in the same xbrowse then I go to modify the copied line it also modifies the selected line while it shouldn't do so and then when I go to save it in the dbf it doesn't save the copied line and the selected one but only one (one ...
by Silvio.Falconi
Tue Dec 05, 2023 10:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: copy a row of xbrowse

...   oBrw:RefreshCurrent(), oBrw:SetFocus() )   ENDMENU   return oPop  this run only for ONE ROW I wish copy more rows only that selected
by Silvio.Falconi
Tue Dec 05, 2023 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5751

Re: Convert a print to Rtf or doc

Doing so, you get a Word document with images. Marco needs a Word document with text that can be selected.
by Enrico Maria Giordano
Thu Nov 30, 2023 8:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a print to Rtf or doc
Replies: 33
Views: 3424

Re: Calculate total pages

For TPrinter there is : * New: Method GetPages() on class TPrinter to get the From & To pages selected on the print dialog when the FROM USER clause is used. This method returns a two dimension array but also you can pass the nFrom and nTo variables by reference, for ...
by Marc Venken
Fri Nov 24, 2023 8:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5849
Next

Return to advanced search