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

Search:

Type: Posts; User: justin0108

Page 1 of 9 1 2 3 4

Search: Search took 0.04 seconds.

  1. Re: What could cause a core dump at iterator pre increment??

    Thank you guys for all the valuable advice and discussion.

    I simply LOVE this forum!!!
  2. Re: What could cause a core dump at iterator pre increment??

    I just did a quick reference about C++ 11 erase, it states . By that it would mean I can no longer use that iterator anymore right? If so what would be the use of returning an iterator during an...
  3. Re: What could cause a core dump at iterator pre increment??

    Wow! This is something new for me!! Thank you Philiip Nicoletti. I will patch this in and stress test it again. Can I know where did you reference this from? I have read quite a few C++ books but I...
  4. Re: What could cause a core dump at iterator pre increment??

    The crash does not happen everytime which indicate very high probability that it is memory corruption. It has been running for 3 days without crashing since the last crash so we were "lucky" to get...
  5. What could cause a core dump at iterator pre increment??

    Hi all,

    Due to the sensitivity of the codes, I am not able to post the original source here. I got the core dump file so I know exactly which line it crashes. Below are some of the information:
    ...
  6. WebClient return unauthorized exception (401)

    Hi guys,

    I am trying to use the WebClient object to download some data using http POST. It is actually a lottery website as given in the following link:...
  7. Replies
    0
    Views
    2,708

    Advice needed on ZPG ( Zero Player Game )

    Hi guys,

    I am relatively new to web programing. I do have knowledge on HTML, PHP, MySQL, JavaScript and AJAX.

    Can I have some advice on how to program a web based zero player game? ( eg....
  8. Replies
    4
    Views
    585

    Re: A question regarding the function send

    When the IE browser close did you verify on your installer that the data you recv is the data that you are trying to send?
    Could the recv return a value of 0 that just indicates that the browser...
  9. Replies
    2
    Views
    578

    Re: Need help on ADC/DAC

    Ok thx cilu...looks like I gota hop to "General Developer Question" forum to try my luck ;)
  10. Replies
    2
    Views
    578

    Need help on ADC/DAC

    Hi

    I hope this is the correct forum to post this question. I have posted in the "General Discussion Forum" but not much luck.

    Currently I am developing some recording modules in C++ on Linux...
  11. Replies
    3
    Views
    773

    Re: Need guidance on ADC / DAC

    Hi Skizmo

    Thanks for the info. I forgot to mention that all my message recording modules are on Linux platform...my apologies :blush:
    Currently the recording module I have written is only capable...
  12. Replies
    3
    Views
    773

    Need guidance on ADC / DAC

    Hi guys
    Anybody can direct me to a good forum to do voice recordings? I already have an on-going project in c++ and already has a module that records all the messages pass between modules.
    The...
  13. Replies
    6
    Views
    866

    Re: [RESOLVED] Warning problem.

    Hi I'm just curious what is your solution. I would change the string::size_type to size_t instead because word.size() return a size_t. Is there a better way to remove the warning?
  14. Replies
    2
    Views
    1,962

    Re: TCP/IP port allocation questions

    Hi thanks for the reply. I was wondering how can 2 or more connections share the same data port. That clears my doubt ;)
  15. Replies
    2
    Views
    1,962

    TCP/IP port allocation questions

    Hi Guys

    Firstly I hope this is the right forum to post this question.

    I am working on some C++ project on socket programing..both Windows and Linux base. I am using the sockets api...
  16. Any good logging framework recommendations?

    Hi guys,

    Due to the tight deadline of my project, I am not able to evaluate the those free logging framework.

    Most of the projects that I dealt with are using ACE logger and Log4J. Currently...
  17. Re: [RESOLVED] Need help in identifying windows control

    Roger that :)

    Anyway I found that recommended article from you post in May 2008 :D
  18. Re: Need help in identifying windows control

    Hi

    I already found what I needed from this forum. Thanks

    In case there are other people searching for this. Here is the link
    ...
  19. [RESOLVED] Need help in identifying windows control

    Hi

    I need to find out the windows control name from you guys.
    In Visual Studio IDE during form designing, there is a control on the left hand side of the IDE, "Toolbox". When you mouse over the...
  20. Re: Is it possible to have translucent textbox in ListView?

    Hi Woof

    I have tried your advice about setting the Parent Property but it does not work for me.

    I can get my translucent label to work if it's parent is a Form, Panel or even PictureBox. But...
  21. Is it possible to have translucent textbox in ListView?

    Hi

    Is it possible to have a translucent TextBox/Label over a ListView? I found an example in CodeProject which works if the TextBox is a control is a Form or Panel. But I can't get it to work if...
  22. Re: strange: dynamic casting and free(): invalid pointer

    Thanks for the correction :) I didnt know it will result in undefine behavior. Still have a long way to learn :)
  23. Re: strange: dynamic casting and free(): invalid pointer

    Hi
    Base on the code snippets I can't tell what is wrong also.

    You should have a virtual destructor at your base class which is your Game class.

    virtual ~Game();
    Might not solve the problem...
  24. Replies
    2
    Views
    2,004

    Re: Convert to Unix Time stamp

    string timeToken = "12345678"; // your token in csv file
    char strTime[100] = { 0 };

    time_t timeRep = atoi( timeToken.c_str() );

    tm* ptm = gmtime( &timeRep );

    sprintf( strTime, "%d %d/%d...
  25. Replies
    8
    Views
    1,052

    Re: Program Compiles - Segmentation fault

    void con_PLatin (char word[], const int length)
    {
    char temp[20];
    char tempword[25];
    char chartemp[20];
    int i = 1;
    int j = 0;
    int a = 0;
    int length_tempword;
Results 1 to 25 of 215
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured