小菜一碟:如何在d6下调用google查询一个问题?(100分)

  • 主题发起人 主题发起人 nnnet
  • 开始时间 开始时间
N

nnnet

Unregistered / Unconfirmed
GUEST, unregistred user!
ShellExecute(handle, 'open', pchar('c:/program files/internet explorer/iexplore.exe'), pchar('http://www.google.com/intl/zh-CN/ '+edit1.text), nil, SW_SHOWNORMAL);
不行啊,该怎么做?
 
用WebBrowser呀
 
改成这样
ShellExecute(handle, 'open', pchar('c:/program files/internet explorer/iexplore.exe'), pchar('http://www.google.com/search?q= '+edit1.text+'&ie=GB2312&hl=zh-CN&lr='), nil, SW_SHOWNORMAL);

 
我就想在程序中简单地查询一下,似乎没有必要那么复杂吧?
 
你用错了搜索页了
 
改成这样
ShellExecute(handle, 'open', pchar('c:/program files/internet explorer/iexplore.exe'), pchar('http://www.google.com/search?q= '+edit1.text+'&ie=GB2312&hl=zh-CN&lr='), nil, SW_SHOWNORMAL);
-->这样复杂吗?
 
whtsuperant大侠:如何正确使用搜索页?
 
我试了一下,似乎不行啊?
 
搜索页的使用方法
先搜一下
再看他的地址栏中的URL是什么样的
自已构造一个查询URL,
执行之
就像 :
pchar('http://www.google.com/search?q= '+edit1.text+'&ie=GB2312&hl=zh-CN&lr=')
 
我这里行呀我在Edit1中输了李白就出来了
你不会没有Use ShellApi吧?
 
ok,我的网突然断了,谢谢
 
后退
顶部