Topic: html code insert in MVD
html code insert in MVD example code
My Visual Database → General → html code insert in MVD
html code insert in MVD example code
html code insert in MVD example code
Excuse me, where do you want to insert HTML?
yes
html form code insert in MVD example code
how to html code insert in mvd script any example
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?
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/en/mvdb-en/markup-highlighting.html
Link to download the project
https://k245.ru/en/software-en/is-en/de … guide.html
My Visual Database → General → html code insert in MVD
Powered by PunBB, supported by Informer Technologies, Inc.
Theme Hydrogen by Kushi