在網址列打上:https://picasaweb.google.com?noredirect=1
noredirect=1這個參數可以告訴google你不想從picasa web轉去Google+。 這樣一來,你就可以看到本來的介面啦。
Need free and smart life
private
:
// User declarations
void
__fastcall WndProc(TMessage &Msg);
#include "Dbt.h"
//---------------------------------------------------------------------------
// 重载窗体WndProc函数
void
__fastcall TForm1::WndProc(TMessage &Msg)
{
if
(Msg.Msg == WM_DEVICECHANGE)
{
int
nDevType;
PDEV_BROADCAST_HDR dbh;
if
(Msg.WParam == DBT_DEVICEARRIVAL || Msg.WParam == DBT_DEVICEREMOVECOMPLETE)
{
dbh = PDEV_BROADCAST_HDR(Msg.LParam);
if
(dbh->dbch_devicetype == DBT_DEVTYP_VOLUME)
{
if
(Msg.WParam == DBT_DEVICEARRIVAL)
{
ShowMessage(
"USB connect"
);
}
else
{
ShowMessage(
"USB remove"
);
}
}
}
}
TForm::WndProc(Msg);
}