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

Search:

Type: Posts; User: FireJocker

Page 1 of 4 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    0
    Views
    1,055

    Virtual Hard Drive (daemon tool like)

    Hi,

    I'm looking for information about how to simulate a hard drive using a file in c++ like does daemon tool does

    Thanks
  2. Replies
    3
    Views
    3,111

    Re: CBitmapButton:LoadBitmaps() question....

    Hello,

    For me, this function doesn't work (under Visual C++ 6).

    I had to rewrite it like this :



    BOOL CMyBitmapButton::LoadBitmaps(LPCTSTR lpszBitmapResource, LPCTSTR...
  3. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    Hi,

    I'm trying many things to get it, but I failed,

    here is my test code :



    CString sErr;
  4. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    I never write SSL request, do you know where i can found any information about this ?

    "SSL request" on google is loosing me !

    thanks.
  5. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    Argh !

    I won't see I need to write the protocole by myself.

    It's an SSL connexion, it's not so easy like "GET /"
  6. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    Thanks for your help,

    I'll follow your code.
  7. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    Writing InternetOpen is more reliable , you seems telling InternetOpen might be used instead of InternetOpenUrl.

    But I also use it,

    here is my code (for eMbedded Visual C++)


    CStatic *...
  8. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    I work on a PDA using WinCE 5.0

    but, even disconnected from PC, the embedded application continue to get error 12031 on InternetOpenURL
  9. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    The problem seem being due to AtiveSync,

    anyone knows something about it ?
  10. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    no
  11. Replies
    17
    Views
    23,501

    Re: WinInet : Error 12031

    Now, it re-run correctly :S

    So, i can't get any error to analyse it ?

    While it didn't ran, internet was ok, i successfully surf on web :(

    so what's wrong ?
  12. Replies
    17
    Views
    23,501

    WinInet : Error 12031

    Hi,

    My code was running correctly for a long, and now, only on my pc, I got an error code while getting a ssl web page,

    here is the error :



    here a piece of my code :
  13. Re: Re-Init a serial port after a comm crash

    Ok,I got my answer by the seller of the terminal,

    in fact, when terminal support is disconnected, communication speed is re initialised.
  14. [RESOLVED] Re-Init a serial port after a comm crash

    Hi,

    I'm coding a software witch communicate with a terminal through the COM1. No problem with this, all is right.

    Porblems appear when phisical link is disconnected between the terminal and...
  15. Replies
    0
    Views
    316

    identify the COM1..X wanted

    Hi,

    I'm coding an application which communicate with a usb terminal,
    when installing it, i note that it was on COM6 and is named 308

    So, in configuration panel, I got : 308(COM6) in COM...
  16. Re: Identify a cd-rom (is there a SID in a cd ?)

    I got it



    if(::GetCurrentDirectory(sizeof(szDir) - 1, szDir)){
    driver = szDir;
    p = driver.Find("\\");
    driver = driver.Left(p+1);
    driver.MakeUpper();
  17. Re: Identify a cd-rom (is there a SID in a cd ?)

    How getting the drive where is running the .exe ?

    thx
  18. Re: Identify a cd-rom (is there a SID in a cd ?)

    Yes, I'll do that to check,

    thanks.
  19. Re: Identify a cd-rom (is there a SID in a cd ?)

    and it will be enought ?

    each number got on each cd will be different ?
  20. Identify a cd-rom (is there a SID in a cd ?)

    Hi,

    I need to create an application which will be writted on many CD-ROM (10.000 cd), each cd is same as other, there isn't any possibility to write a different file on each cd,

    But I need to...
  21. Re: [RESOLVED] Add Maximize property before creating a CDialog herited window

    I already tried it, but, window stay the same with this :(
  22. Re: Add Maximize property before creating a CDialog herited window

    ok, i found what i wanted here
  23. [RESOLVED] Add Maximize property before creating a CDialog herited window

    Hi,

    In my code, i have a customed CDialog class, for some reasons in a customed CBitmapButton, I need to add a maximized property on my cdialog before each other component (button, edit...) is...
  24. Re: Set "Owner Draw" property in the constructor

    Thanks, it's good !

    this->ModifyStyle(0, BS_OWNERDRAW);

    :cool:
  25. Re: Set "Owner Draw" property in the constructor

    Ok, but wich style adding ?

    I don't see Owner draw in style list
Results 1 to 25 of 94
Page 1 of 4 1 2 3 4





Click Here to Expand Forum to Full Width

Featured