CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Victor Kulichkin

Page 1 of 4 1 2 3 4

Search: Search took 0.05 seconds.

  1. Directshow support in MS Edge & Adobe Flash Player

    Well,

    what do I have:

    1. MS Windows 10 (x86 or x64) with the last updates.
    2. MS Edge with turned on (in Edge properties) Adobe Flash Player 19.0.0.185.
    3. My video AVStream...
  2. Adobe flash player and DirectShow filters in IE

    I have a question for flash guru.

    For video capture of webcams for sites with flash (youtube, livestream and etc) I use a driver and DirectShow filter. The user loads a page with flash and chooses...
  3. Replies
    0
    Views
    2,327

    IBaseFilter in FFDSHOW

    Hi,

    I have an app using DirectShow. There I connect to ffdshow by this code


    HRESULT hr = S_OK;

    CComPtr<IBaseFilter> pH264 = NULL;
    CComPtr<IUnknown> pIUnknown;
    hr =...
  4. Re: FFMPEG: Dynamic change of bit_rate for Video

    Reinit of the codec is very bad idea, use another ways for the codec's control.
  5. FFMPEG: Dynamic change of bit_rate for Video

    I use ffmpeg codes in my C++ app and would like to control the bit_rate parameter for VIDEO there. I tried to change its value in work (via ost->st->codec->bit_rate = 150000), but ffmpeg did not wish...
  6. DWebBrowserEvents2::CommandStateChange () event

    In BHO I need to catch the Back/Forward buttons.

    For that I declared the method in my project:



    Defining of that method:
  7. Replies
    6
    Views
    1,929

    Re: Internet Explorer Events

    Ah...., understood your idea,

    But I don't know any way how to make a global hook on Exec. Please, example.
  8. Replies
    6
    Views
    1,929

    Re: Internet Explorer Events

    >IOleCommandTarget interface and particularly its Exec method

    My addon has to work as a BHO, not as an extension. Exec method is called after press of a button/command in Toolbar/Tools menu. I...
  9. Replies
    6
    Views
    1,929

    Re: Internet Explorer Events

    >DWebBrowserEvents2::BeforeNavigate2

    You did not understand me. I have no a problem how to define URL by user,
    I need to know which the way that user has entered that URL in IE: via Address...
  10. Replies
    6
    Views
    1,929

    Internet Explorer Events

    Hi all,

    I write the BHO for IE where I need to catch the IE events from Address Bar, History, Bookmarks. For example, if the user has typed URL in Address Bar,
    then BHO has to show me that URL...
  11. Script for registration of COM local server

    Hi all,

    I have written COM local server and tried to register it by using .rgs file:



    HKCR
    {
    LocalSingleton.Singlleton.1 = s 'Singlleton Class'
    {
  12. Re: Back/Forward buttons events в IE

    resolved.
  13. Back/Forward buttons events в IE

    Hi all,

    anybody knows any way to catch those events in BHO for IE?

    any ideas.
  14. Replies
    0
    Views
    611

    Debug an addon for IE9

    Hi,

    is there any way to debug an addon for IE9 in Visual Studio.

    For IE7 - no problem, for any breakpoint in the codes.
    For IE8 - only via Attach to Process.
    For IE9 - ?

    any ideas, please?
  15. Replies
    0
    Views
    445

    The button icon in IE addon

    Hi all,

    write the addon for IE where should be one button with an icon.
    Usually that icon can be set by .rgs file, for example:


    HKLM
    {
    NoRemove SOFTWARE
    {
  16. Replies
    0
    Views
    3,221

    Inject a script in BHO for IE

    Hi all,

    I wrote my BHO which had to insert a script into the new page loading on IE.
    I can insert any text into the page, but cannot do it for any script, IE ignored any scripts' inserting.
    ...
  17. Replies
    9
    Views
    1,971

    Re: The icon path into the addon dll

    Igor,
    worked!!!!!!

    thank for the help!

    Victor
  18. Replies
    9
    Views
    1,971

    Re: The icon path into the addon dll

    it works if .rgs file has the following records:



    ...
    val 'Icon' = s 'F:\Program Files\SoapBox\SoapBox\SoapBox.Dll,104'
    val 'HotIcon' = s 'F:\Program...
  19. Replies
    9
    Views
    1,971

    Re: The icon path into the addon dll

    I added the new resource into the project and saw (via VS) the embedded icon in the dll. But the icon did not appear in IE yet. Maybe there it is necessary to do some changes in .rgs file?
  20. Replies
    9
    Views
    1,971

    Re: The icon path into the addon dll

    Thank you very much,

    now I try to do it.
  21. Replies
    9
    Views
    1,971

    Re: The icon path into the addon dll

    How can I make it, details please?

    I can open the resource of the project, after it add a new item as an icon.
    Here VS opens the Icon editor, there I must create an icon. Is it correct?

    By the...
  22. Replies
    9
    Views
    1,971

    The icon path into the addon dll

    Hi all,

    I wrote the addon dll for IE, it worked well. But there I have one problem: in that dll the path to the icon is set hard, see my .rgs file



    HKLM {
    NoRemove SOFTWARE
    {
    ...
  23. Replies
    1
    Views
    752

    Re: Screensaver mode in KDE or GNOME

    By using gnome-screensaver and its D-Bus signals:

    http://people.gnome.org/~mccann/gnome-screensaver/docs/gnome-screensaver.html#gs-signal-ActiveChanged
  24. Replies
    1
    Views
    752

    Screensaver mode in KDE or GNOME

    Hi all,

    Usually Linux sets that mode for a display if PC is not active for some time.
    I would like to control that mode from my console program. Is it possible?

    Any ideas?
  25. Replies
    0
    Views
    907

    HttpWebRequest timeout in Vista

    Hi All,

    I need to handle the Timeout parameter in HttpWebRequest.
    My code:



    string ip;
    .....
    HttpWebRequest wrq = (HttpWebRequest)WebRequest.Create("http://" + ip);
Results 1 to 25 of 88
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured