掲示板システム
ホーム
アクセス解析
カテゴリ
ログアウト
WebBrowserにソフトキーボード機能を持たせたい! (ID:35104)
名前
ホームページ(ブログ、Twitterなど)のURL (省略可)
本文
よく見ると以下のアドレスで http://hiderin.air-nifty.com/delphi/webbrowser/index.html // 編集モード procedure TForm1.Button1Click(Sender: TObject); begin (WebBrowser1.Document as IHTMLDocument2).designMode := 'on'; end; // 閲覧モード procedure TForm1.Button2Click(Sender: TObject); begin (WebBrowser1.Document as IHTMLDocument2).designMode := 'off' end; // コピー procedure TForm1.Button3Click(Sender: TObject); begin (WebBrowser1.Document as IHTMLDocument2).execCommand('Copy', True, EmptyParam); end; // 貼り付け procedure TForm1.Button4Click(Sender: TObject); begin (WebBrowser1.Document as IHTMLDocument2).execCommand('Paste', False, EmptyParam); end; ..のような事が出来るようです。(試していません)
←解決時は質問者本人がここをチェックしてください。
戻る
掲示板システム
Copyright 2021 Takeshi Okamoto All Rights Reserved.