Topic: html code insert in MVD

html code insert in MVD example code

Re: html code insert in MVD

epancard723143 wrote:

html code insert in MVD example code

Excuse me, where do you want to insert HTML?

Визуальное программирование: блог и телеграм-канал.

Re: html code insert in MVD

yes

Re: html code insert in MVD

html form code insert in MVD example code

5 (edited by epancard723143 2025-03-27 10:47:15)

Re: html code insert in MVD

how to html code insert in mvd script any example

6 (edited by k245 2025-03-28 07:28:44)

Re: html code insert in MVD

HTML is a hypertext markup language. In fact, it is a text that can be displayed as hypertext or multimedia. MVD can display HTML markup in the TDBReachEdit component, and browsers can do the same.. What is HTML code? And where do you want to "insert" it using MVD? Reformulate your question so that it is clear what you want to get as a result?

Визуальное программирование: блог и телеграм-канал.

Re: html code insert in MVD

Here is an example of using HTML to highlight text.

procedure RichEdit_SetHTMLText(AEdit:TdbRichEdit; AText:string);
// load HTML into editor
var
   tmpFileName:string;
   tmpMemo: TdbMemo;
begin
   tmpFileName := GetTempFileName; // get temporary file name
   tmpMemo := TdbMemo.Create(nil); // create a component for writing a text file in UTF-8 format
   tmpMemo.Text := AText;
   tmpMemo.SaveToFileUTF8(tmpFileName ); // save file
   AEdit.Clear;
   AEdit.LoadHTML(tmpFileName); // upload file as HTML
   DeleteFile(tmpFileName); // delete temporary file
end;

https://k245.ru/wp-content/uploads/2022/08/izobrazhenie_2022-08-06_134056512-1024x663.png
https://k245.ru/en/mvdb-en/markup-highlighting.html
Link to download the project
https://k245.ru/en/software-en/is-en/de … guide.html

Визуальное программирование: блог и телеграм-канал.