I am trying to use BrowserNavConstants for .Navigate2 flags, but I dont know how to combine more than one in the same variant for c++. On VB i would use
navNoHistory + navNoReadFromCache + navNoWriteToCache
or
Flags := NavNoHistory or NavNoReadFromCache or NavNoWriteToCache or NavAllowAutosearch;
for delphi, but how should I do it on c++?