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

Search:

Type: Posts; User: Owyn

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: display text in OpenGL stopped working on new VC

    i have multi-byte
  2. display text in OpenGL stopped working on new VC

    hi, so i started useing VC 2005 express instead of VC 6 and after taking care off all everything that started giving errors instead of excellent working like before i still can't get gl text to...
  3. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    i have no PASV..

    but it works for most users, why it doesn't for some of them?
  4. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    Sleep(1) didn't help, still freezes on STOR command =\
    +tester downloaded filezilla and uploaded files with it fine =\ so something is wrong with my code
  5. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    i added Sleep(1) for upload file function, will test it as soon as my tester user with problem comes online

    btw, here are ftp server logs for users with simular error with me application:

    my...
  6. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    i moved to a thread but still on some clients FTP upload freezes at start )= can't find the problem myself
  7. Replies
    32
    Views
    11,159

    Re: Need help writing a program to hide cmd windows

    i tried shellexecute and winexec with sh_hide but it has no effect at all, my console just popped up like usually
  8. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    actually after some testing, i see that many users can't upload files, they just do STOR command and creates an 0 bytes file then they stuck, they still connected but stuck at the first file =\
  9. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    thx, i made it in other thread and it became better (=

    one more question about my ftp, what can stop ftp from working on some users? i tested it with many people and i could not get ftp to upload...
  10. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    actually "freeze" is while transferring files, until files are transfered all is frozen
  11. Replies
    15
    Views
    2,561

    Re: FTP actions freezes application while executing

    here you are
  12. Replies
    15
    Views
    2,561

    FTP actions freezes application while executing

    hi, when i put FTP into a program and then run it, while uploading\downloading\connection my program freezes, is that a global problem for FTP or cuz of my bad code? would very appreciate help, here...
  13. Replies
    0
    Views
    1,361

    some security class

    some security class i found in the internet which has a lack of such i'd like to share here and if possible get help\advices how to get this to work, this will help me and all others who search for...
  14. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    i did, it gave me some ASM infomation and weird numbers, how that would help me say where it crashes?
  15. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    that was my real code i tested and crashed with
  16. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    using namespace std;

    string str ("\\Hello\\world");

    transform(str.begin(),str.end(),str.begin(),tolower);



    *edit, o sorry, i removed transform and it still crashed, so i looked up and saw...
  17. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    it says many things that it can't do and gives me dissasembly code at this point:
    785912E1 and dword ptr ds:[785BD7A0h],0

    and last log line says that application closed with error code...
  18. Re: strlen and strcmp for std strings? do i have to convert strings to char to use it

    yes, i found many full usefull articles there and their reference i think has all functions explained
  19. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    thx, that's a nice bool


    *edit, but it crashes the application whenever i use it =\

    i use it like

    if(case_insensitive_equal(str1,str2) { //actions; }

    even if i leave just return true; in...
  20. Re: strlen and strcmp for std strings? do i have to convert strings to char to use it

    sorry about such basic questions, guess i'll take a better look at msdn and google before asking them, i'll post only more complex things from now ^^
  21. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    that's not nice, is there a case insensitive std string comparing? becouse if i use == it won't work if case is wrong. or a good and only one way is to get rid of all capital letters and replace it...
  22. Re: strlen and strcmp for std strings? do i have to convert strings to char to use it

    o sorry)


    i just write program and when i stuck at something or don't know how to do it i go google or\after ask questions

    i use MSDN but i have little troubles navigating there, got to learn...
  23. Replies
    25
    Views
    3,248

    Re: modules handle comparing doesn't work

    one more question about GetModuleFileNameEx(), why does it get full paths in a random way? i mean sometimes it is
    G:\hello\lib.dll

    and other time it is
    g:\Hello\lib.dll
  24. strlen and strcmp for std strings? do i have to convert strings to char to use it?

    about strcmp it was a bad question) but still, how to get std string length?
  25. Replies
    7
    Views
    4,539

    Re: loop inside a loop, how to break; both?

    found a solution, break inside 2nd loop was working for 2nd loop, if 2nd loop's step had no break it continued forever

    i added a bool condition for 2nd loop conditions, break for every not met if...
Results 1 to 25 of 141
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured