Denne koder virker med at åbne et nyt tab i FF.
if CheckBox1.Checked then ShellExecute(0,'open',PChar('iexplore'),PChar('http://en.wikipedia.org/wiki/Special:Search?search='+Text+'&fulltext=Search'),nil,sw_shownormal)
else if CheckBox2.Checked then ShellExecute(0,'open',PChar('firefox'),PChar('http://en.wikipedia.org/wiki/Special:Search?search='+Text+'&fulltext=Search'),nil,sw_shownormal);
end;
Mens denne ikke gør:
if CheckBox1.Checked then
ShellExecute(0,'open',PChar('iexplore'),PChar('www.google.com/search?hl=en&q='+Text),nil,sw_shownormal)
else if CheckBox2.Checked then
ShellExecute(0,'open',PChar('firefox'),PChar('www.google.com/search?hl=en&q='+Text),nil,sw_shownormal);
end;
Kom også gerne med optimerings muligheder, eller andet