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

Search:

Type: Posts; User: broc

Page 1 of 3 1 2 3

Search: Search took 0.12 seconds.

  1. common child controls embeded in OLE control problems

    hi .
    i have a big problem . common child controls embeded dynamicaly in OLE control blocks the execution on first click on one of them . message routing ? first time exception ? i don't know .
    ...
  2. Replies
    0
    Views
    521

    Stingray & OLE controls

    hi there .
    for some reason an AXcontrol embeded in an Stingray Wnd class fire an event .
    guess what ? the event is not reflected , it never reach to class which should handle the event fired .
    ...
  3. Replies
    0
    Views
    470

    VeriSign certificates ...

    hi,
    i develope a Client application and i need to authenticate a server which i'll be conected to .
    i don't much about CAs chains ... so how can authenticate an server which have a VeriSign...
  4. Replies
    0
    Views
    633

    SSL . where did i get SSLRef source ?

    hi .
    plz tell me a location where i still can find SSLRef source code in C .
  5. Replies
    0
    Views
    434

    SSL . where did i get SSLRef source ?

    hi .
    plz tell me a location where i still can find SSLref source code in C .
  6. Thread: nonblocking ...

    by broc
    Replies
    0
    Views
    652

    nonblocking ...

    hi.
    i work on a multithreading program .
    i need that an working thread to make a connection to server , download data etc.
    i also need the worker thread to work completely in nonblocking mode - i...
  7. Re: how can an app detects at start there is another instance of app running ?

    thanks Vladimir .
    for the ones interested in this subject ,i found in Visual C++ help this link
    http://download.microsoft.com/download/vc60pro/info5/1/WIN98/EN-US/Onet32.exe
    a good sample ...
    bye.
  8. how can an app detects at start there is another instance of app running ?

    hi,
    i develope an app that need to have only one instance of it running at one time .
    how can an app detects at start there is another instance of app running ?

    thanks in advance .
  9. Thread: CEdit

    by broc
    Replies
    2
    Views
    521

    CEdit

    hi,
    i use GetTextExtentPoint32(...) to get the length of a string in a CEdit control ;
    i override WM_LBUTTONDOWN and i get CPoint point;
    surprise , when i click at the end of string in control...
  10. Replies
    1
    Views
    434

    load large data file

    hi,
    i need the fastest way to load load large data file ( up to 10 Mb ) and display it in a list control . no SQL stuff but basic text or doc files .
    any ideea or related resources ?

    thanks in...
  11. Thread: Invalid parent

    by broc
    Replies
    1
    Views
    546

    Re: Invalid parent

    try this order :

    LONG CCallTypeDialog::OnClickedDlg(UINT ,LONG )
    {
    CWnd* pParent = GetParent();
    if(pParent)
    {
    log("Parent is Valid");...
  12. edit controls don't get focus in modeless property pages !

    hi,
    i write an app and for some reason i simulate a property sheet .
    for that i made modeless property pages embeded in a modal dialog .
    one of pages has an edit control which need to be edited ....
  13. Replies
    3
    Views
    731

    Re: how many threads can a process launch ?

    thank you .
    i asked that question because only in theory you can launch so many theads .
    i wrote a little app which launch threads untill it block .
    first it launch a main thead which launches...
  14. Replies
    3
    Views
    731

    how many threads can a process launch ?

    hi,
    i need to know if there is any way to find out how many threads can launch a process ?
    any ideea or related resources ?

    thankx in advance .
  15. Replies
    4
    Views
    532

    Re: what program should i ...

    ... but it's no so easy .
    imagine that the bag of money is not under the tree but somewhere at the bottom of the ocean , 2 or 3 miles away from the surface , and you need a team and equipment to get...
  16. Replies
    4
    Views
    532

    Re: what program should i ...

    thanks for beeing so kind ...
    that's why it will never exists a really Windows programming comunity but big fishes eating little fishes . that's why we will always work for the companies but not for...
  17. Replies
    12
    Views
    845

    Re: Should i pay taxes?

    you guys are so funny :o) .
    i have the same skills like Jeff .
    i live in Romania and i earn US$150/month and US$50 i pay taxes .
    come and live at my place !...
  18. Replies
    4
    Views
    532

    what program should i ...

    hi .
    imagine that i want to make a program at my place but i don't know what they ask for .
    i'm an Windows&"Internet client side" programmer and it seems it remained nothing to do .
    they done all...
  19. Replies
    4
    Views
    724

    Re: TCP/IP maximum backlog

    there is no limit but the limit your ISP can provide .
    in winsock.h this limit is computer dependent but in winsock2.h there isn't anymore .
    you will get some usefull informations if you "ask"...
  20. Replies
    2
    Views
    594

    annoying problem - my program folder ...

    hi .
    suppose i write a program ,pack it, install it and run it .
    at first run i need to make an init.txt file with some data and i need to access it everytime i run the program ...
    so, i need to...
  21. Replies
    2
    Views
    872

    AfxBeginThread pain ...

    i write an mutithreads-apps for Win9x which must "survive" in an hard conditions (low resources on the system) but GetGlobalStatus(...) is not fast enought to tell me that my apps should not launch a...
  22. Thread: mouse click

    by broc
    Replies
    0
    Views
    475

    mouse click

    i need to hook mouse left click on a link in Nescape Nescape or Internet Explorer like Go!zila do .
    any idea?
    thanx
  23. modeless wizard property sheet in a property page ...

    hi,
    i really need help with this . in my app i create at runtime a modeless property sheet(PPSH1) in a property page of another property sheet(PPSH2) which PPSH2 is in a FormView of my SDI app ....
  24. Replies
    2
    Views
    941

    resizing wizard property sheets ...

    hi,
    in my app i need to resize a modeless wizard property sheet at runtime .
    i use GetDlgItem(ID_XXX) to get pointers to "Back" , "Next" , "Cancel" and "Finish" buttons ...
    (e.g....
  25. wizard property sheets - what's the ID of separator ?

    hi,
    in my app i need to redimension a modeless wizard property sheet at runtime .
    i use GetDlgItem(ID_XXX) to get pointers to "Back" , "Next" , "Cancel" and "Finish" buttons ...
    (e.g....
Results 1 to 25 of 70
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured