Skip to content

Instantly share code, notes, and snippets.

View acaly's full-sized avatar
📚
Learning

Zhenwei Wu acaly

📚
Learning
  • Toronto, Canada
View GitHub Profile
//From:
//https://gitlab.qarea.org/timeguard/tg-url-det/blob/master/addon/windows/url.cc
//https://gitlab.qarea.org/timeguard/tg-url-det/blob/1b63ac16f54ff6cf41fea4217985b19d7b2b29ac/addon/windows/url.cc
VARIANT urlProp;
editBoxElement->GetCurrentPropertyValue(UIA_ValueValuePropertyId, &urlProp); //get the string
BSTR url;
url = urlProp.bstrVal;
wstring urlStr(url, SysStringLen(url));