//-------------------------------------------------------------------------------- //BrowserNavConstants Enumerated Type, used by TWebBrowser.Navigate(...,Flags,...) //-------------------------------------------------------------------------------- ;Open the resource or file in a new window. #Define navOpenInNewWindow 1 ;Do not add the resource or file to the history list. The new page replaces the current page in the list. #Define navNoHistory 2 ;Not currently supported. #Define navNoReadFromCache 4 ;Not currently supported. #Define navNoWriteToCache 8 ;If the navigation fails, the autosearch functionality attempts to navigate common root domains ;(.com, .edu, and so on). If this also fails, the URL is passed to a search engine. #Define navAllowAutosearch 16 ;Causes the current Explorer Bar to navigate to the given item, if possible. #Define navBrowserBar 32 ;If the navigation fails when a hyperlink is being followed, this constant specifies that the ;resource should then be bound to the moniker using the BINDF_HYPERLINK flag. #Define navHyperlink 64 //-------------------------------------------------------------------------------- //TargetFrameName //-------------------------------------------------------------------------------- ;Load the link into a new unnamed window. #Define tfnBlank "_BLANK" ;Load the link into the immediate parent of the document the link is in. #Define tfnParent "_PARENT" ;Load the link into the same window the link was clicked in. #Define tfnSelf "_SELF" ;Load the link into the full body of the current window. #Define tfnTop "_TOP" ;User defined target frame also possible...