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

Search:

Type: Posts; User: kberson

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Replies
    2
    Views
    622

    Explain the Output

    This is a dumb question, going back to the basics, but I want to understand the "why" of it, so I'm posting it anyway.

    Given the following code:



    #include <iostream>

    using namespace std;
  2. Replies
    6
    Views
    816

    Learning Embedded?

    I am seeing all these jobs for people with embedded C/C++ experience, and I am wondering if there's a way to learn embedded on your own. Are there tools available to teach-yourself embedded?
    ...
  3. Replies
    1
    Views
    574

    Re: Newbie CHttpFile Question

    Never mind; I was able to figure it out from other posts here.
  4. Replies
    1
    Views
    574

    Newbie CHttpFile Question

    I'm new to using CHttpFile, I've never had to work with it before. Now I must write something that will post a query to a webservice and read the XML response. :confused:

    I have been given a...
  5. Re: VS7.1 to VS8: Convert Project vs. New Project

    Awesome! Such a simple solution!

    Thanks!
  6. VS7.1 to VS8: Convert Project vs. New Project

    I'm having some frustrations using VS8. Simple code that compiles cleanly in VS7 is generating errors in VS8.

    If I convert a project from VS7 to VS8 it compiles cleanly, but if I create a new...
  7. Replies
    2
    Views
    2,093

    Active FTP vs. Passive FTP

    I know the difference between active and passive FTP (there's an excellent definition here: Active vs. Passive FTP), but what I want to know is: Is there a way to determine what is set up on the...
  8. Replies
    0
    Views
    2,810

    CFtpConnection and SSL

    I have built a wrapper around the CFtpConnection code to create a CFtp.

    It has members like Login() and LogOut(), PutFile(), GetFile(), SetDir(), MakeDir(), etc. It can handle passive connections...
  9. Replies
    6
    Views
    4,497

    Re: Get count of handles

    Good question! I'm looking for the value that the Task Manager displays when you check the handle count
  10. Replies
    6
    Views
    4,497

    Get count of handles

    Which Windows API will get you the number of handles in use by a process?
  11. Replies
    4
    Views
    2,132

    Re: CreateFileMapping Problem

    Thanks, that's exactly what it was.
  12. Replies
    4
    Views
    2,132

    Re: CreateFileMapping Problem

    Thanks, that didn't make any difference.

    I actually had it as PAGE_READWRITE and was testing to see if changing it made any difference. When I put everything back so that I could post it here, I...
  13. Replies
    4
    Views
    2,132

    CreateFileMapping Problem

    This is perplexing. I set up a test of shared memory in a down & dirty application, and it worked fine. Now I'm going back through and cleaning it up. I'm attempting to move the shared memory to a...
  14. Replies
    4
    Views
    6,103

    Listing ProcName in a DLL

    How do I get the names of all the functions within a DLL? Microsoft's "Depends" application does it, so I know it's possible.
  15. Replies
    0
    Views
    983

    Error 12031 doing FtpConnection

    I have a simple FTP transfer program that automatically logs in from a client's site and uploads error logs to our FTP site. The program is running fine at about 95% of our customer servers.

    At...
  16. Replies
    0
    Views
    1,143

    CFtpConnection in passive mode problem

    I've been searching every where for answers to this, hopefully some one here will have an answer.

    I have an application that must transfer files from a remote server to our central FTP server. ...
  17. That wouldn't compile either: error C2039:...

    That wouldn't compile either:

    error C2039: 'sh_none' : is not a member of 'std::basic_filebuf&lt;_Elem,_Traits&gt;'

    Here's a simple example --



    #include "stdafx.h"
    #include...
  18. hmmm... the include didn't come out, but it...

    hmmm... the include didn't come out, but it should be there
  19. #include using namespace std; int...

    #include <fstream>
    using namespace std;

    int main() {
    ofstream test //Initiate "test" handle
    test.open("somefile.txt",ios::app,filebuf,sh_none); //Open File
    test << "Line Written to file"; ...
  20. Replies
    1
    Views
    517

    Mixing managed/unmanaged code

    Question about mixing managed/unmanaged code. A little background first:

    The core product for my company is developed using Borland. It has hooks in it to allow new functions to be added to it...
  21. Replies
    2
    Views
    741

    VC7.net debug -- stepping into code

    I'm pretty new to VC7.net -- just installed it this month in fact -- but as a long time VC6 user, I expected to be able to walk through my code while debugging it.

    However -- I'm having an issue...
  22. Replies
    1
    Views
    537

    Is there a keyboard command for it?

    In VC6, F4 would find the output results, be it from your build or from a find-in-files. In VC7, F4 now only works with the build, at least from what I've seen.

    Is there a keyboard command for...
  23. Replies
    13
    Views
    1,388

    It's definitely a change with .Net

    Commenting out #include <afxdtctl.h> didn't make any difference.

    A bug? In a Microsoft product. Heavens!

    I'd like to continue using log, as I have it throughout all my projects and I don't...
  24. Replies
    13
    Views
    1,388

    Why can't I have a global named "log"

    Can some one tell me why this compiles under VC.Net in Debug but not Release mode?

    The error message I get is C2365: 'log' : redefinition; previous definition was a 'member function'




    //...
  25. fstream & file sharing: How to do what you used to be able to do?

    With .Net 2003, fstream.h disappeared and the open command went from three parameters to two.

    How do I now open a file and deny other applications from accessing the file until I am done writing...
Results 1 to 25 of 51
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured