当前位置导航:炫浪网>>网络学院>>编程开发>>C++教程>>C++ Builder教程

得到浏览器当前URL路径代码

 Unit1.Cpp
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include \"Unit1.h\"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource \"*.dfm\"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(Tcomponent* Owner)
: Tform(Owner)
{
}
//---------------------------------------------------------------------------
String TForm1::Get_URL(AnsiString Servicio)
{
TDdeClientConv *Cliente_DDE=new TDdeClientConv(NULL);
char *temp;
// 本文转自 C++Builder 研究 - http://www.ccrun.com/article.asp?i=423&d=vpfz80
Cliente_DDE->SetLink(Servicio,\"WWW_GetWindowInfo\");
temp=Cliente_DDE->RequestData(\"0xFFFFFFFF\");
Cliente_DDE->CloseLink();
delete Cliente_DDE;
return String(temp);
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(Tobject *Sender)
{
ShowMessage(Get_URL(\"Iexplore\"));
}
//---------------------------------------------------------------------------

Unit1.H
//---------------------------------------------------------------------------

#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include \"ddeman.hpp\"
//---------------------------------------------------------------------------
class TForm1 : public Tform
{
  __published: // IDE-managed Components
      Tbutton *Button1;
      void __fastcall Button1Click(Tobject *Sender);
  private: // User declarations
      String TForm1::Get_URL(AnsiString Servicio);
  public: // User declarations
      __fastcall TForm1(Tcomponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

相关内容
赞助商链接