Search found 406 matches: inserted

Return to advanced search

Re: xBrowse with UrlLink

... it seems strange to me that you too, like someone else in this forum, when I insert a specific topic, immediately a topic with the same subject is inserted or something similar related to my previous topic. I repeat, everyone has freedom of expression but I am starting to support a certain suspicion, ...
by Silvio.Falconi
Wed Feb 28, 2024 9:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse with UrlLink
Replies: 3
Views: 194

Re: Create a Panel width a text

... 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:= DivideTestoInRighe(cMessage, 150) FRom ChatGpt but not run FUNCTION DivideTestoInRighe(cTesto, lunghezzaRiga)  ...
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: 3186

Re: Create a Panel width a text

... 0, hDC )      endif   else      oWnd:ReleaseDC()   endifreturn nHt  1st param can be hDC or oWnd or even nil the text must be inserted inside the oPaneltext panel which in turn is inside the oPanel2 which acts as an external frame, as a shadow effect //create a shadow effect  ...
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: 3186

To Nages : Search on Xbrowse tree

... the normal and tree view works ok only I can only search in the normal view and not in the tree view to select normal and tree view I inserted a BTNBMP control with a popup menu this is the sample test #include 'fivewin.ch'#include 'xbrowse.ch'#include "report.ch"REQUEST ...
by Silvio.Falconi
Thu Feb 15, 2024 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages : Search on Xbrowse tree
Replies: 1
Views: 383

Re: Creating table with Trichedit

...   ? "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 can be opened ...
by Silvio.Falconi
Wed Jan 24, 2024 1:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1450

Re: Nages, 2 diferent Db's update

... 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, the process can be optimized if we have a timestamp fields which is updated with every insertion and modification. In ...
by nageswaragunupudi
Wed Jan 17, 2024 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nages, 2 diferent Db's update
Replies: 2
Views: 723

Re: Insert an record on array

Dear Silvio, Arguments aArray The array name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains ...
by Silvio.Falconi
Mon Jan 15, 2024 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 826

Re: Insert an record on array

Dear Silvio, Arguments aArray The array name into which the value xValue will be inserted. nPos Subscript position in aArray. Default: 1st position xValue Value to be inserted lAutoSize Boolean flag to increase or not the size of aArray. Default value: .F. https://harbour.github.io/doc/harbour.html#hb_ains ...
by Antonio Linares
Sun Jan 14, 2024 6:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Insert an record on array
Replies: 4
Views: 826

Re: Parameterization of xReport

Dear Mr. Rao,

Thank you for the kind words. I have now inserted the diagrams.

Best regards,
Otto

Image

Image
by Otto
Sat Jan 13, 2024 6:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 570

Re: Inserting a string with CRLF into a single-line TGet.

... Next, I want to paste the information from the clipboard into a one-line TGet. However, only the first part of the phrase (before CRLF) will be inserted. How can I solve this problem? I suggest this quick solution for your immediate use. You need to write it for each Get. Sample logic:   DEFINE ...
by nageswaragunupudi
Mon Dec 11, 2023 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 896

Inserting a string with CRLF into a single-line TGet.

... Next, I want to paste the information from the clipboard into a one-line TGet. However, only the first part of the phrase (before CRLF) will be inserted. How can I solve this problem?
by Natter
Mon Dec 11, 2023 11:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 896

Re: copy a row of xbrowse

I inserted the popup in the procedure I'm doing: it doesn't work, that is: I state I load the array from a dbf I manage 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 ...
by Silvio.Falconi
Tue Dec 05, 2023 10:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: copy a row of xbrowse
Replies: 36
Views: 5784

Re: To Nages: Record deleted but make error also

... one it assigns a number in position 32, where I added the "recno" field as it is done on yunus.prg If I add and delete, a number is not inserted So we arrived at this conclusion which seems to work AEval( oBrowse:aDeleted, { |a| IF(a[ 32 ] ==0, a[32] := len(oBrowse:aDeleted),nil) } ) ...
by Silvio.Falconi
Wed Nov 22, 2023 6:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Nages: Record deleted but make error also RESOLVED
Replies: 3
Views: 277

Re: Help splitting up a character address string

... library to execute the SQL statements. This will insert the address data into the SQL table. 7. Close the connection: Once all the data has been inserted, close the connection to the SQL database to free up resources. By following these steps, you should be able to convert the Excel worksheet ...
by frose
Wed Nov 15, 2023 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 602

Re: HBIDE - Will there be any further development?

... K_ALT_Q .and. nKey <= K_ALT_M         ::oMenu:ProcessKey( nKey )      endif     is inserted into hbide.prg, the Alt keys don't work. Can you test the executable, and see if Alt F works on your side? There is an updated version already ...
by FWExplorer
Fri Oct 20, 2023 11:48 pm
 
Forum: To do - WishList / Por hacer - Peticiones
Topic: HBIDE - Will there be any further development?
Replies: 18
Views: 12786
Next

Return to advanced search