I want to read and fetch the contents of a cookie generated by web browser from activex control. I dont want to read the cookie from javascript and pass it to activex control. I want read the cookie directly from activex control. If it is possible then suggest me the APIs for that and also same thing I have to achieve using NPAPI also (so please suggest APIs in here also). So looking forward for some positive answers.
how can i read cookie generated by web browser from activex control
1.4k views Asked by user2416334 At
1
There are 1 answers
Related Questions in VISUAL-C++
- Visual Studio C++, breakpoints not stopping debugging DLL (GODOT GDExtention)
- MSVC Compiler Template Sizeof...() not working
- Visual Studio C++ Access to path is denied
- How can I use CsvHelper to parse a string into a list of tokens?
- Unable to add request headers via CHttpFile - C++/MFC
- Is there a worked example of using CStrBufT with a CString?
- wxMediaCtrl causes access read violation when loading
- Why do I get weird class method redefinition errors when I compile with Visual C++ 2022?
- How to make VCPKG copies dependencies pdb files in output directory
- Difference between INT_MIN , INT8_MIN , INT16_MIN. For MAX too
- 'pip install mariadb' states that it cannot find include file 'mysql.h' on my Windows 10 dekstop
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- Why does MSVC never return struct in RAX for member-functions?
- Configure target system
- UI Interface Crashes and Hanging Issues in MFC Application
Related Questions in COM
- How to program a COM object with an IEnumerator, IEnumerable interface inside
- WinAPI - right mouse drag & drop and IContextMenu
- Function Returning Excel COM Objects Unexpectedly
- Windows ContextMenuHandler names - Document conflict?
- How to publish a console application with COM interop and trim unused code
- IContextMenu Handler - Should ShellExecute or CreateProcess be used to InvokeCommand?
- Windows Explorer Conditional Context Menu Item for Drive?
- How do I fix an error while trying to send email using Outlook with COM?
- ITypeLib2.GetLibStatistics() always throws AccessViolationException in C#
- Directwrite is not always able to query font
- How can I pass a C++ struct to a C# DLL method using COM interop
- VBA PowerPoint Run-time error '-2147467259' (80004005): Presentation.Close: Failed
- PHP using a dll with COM + dotnet
- d3d11 triangle rendering failure despite everything being properly initialized
- COM context menu InvokeCommand not being called
Related Questions in ACTIVEXOBJECT
- C# AutoCAD Civil3D 2022 Activex get civil object properties
- Frontol Adding a client card to a script
- Is there any solution to reduce memory usage when performing Excel operations using ExcelJS on the client-side?
- Compile error: Argument not optional on CommandButton_Click
- ActiveX Combo Box Selection Disappears After Selection
- Excel VBA Problem when adding an ImageCombo-ActiveX to a worksheet
- WORD VBA - Looping through ActiveDocument.InlineShapes and the loop maxes out at 100
- Python importing ActiveX DLL issue
- ActiveXobject is not defined, need alternative
- Support for Shell.Explorer.2
- How to create a ControlSource ms-access property in c++ without VB6
- Call windows exe from javascript under windows 11
- Array code not accepting methods as replace, slice
- W3 Jmail not working (ActiveX component can't create object)
- How to remove This action cannot be completed because the other application is busy message
Related Questions in ACTIVEX-DOCUMENTS
- Prerequisite for Win 10 using vb6 activex documents or webbrowser control
- VBA, Active X and Legacy Tools alternatives in word
- How to replace active x control form javascript project
- In Qt 4.8 MS Excel ActiveX control in QWidget has no Ribbon for data formatting
- Open a java desktop application while saving a Microsoft word document using ActiveX control in java
- Who to read XML file of below content into Xdocument
- Have .jpg files within excel when using ActiveX Image Control
- Microsoft word 2010 64bit VBA code when connecting to access database 2010 64bit activex error
- how to render html file in window/dialog box using activex control
- HTML Object Tag Loading ActiveX Object
- how can i read cookie generated by web browser from activex control
- Javascript - Is there a way to export HTML along with formatting to a word document using ActiveX?
- Click a button in a Out-of-process COM(Active Document Server) component hangs IE, why?
- Are there any good resources for dealing with "User Document" (.dob) files
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
What you can do is
1) hook up Web Browser events, using for example this sample How to sink HTML document events for WebBrowser host
2) once you get a hold on the loaded IHTMLDocument2 document interface, just read the value of the cookie property:
More on this here: Handling HTML Element Events
Note: for NSAPI I suggest you write another question with other tags as this is a totally different world.