Search found 43 matches: memofield

Return to advanced search

Re: Image in MEMO field

... xbrowse. Go to external source like a webpage and copy any image. Come back to xbrowse and press Ctrl+V on the cell. The image is copied to the memofield. Using the xbrimag1.prg itself, you can copy images from web or other sources and press ctrl+V to paste the image in the memofield.
by nageswaragunupudi
Tue May 30, 2023 7:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Image in MEMO field
Replies: 1
Views: 175

Re: Memoedit to HTML by API connection

Antonio, I fill a string with keys needed by the API. Once I have filled the str the upload is done. The problem I seem to have is that insite the memofield there a chars (codes) like CRLF, ENTER, and more format items. When I leave them out the upload is ok. When I include the field and I think ...
by Marc Venken
Tue May 23, 2023 1:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memoedit to HTML by API connection
Replies: 2
Views: 255

Re: Display thumbnails of pdfs

Mr. Rao, Data = memofield that contains some basic formatting codes for html screen : (not more than 10) <p><strong><u>Zeefdruk : </u></strong></p> <p>Een aantrekkelijk geprijsde druktechniek ...
by Marc Venken
Mon Nov 21, 2022 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2271

Printing RTF 22.03

... field. Also, because the nRow is updated with each line, we know where to start printing the next section after the information contained in the memofield. Using the new implementation, I find the following issues: 1) You have used a defined dimensions sample. This is not the same as the presenting ...
by TimStone
Mon Apr 11, 2022 9:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing RTF 22.03
Replies: 6
Views: 573

Re: Save JSON Signature string in Memo for printing

Save the value in the memofield, without the starting and ending Quotes.
At the time of printing:
Code: Select all  Expand view

cImage  := ( cAlias )->MEMO
cImage  := HB_BASE64DECODE( cImage )
@ r, c PRINT TO oPrn IMAGE cImage ............
 
by nageswaragunupudi
Thu Mar 31, 2022 5:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Save JSON Signature string in Memo for printing
Replies: 5
Views: 369

Re: RTF from Variable

Antonio, 1) Using the save puts the text into the memofield with the formatting commands. However, when I retrieve that text the next time, it is NOT in RTF format. It shows all the formatting commands. I have reviewed this thread about a dozen times ...
by TimStone
Thu Dec 09, 2021 9:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF from Variable
Replies: 40
Views: 4245

Re: RTF from Variable

... point me to a reference for printing RTF5 text using the FWH printer class. Here is an example of what I would replace. It is text, saved from a memofield, that holds "disclaimers".   FOR lx := 1 TO MLCount( oEndText:tagtext, 120,, .T. )      WOPAGEHEAD( ...
by TimStone
Fri Dec 03, 2021 5:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF from Variable
Replies: 40
Views: 4245

Re: Spell CHecker

I reviewed those but they all seem to go back to the same option which is to create a document in Word. I add text to a memofield, press a spell check button, and the SDK checks the contents and allows for corrections. Having to go to Word intruduces a whole new layer of difficulty, ...
by TimStone
Fri Sep 03, 2021 11:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spell CHecker
Replies: 15
Views: 1991

CRUD and viewer

Hello friends, I use Tinymce HTML editor to input and edit the textarea field. Data is stored into memofield of a DBF file. Now I made a little program to view the DATA. https://mybergland.com/fwforum/viewmemofield.jpg Best regards, Otto https://mybergland.com/fwforum/crudviewer.gif
by Otto
Thu Jul 22, 2021 8:00 am
 
Forum: mod_harbour
Topic: CRUD and viewer
Replies: 0
Views: 218

Re: Company web pagewith mod harbour

... content from the DBF file Controller cPage returns the selected page from the request mypage.com/?page=99999 HTML which is stored in the database memofield is shown in an HTML DIV Container We use LOCATE as we do not use indexing. Datebases for a web page usually do not have many records. So, ...
by Otto
Mon Jul 12, 2021 6:46 am
 
Forum: mod_harbour
Topic: Company web pagewith mod harbour
Replies: 5
Views: 926

Re: Imágenes en una DBF

You can store any data in a memofield: FIELD->MEMOFIELDNAME := MEMOREAD( <anyfile> )  When reading, how do you plan to show pdf, docx files, etc? Hola Ing. Mr Rao Nages como esta, espero que bien!, esa es una muy buena ...
by ACC69
Wed Feb 17, 2021 2:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imágenes en una DBF
Replies: 24
Views: 1845

Re: Imágenes en una DBF

You can store any data in a memofield:
Code: Select all  Expand view

FIELD->MEMOFIELDNAME := MEMOREAD( <anyfile> )
 


When reading, how do you plan to show pdf, docx files, etc?
by nageswaragunupudi
Tue Feb 16, 2021 8:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imágenes en una DBF
Replies: 24
Views: 1845

Re: An advice needed to save same variables and its value to mem

Saving/Restoring variables and values to/from Memo Field of DBF This sample saves the variable names and values to memofield of dbf and restores ane initiates the variables. The functionality and behavior are identical to the previous sample. #include "fivewin.ch"REQUEST ...
by nageswaragunupudi
Wed Dec 30, 2020 2:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: An advice needed to save same variables and its value to mem
Replies: 7
Views: 848

Re: How to highlight a defined word in memofields ?

... like the links Richedit includes fixed defines for hightlighting If You test the forum-import-tool, richedit is working fine and shows the memofield ( still textcolouring of defined keywords is missing ) http://www.pflegeplus.com/IMAGES/Forum79.jpg regards Uwe :?:
by ukoenig
Mon Mar 19, 2018 2:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit how to highlight a defined word in memofields ?
Replies: 36
Views: 8291

Re: A sample to print with REPrintBox5 a memo on two pages ?

Cristobal ,

thank You very much.
With these changes it looks much better now :shock:
It will be next on my todolist.
I would like to add a button to show the sample from the memofield
in fullscreen-mode with a editor.
Just using wordpad or do You have a better idea ?

regards
Uwe :D
by ukoenig
Sun Feb 25, 2018 9:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: A sample to print with REPrintBox5 a memo on two pages ?
Replies: 28
Views: 4652
Next

Return to advanced search