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

Search:

Type: Posts; User: Cpp_Noob

Page 1 of 12 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: Linked List - Addng entry at the end

    thanks for the help Lindley and itsmeandnobodyelse, i should have been using 'previous' instead of 'current'
  2. [RESOLVED] Linked List - Addng entry at the end

    i have a Node and i want to add a new entry at the end
    the first entry is added correctly on head but the next entry is not added at all




    struct Node
    {
    FlightRec entry;
    Node *next;
  3. Replies
    3
    Views
    1,323

    Re: [MFC] Modal Dialog Question

    thank you both... now i understand , and problem fixed :)
  4. Replies
    3
    Views
    1,323

    [RESOLVED] [MFC] Modal Dialog Question

    im making a simple "Input Dialog" that will return the value of an Edit Box back to the calling Dialog



    CInputDlg InputDlg(this);

    if(InputDlg.DoModal() == IDOK)
    {
    CString res=...
  5. Replies
    7
    Views
    2,005

    Re: Is exe compression safe ?

    yes, there is an unpacker for almost every public packer out there , that can unpack your app in a single mouse click
  6. Replies
    7
    Views
    2,005

    Re: Is exe compression safe ?

    u can still change the dialog by hooking.

    there are PE Packers and PE Protectors
    PE Packers offers compression but they can be unpacked easily with a generic packer or a debugger
    PE Protectors...
  7. Replies
    2
    Views
    615

    Re: Refresh Dialog

    returning wParam fixes the problem :)

    return static_cast<int>(msgs.wParam);
  8. Replies
    2
    Views
    615

    [RESOLVED] Refresh Dialog

    i got a win32 project, on my WinMain() function i create a dialog and i monitor the dialog events. The events are mainly from winsock ( Asynchronous Sockets ).

    The problem is that after getting...
  9. Replies
    4
    Views
    1,013

    Re: [RESOLVED] std string question

    thanks, im still new to the string class
  10. Replies
    4
    Views
    1,013

    Re: std string question

    thank you Philip Nicoletti!
  11. Replies
    4
    Views
    1,013

    [RESOLVED] std string question

    im not really familiar with the string class and i came across a "problem" on my code

    how is it possible to copy an array of bytes (binary) from a char array to a string variable?
    the char array...
  12. Replies
    4
    Views
    1,165

    Re: Winsock send() question

    ah, ok thanks VictorN!
  13. Replies
    4
    Views
    1,165

    Re: Winsock send() question

    ah ok i understand that now....

    another question i have releated to this:

    lets say my client sends Simultaneously 2 files (2 threads sending) to the server
    the client calls the send() function...
  14. Replies
    4
    Views
    1,165

    [RESOLVED] Winsock send() question

    i am working on a send/recieve file application... im sending the file piece by piece (7000 bytes every time) using Asynchronous Sockets through a loop

    my problem is this:
    some times , arbitrary...
  15. Replies
    1
    Views
    620

    Threading Problems

    ok, i am developing a TCP/IP Client-Server application. Im currently working on transferring multiple files simultaneously from Server to Client.

    Here is the code that receives data


    ...
  16. Replies
    2
    Views
    665

    Re: Array question

    thank you :)
  17. Replies
    2
    Views
    665

    [RESOLVED] Array question

    i want to create a 2D char array. my issue is that i dont know how many Rows i will need for the array...

    how can i keep adding rows to the array?
  18. Re: How to start applications more than once (ie. defeat a mutex)?

    1 way is to hook CreateMutex() and give a random mutex value on each extra instance of the programm u open
  19. Replies
    5
    Views
    4,989

    Re: errors with 'shlobj.h' ?

    no , "shobjidl" is not a header i created.... its probably included in "shlobj.h"

    a friend compiled the same project using VC 2008 without any problems thought...
  20. Re: How can Reduce Final Exe of MFc dialog Based application?

    use a runtime packer such as UPX
  21. Replies
    5
    Views
    4,989

    errors with 'shlobj.h' ?

    im using shlobj.h header on VC 6.0 with SDK February 2003 installed , and i get those 2 errors from the header file
    i googled alot but i couldnt find a solution, any1 knows why?
    thanks

    ...
  22. Replies
    3
    Views
    722

    Re: Can I add a template to Visual C++?

    he probably mean an existing project (.cpp and .h files) to be used as a base project for new applications... so he wont have to make an empty project and manually add those files every time
  23. Replies
    16
    Views
    2,800

    Re: [RESOLVED] Memory leak?

    that is sooo true Paul McKenzie , most of my codes are "low level" and my eyes do glaze when looking over at STL code.
  24. Replies
    25
    Views
    2,896

    Re: exe generates another exe

    not sure what u want to archive or why it HAS to be done like the way u mention besides all the alternative ideas the gave u , but heres how it can be done:

    compile the new exe u want to...
  25. Replies
    16
    Views
    2,800

    Re: [RESOLVED] Memory leak?

    yes im still interested on whats wrong VladimirF
    how can i prevent the variable from getting overwritten?

    im using VC 2008 , no warnings about this :(
Results 1 to 25 of 297
Page 1 of 12 1 2 3 4





Click Here to Expand Forum to Full Width

Featured