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

Search:

Type: Posts; User: sv13

Search: Search took 0.04 seconds.

  1. Re: Reading file that is being writen by another app

    thanks for advice, i will do it as you suggested
  2. Reading file that is being writen by another app

    Hi,
    little explanation of my problem:
    there is an third party app, that i have no control of.
    this app writes log file, but its not : write all, then close file, its writing when something happen,...
  3. Re: WebBrowser.Navigate("javascript: ... - when js code execution will end

    well actually iam using gecko browser, i tought it will have similar properties, now i know thats not true :)
    1 way - not working in both webbrowser and gecko
    2 there is no readystate in gecko...
  4. WebBrowser.Navigate("javascript: ... - when js code execution will end

    hi
    i am executing javascript code on loaded page by
    webBrowser.Navigate("javascript: code here");

    is there a way to notify my app that javascript code execution ended ?
  5. Re: javascript - need suggestions with getting specific elements from container

    first and last optimization - skip some for loop iterations -when i am sure i wont omit h1 or p - DONE
  6. javascript - need suggestions with getting specific elements from container

    hi,
    here is what i want to do:

    e.g.


    <div id="container">
    <h1>text</h1>
    <p>text</p>
    <p>text</p>
  7. WebBrowser - download page without displaying it

    hi, my app have to visit many pages and i want to optimize it a little bit,
    i have already disabled images/videos/sounds downloading(i care only about html content), is there a way to download page...
  8. Replies
    6
    Views
    1,125

    Re: need help with cross-thread delagates

    hi, thanks for reply, you put a lot of efforts, and i appreciate it

    yes it is , sry my mistake

    but, i can not call p.Controls.Add() in myClassA AddLabel because when myClassB actually calls...
  9. Replies
    6
    Views
    1,125

    Re: need help with cross-thread delagates

    finally got it to work, dont know if its best solution but..



    //myClassA.cs
    class myClassA
    {
    i have ref to Form1.AddLabelDelegate addLabelDelegate;
    private AddLabel(string text)...
  10. Replies
    6
    Views
    1,125

    need help with cross-thread delagates

    hi, i have went through countless examples of how to use delegates, and still no success
    here is my problem:

    WFA application


    //myClassA.cs
    class myClassA
    {
    private AddLabel(string...
  11. Re: MSDN Example of Asynchronous Client/Server Socket

    i have just found another implementation, so everything is working fine now
  12. MSDN Example of Asynchronous Client/Server Socket

    Hi,
    can somebody guide me, how i have to modify client/server code form MSDN so i could send data from client many times, not only one, like now.
    i have tried to call Send() and Receive() once...
  13. Replies
    5
    Views
    2,114

    Re: permanent desktop icon text color change

    don't know what are you referring to, i am talking about icons on desktop here


    no, i am not, but its first thing i noticed :)

    my wallpaper changes every few hours, and i want black icon font...
  14. Replies
    5
    Views
    2,114

    Re: permanent desktop icon text color change

    ok, now tell me how can i detect desktop refresh ^^, i've been googling for hours with no success
  15. Replies
    5
    Views
    2,026

    Re: c++ change desktop wallpaper

    actually both are correct
  16. Replies
    5
    Views
    2,026

    Re: c++ change desktop wallpaper

    just tested it , its not working with jpg, bmp works fine

    even your code is working correctly with bmp
  17. Replies
    5
    Views
    2,114

    permanent desktop icon text color change

    hi

    i can change color with



    HWND dh = FindWindow("ProgMan",0);
    dh=GetWindow(dh,GW_CHILD);
    dh=GetWindow(dh,GW_CHILD);
    ListView_SetTextBkColor(dh, CLR_NONE); // icon...
  18. Replies
    5
    Views
    2,026

    Re: c++ change desktop wallpaper

    you must convert it to .bmp first and then pass bmp in SystemParametersInfo
  19. Replies
    2
    Views
    1,872

    Re: SHQueryRecycleBin in Debug and Release config

    **** i failed, thank you sir, works fine now
  20. Replies
    2
    Views
    1,872

    SHQueryRecycleBin in Debug and Release config

    hi, i know that default Debug configuration differs a little bit from Release (optimizations, etc etc), but why code below works fine in Debug and fails in Release

    i want to check whatever...
Results 1 to 20 of 20





Click Here to Expand Forum to Full Width

Featured