Page 6 of 7 FirstFirst ... 34567 LastLast
Results 51 to 60 of 62

Thread: MS Edge WebView2 ActiveX wrapper

  1. #51

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    Antview version 1.0.88 has been released.

    The update fixes an issue with a double free on OnWebMessageReceived and adds improved support for Visual Basic.

    New functionality is an ability to enable logging for troubleshooting purposes as well as a bunch of new methods for using the Chrome DevTools Protocol.

    The demo's have also been improved.

    See the following link for more details:

    https://antview.dev/news/

    cheers!
    --
    Wil

  2. #52

    Default Re: MS Edge WebView2 ActiveX wrapper

    Quote Originally Posted by wila View Post
    Hi,

    Antview version 1.0.88 has been released.
    If you already downloaded the new version.. Then you might have downloaded the previous version.
    Somehow, it was still pointing to the 1.0.74 setup.

    The link has been fixed!

    --
    Wil

  3. #53

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    Another update 1.0.89 as I had messed up ..

    Fix changed behavior for OnCreateWebviewCompleted as it was now send one time too often before the WebView was created due to a missed begin/end clause after adding the logging logic.

    While that might not really be sufficient for a new release, as it was fairly easy to work around, I really do not like it when a component suddenly behaves different after an update. So that is patched if you need it.
    Otherwise .. test via function "WebViewCreated" if the WebView2 control was created, which would have been a good idea anyways.

    --
    Wil

  4. #54

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    Antview version 1.0.111 has been released.

    New features:
    - Now supports PrintToPdf
    - A few properties for controlling shortcut keys as well as how the browser control should control autofill and autosuggest.
    - Uses a newer WebView2Loader.dll

    See the following link for more details:

    https://antview.dev/news/

    cheers!
    --
    Wil

  5. #55

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hello,

    A new update of AntView, version 1.1.164 beta has been released.

    This is an important release as it has many new exciting features such as improved VB6 support (which I won't list down here for some reason)

    Then the following new features:
    - A global interface for setting defaults of all AntView objects
    - download management
    - new window event handling (for example to redirect window.open requests)
    - permission request handling
    - client certificate support
    - failure handling via the onProcessFailed event
    - added Pdf printing completed event
    - Single Sign On support via the main host OS account
    - Passing so called "Chrome flags" for additional features such as disabling the GPU hardware acceleration (useful on some virtual platforms) or setting a proxy server.
    - Changing the Language of the UI
    - additional focus handling

    Also note that it has some changes in behavior.
    Please read: Important changes in AntView 1.1 as that article contains important tips for when you are upgrading and explains what has changed.

    You can download the new version from: https://antview.dev/downloads/

    The release notes can be found here: https://antview.dev/news/

    We expect a new -non beta- release within the next few weeks, depending on the feedback.

    If you have any questions or remarks then please let me know.
    --
    Wil

  6. #56

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    Release of version 1.1.174

    Bug Fix/Changed behavior

    - Setting UserAgent property is now also cached, so that you can set it before the WebView2 control has been created.
    - NavigateWithWebResourceRequest now supports setting headers.

    New functionality:
    The AntViewDocument interface now has synchronous wrapper functions for each asynchronous function available. This makes it easier to use as well as opens this functionality to environments such as PowerBuilder and OpenText Gupta Team Developer.
    Added the following functions:
    - RequestCurrentHtmlSync
    - RequestElementValueByIdSync
    - RequestElementValueByNameSync
    - RequestFormSubmitByIdSync
    - RequestFormSubmitByNameSync
    - RunAnonymousFunctionSync
    - SetElementValueByIdSync
    - SetElementValueByNameSync
    - SynchronousTimeOut property

    Demo

    - The DataFlex demo has a new postData view.
    - Added a demo for PowerBuilder users.

    More details can be found at https://antview.dev/news/
    --
    Wil

  7. #57

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    Another release of the AntView control.

    This one adds full iframe support.

    Release 1.1.200

    New functionality:

    AntView interface
    - OnDOMContentLoaded/OnDOMContentLoadedHex
    - OnFrameCreated

    New AntViewFrame interface for directly interacting with iframes.
    Properties:
    - Destroyed
    - IDispatchPointer
    - Name
    Methods:
    - BrowserDispatch
    - ExecuteScript
    - PostWebMessageAsJson
    - PostWebMessageAsString
    Events:
    - OnContentLoading
    - OnContentLoadingHex
    - OnDestroy
    - OnDestroyed
    - OnDOMContentLoaded
    - OnDOMContentLoadedHex
    - OnExecuteScript
    - OnNameChanged
    - OnNavigationCompleted
    - OnNavigationCompletedHex
    - OnNavigationStarting
    - OnWebMessageReceived
    - Added AntViewNavigationStartEventArgs2 for extending the navigation structure data:
    - AdditionalAllowedFrameAncestors, which is used by iframes.

    AntViewDocument interface
    - FrameDispatch, this method allows you to connect the document interface to an iframe object.

    AntViewDownloadOperation interface
    - OnDestroy event

    AntViewWebResourceResponseView interface
    - OnDestroy event


    Bugfix/Changed behavior
    - The Synchronous methods from the document interface cannot be run from within an event due to the nature of how it works. This now returns an error indicating the reason instead of just locking up.
    - Fixed AntViewNavigationStartEventArgs.RequestHeaders
    - returning a boolean value via runAnonymousFunction would crash the control. This has been fixed by also supporting boolean return value and casting that to a string. Also extended exception handling on this so that the control no longer crashes if it cannot cast the result to a string.
    - OnPermissionRequested was broken as state did not work as expected.

    There has also been a lot of work done on the documentation, more details - as always - can be read over at https://antview.dev/news/

    cheers!
    --
    Wil
    Last edited by wila; 14-Jul-2022 at 08:47 AM. Reason: formatting

  8. #58

    Default Re: MS Edge WebView2 ActiveX wrapper

    New release of AntView.

    Release 1.1.236

    New functionality:

    AntView interface
    Properties
    - SynchronousTimeOut
    Methods
    - AddWebResourceRequestedFilter
    - CreateWebResourceRequest
    - CreateWebResourceResponse
    - CreateWebViewSync
    - NavigateSync
    - NavigateToStringSync
    - RemoveWebResourceRequestedFilter
    Events
    - OnAcceleratorKeyPressed
    - OnWebResourceRequested

    AntViewDocument interface
    Methods
    - RequestCurrentText
    - RequestCurrentTextSync
    - RequestPrint
    - RequestPrintSync
    Events
    - OnRequestCurrentText
    - OnRequestPrintCompleted

    AntViewNewWindowRequestedEventArgs interface
    Properties
    - Deferral

    New AntViewDeferral interface to be able to postpone destroying of objects so you can complete tasks
    Method
    - Complete
    Events
    - OnDestroy

    New AntViewPhysicalKeyStatus to assist with OnAcceleratorKeyPressed
    Properties
    - IsControlKeyDown
    - IsExtendedKey
    - IsKeyReleased
    - IsMenuKeyDown
    - IsShiftKeyDown
    - RepeatCount
    - ScanCode
    - WasKeyDown
    Events
    - OnDestroy

    New AntViewWebResourceRequestedEventArgs interface to assist with OnWebResourceRequested and Filters
    Properties
    - Deferral
    - Request
    - ResourceContext
    - Response
    Events
    - OnDestroy

    New AntViewWebResourceResponse interface to assist with AntViewWebResourceRequestedEventArgs interface
    Properties
    - Headers
    - ReasonPhrase
    - StatusCode
    - DefaultInterface
    Events
    - OnDestroy

    Bugfix/Changed behavior
    - Fix installer issue trying to register 64 bit version of AntView when running on a 32 bit operating system.
    - The logging functionality now supports more detailed logging by setting LogMode to level 2. At level 2 more details are logged such as URL's and all the triggered events. It does not include sensitive information such as certificates or html contents (unless you NavigateToString).
    - The help documentation has been revised to include more details and be easier to navigate.

    For more information please see our "News" page.
    --
    Wil
    Last edited by wila; 6-Jan-2023 at 07:45 AM.

  9. #59

    Default Re: MS Edge WebView2 ActiveX wrapper

    It's been a few weeks... so figured it is about time for a new release

    Beyond the added functions to the core control (AntView) there's a whole new cookie manager interface to deal with them pesky cookies.

    2023/02/21

    release 1.1.270

    New functionality:
    AntView interface
    Properties
    - BrowserProcessIDLong
    - CookieManager
    - IsDocumentPlayingAudio
    - IsDownloadDialogOpen
    - IsSuspended
    - Muted
    Methods
    - CloseDownloadDialog
    - NavigateWithWebResourceRequestSync
    - OpenDownloadDialog
    - OpenTaskManagerWindow
    Events
    - OnDocumentPlayingAudioChanged
    - OnDownloadDialogOpenChanged
    - OnMutedChanged

    New AntViewCookieManager interface
    Methods
    - AddOrUpdateCookie
    - CopyCookie
    - CreateCookie
    - DeleteAllCookies
    - DeleteCookie
    - DeleteCookies
    - DeleteCookiesWithDomainAndPath
    - GetCookies
    Events
    - OnDestroy
    - OnGetCookieList

    New AntViewCookieList interface
    Properties
    - Count
    Methods
    - ValueAtIndex
    Events
    - OnDestroy

    New AntViewCookie interface
    Properties
    - DefaultInterface
    - domain
    - Expires
    - HttpOnly
    - Secure
    - IsSession
    - Name
    - path
    - SameSite
    - Value
    Events
    - OnDestroy

    Bugfix/Changed behavior
    - The online help system has been touched up a bit to work closer to how the Windows CHM help works and looks like.

    For more information, including hyperlinked versions of the features above, please see our "News" page.

    --
    Wil

  10. #60

    Default Re: MS Edge WebView2 ActiveX wrapper

    Hi,

    There's another new release of AntView.

    August 31, 2023

    Release of version 1.1.314

    New functionality:

    AntView interface

    Properties:
    NextFocusWindowHandleHwnd
    PreviousFocusWindowHandleHwnd
    WebView2WindowHandle
    WebView2WindowHandleHwnd
    WindowHandle
    WindowHandleHwnd

    Methods:
    CapturePreview

    Events:
    OnCapturePreviewCompleted

    Extended the AntViewNewWindowRequestedEventArgs interface

    Methods:
    NewWindowDispatch

    Available via: Download AntView version 1.1.314

    For more information, including hyperlinked versions of the features above, please see our "News" page.

    --
    Wil

Page 6 of 7 FirstFirst ... 34567 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •