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 7821869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T07:46:27+00:00 2026-06-02T07:46:27+00:00

When I try to open any site that has double-quotes ( ) inside the

  • 0

When I try to open any site that has double-quotes (") inside the link , for ex. user.php?name="stackoverflow" it just cuts " or sometimes it redirects me to Google!?
Used code:

ShellExecute(0, 'open', PChar('open'), PChar(URL), nil, SW_SHOW) ;
  • 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-06-02T07:46:29+00:00Added an answer on June 2, 2026 at 7:46 am

    You need use a fully qualified URL including the http:// and escape/encode the URL by replacing the double-quotes (") with %22.

    Also you are passing wrong parameters.

    See MSDN: Use ShellExecute to launch the default Web browser

    Example:

    procedure TForm1.Button1Click(Sender: TObject);
    var
      URL: string;
    begin
      URL := 'http://www.user.com/?name="stackoverflow"';
      URL := StringReplace(URL, '"', '%22', [rfReplaceAll]);
      ShellExecute(0, 'open', PChar(URL), nil, nil, SW_SHOWNORMAL);
    end;
    

    You should always encode the URL parameters, not only double-quotes. You can use Indy with TIdURI.URLEncode – IdURI unit.
    You could also use HTTPEncode from the HTTPApp unit to encode each parameter in the URL.

    Note that TIdURI.URLEncode will encode the ? and the & separators also. so I think it’s a better idea to encode each parameter separately with HTTPEncode e.g:

    URL := 'http://www.user.com/?param1=%s&param2=%s';
    URL := Format(URL, [
      HTTPEncode('"stackoverflow.com"'),
      HTTPEncode('hello word!')]);
    // output: http://www.user.com/?param1=%22stackoverflow.com%22&param2=hello+word!
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there Anyone that has experience with any open source, or relatively cheap voice
Today, everytime I try to open any .Net application I get: CLR error: 80004005
XCode 4.31 crash when i try to open my project. I could open any
Does anyone know any open source project or adapter for MySQL-AdWhirl? We try to
Our company site has a JavaScript problem that I'm desperately trying to solve, but
I have an existing site that has a bunch of different models and controllers.
I try open and play .wav files with NAudio lib. private OpenFileDialog openFileDialog =
when I try to open a file for reading in my console application i
When I try to open a file in write mode with the following code:
When I try to open the following video: http://streaming1.hss-win.rpi.edu/ondemand/cogsci/issues_in_cs/issues_in_cogsci_02_04_2009.asf I can get it but

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.