Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7518307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T01:43:56+00:00 2026-05-30T01:43:56+00:00

I am trying to post data to bing with this code function PostExample: string;

  • 0

I am trying to post data to bing with this code

function PostExample: string;
var
  lHTTP: TIdHTTP;
  lParamList: TStringList;
begin
  lParamList := TStringList.Create;
  lParamList.Add('q=test');

  lHTTP := TIdHTTP.Create(nil);
  try
    Result := lHTTP.Post('http://www.bing.com/', lParamList);
  finally

    FreeAndNil(lHTTP);
    FreeAndNil(lParamList);

  end;
end;

And then, how can I get the result to the TWebBrowser and display it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T01:43:57+00:00Added an answer on May 30, 2026 at 1:43 am

    Try LoadDocFromString:

    procedure LoadBlankDoc(ABrowser: TWebBrowser);
    begin
      ABrowser.Navigate('about:blank');
      while ABrowser.ReadyState <> READYSTATE_COMPLETE do
      begin
        Application.ProcessMessages;
        Sleep(0);
      end;
    end;
    
    procedure CheckDocReady(ABrowser: TWebBrowser);
    begin
      if not Assigned(ABrowser.Document) then
        LoadBlankDoc(ABrowser);
    end;
    
    procedure LoadDocFromString(ABrowser: TWebBrowser; const HTMLString: wideString);
    var
      v: OleVariant;
      HTMLDocument: IHTMLDocument2;
    begin
      CheckDocReady(ABrowser);
      HTMLDocument := ABrowser.Document as IHTMLDocument2;
      v := VarArrayCreate([0, 0], varVariant);
      v[0] := HTMLString;
      HTMLDocument.Write(PSafeArray(TVarData(v).VArray));
      HTMLDocument.Close;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to post data via ajax, this is my info: var jsondata =
Im trying to post a form data in js : I have this code
I'm trying to post a JavaScript data object with the following: $.post(frm.attr(action), data, function(res)
I am trying to get some form data from POST method. Here's the code
I have this bit of javascript: var jsonString = some string of json; $.post('proxy.php',
I am trying to catch POST data from a simple form. This is the
I'm getting this error while trying to post data to a hosted web application
I'm trying to read POST data in a PHP script. My first instincts led
I am trying to post some data with jQuery Ajax, but the parameters in
I'm trying to use jquery.Ajax to post data to an ASP.NET MVC2 action method

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.