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

Search:

Type: Posts; User: harish_dixit1

Page 1 of 7 1 2 3 4

Search: Search took 0.07 seconds.

  1. String changed after inserting into db

    Hello,

    I am inserting some unicode string into the SQLite database. After inserting, at the time of retrieving value has been modified.

    For example:

    I am inserting "즒铭ꓽ菷\큭셙냼誜\꾁霤꿩뱪낌.wma"...
  2. Replies
    5
    Views
    1,076

    Re: Trusted Activex component

    Thanks dear,

    ya i implemented safe for initialization and safe for scripting

    but after doing so activex security box not coming now but information bar and
    security warning dialog are still...
  3. Replies
    5
    Views
    1,076

    Re: Trusted Activex component

    Thanks Igor Vartanov,

    but i m not getting "Safe means?"

    can u explain in detail
  4. Replies
    5
    Views
    1,076

    Trusted Activex component

    When we are opening web page in IE we are getting security pop-ups
    every time the our page is loaded. I need to figure out how to get a
    prompt that allows a user to "trust" our .dll so that they...
  5. Replies
    0
    Views
    609

    DLL Registration problemproblem

    Hi friends,

    i making a COM DLL in vc++ , this DLL is using a 3rd party dll
    function. i m calling a function of this DLL.


    But i m getting error


    error PRJ0050: Failed to register...
  6. Replies
    0
    Views
    597

    .Net DLL problem

    Hello friends ,
    i downloaded a 3rd party .Net library , it contains some DLLs only.

    i also found how to use dlls functionality from C# code example.
    these dlls contains some classes. In C#...
  7. Replies
    0
    Views
    538

    IE Toolbar

    Hello to all,

    I m creating a toolbar for IE (ATL DLL). I implemented XP style using
    manifest file. It works fine. But
    i have a problem after XP style conversion, my buttons height has been...
  8. Replies
    11
    Views
    1,739

    Re: CALL JScript function for IE

    I tried but still not working
  9. Replies
    11
    Views
    1,739

    Re: CALL JScript function for IE

    But i m getting everything from this pointer in 2nd thread
  10. Replies
    11
    Views
    1,739

    Re: CALL JScript function for IE

    in following code

    BSTR bstr = NULL;
    pBrowser->get_LocationURL(&bstr) ;
    // find document pointer...
    IDispatchPtr pDisp;
    pBrowser->get_Document(&pDisp);
    IHTMLDocument2Ptr pDoc;...
  11. Replies
    11
    Views
    1,739

    Re: CALL JScript function for IE

    No i m getting it in 2nd thread
  12. Replies
    11
    Views
    1,739

    Re: CALL JScript function for IE

    U r talking abt which interface pointres.

    IWebBrowser2 pointer is created in main thread and

    i m getting IHTMLWindow2 pointer in 2nd thread
  13. Replies
    11
    Views
    1,739

    CALL JScript function for IE

    Hello friends i m calling a javascript function on web page from vc++ code.

    function to perform this task is:

    BSTR bstr = NULL;
    pBrowser->get_LocationURL(&bstr) ;
    // find document...
  14. Re: Transfer Data form Webpage to other Application

    Actually I want the Inter process communication between the webpage to my own other application which is continous running in the back end.
    When my page execute then it automatically transfer the...
  15. Transfer Data form Webpage to other Application

    Hi All,
    I want to transfer the data form webpage to any other own application which is running in backend.How i develop this web page. which technology is good for this or any particular protocol i...
  16. Transfer data from web page to other Application

    Hi All,

    I want to transfer the data form webpage to any other own application which is running in backend.How i develop this web page. which technology is good for this or any particular protocol...
  17. Re: How to click a button when we press enter with out using mouse?

    See if you Just want to Check Button State .you can use GetState() member Function of your CButton Class.if you want to Know Something else.Then Please tell us your Actual requirement
  18. Replies
    16
    Views
    4,699

    Re: local and global variable same name

    Yes Kumaresh you are right .but namespace is a Good way in case of C++.

    Thanx
  19. Replies
    5
    Views
    759

    Re: Determine Stand By mode

    I tried with windowproc function in my toolbar control class

    but it is not recieving any messages...

    how can i do that
  20. Replies
    18
    Views
    2,416

    Re: Time to say good bye to Code Guru

    But why .stay here only.
  21. Replies
    2
    Views
    1,346

    Re: #pragma pack(1) and string

    #pragma pack(1) is used to avoid Padding .
    Have a look on this.
    http://www.codeguru.com/forum/showthread.php?t=276622&highlight=struct+alignment
    and i don't think due to this pragma you are going...
  22. Re: test.cpp:15: error: stray ‘\160’ in program

    have a look on this
    http://lists.samba.org/archive/distcc/2006q2/003396.html
  23. Replies
    7
    Views
    1,178

    Re: displaying a html file

    i found this have a look .Don't know you are looking for this or not.
    http://www.codeguru.com/forum/showpost.php?p=1448881&postcount=3
  24. Replies
    16
    Views
    4,699

    Re: local and global variable same name

    main Difference is the Scope of Local variable is upto loop Only and Global variable scope is upto your Program.in case of C++ we used ::(known as Scope resolution operator) to Access or global...
  25. Replies
    0
    Views
    1,778

    WM_POWERBROADCAST message handling

    I want to handle WM_POWERBROADCAST in my app.
    but my application is ATL DLL which construct a toolbar to IE window.

    how could we handle this message. will my toolbar windoa could receive that...
Results 1 to 25 of 157
Page 1 of 7 1 2 3 4





Click Here to Expand Forum to Full Width

Featured