Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/12/18 in all areas

  1. UniSession.AddJS(UniHTMLMemo1.JSName + '.insertAtCursor("'+ s +'")'); or UniSession.AddJS(UniHTMLMemo1.JSName + '.insertAtCursor('+ StrToJS(s) +')'); ?
    1 point
  2. 1 point
  3. Hi, Try: procedure TMainForm.UniButton1Click(Sender: TObject); var s: string; begin s := 'something'; UniSession.AddJS(UniHTMLMemo1.JSName + '.insertAtCursor("'+ s +'")'); // or - UniSession.AddJS(UniHTMLMemo1.JSName + '.insertAtCursor("'+ s +'" + " ")'); end; Best regards.
    1 point
×
×
  • Create New...