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

Search:

Type: Posts; User: twutort

Search: Search took 0.02 seconds.

  1. Replies
    14
    Views
    2,891

    Yeah, I thought so as well. Thank you all for...

    Yeah, I thought so as well. Thank you all for your help.
  2. Replies
    14
    Views
    2,891

    Instead of this step: LPCTSTR fname =...

    Instead of this step:

    LPCTSTR fname = (LPCTSTR) argv[1];

    I did this:

    CString fname(argv[1]);
    modelEd->HandlePopupMenuItems(fname, nID);

    This is working. I was trying to cast to an...
  3. Replies
    14
    Views
    2,891

    Thanks, but I actually already tried putting the...

    Thanks, but I actually already tried putting the Trace before the ReverseFind to verify that the string has the character I was looking for. It did not find the character though.

    Within the...
  4. Replies
    14
    Views
    2,891

    I meant the method CString method ReverseFind. ...

    I meant the method CString method ReverseFind.

    Here is the problem, I have a legacy method that I can not change and it requires an LPCTSTR. My string that I need to pass to this method comes...
  5. Replies
    14
    Views
    2,891

    char *argv[] is the command line parameters. ...

    char *argv[] is the command line parameters.

    int main(int argc, char *argv[])
    {

    }
  6. Replies
    14
    Views
    2,891

    Casting to LPCTSTR

    Hello,

    I am taking a command line argument from argv and casting it to a LPCTSTR. When I do this and attempt to do a reversefind on the LPCTSTR it finds nothing even though I'm positive that the...
  7. Replies
    2
    Views
    518

    Sorry, the software we are working with contains...

    Sorry, the software we are working with contains 10 libraries and one exe. All of the libraries seem to refernce classes in the other libraries. For what we want to do it requires you to have the...
  8. Replies
    5
    Views
    710

    I built my first dll and everything went ok. It...

    I built my first dll and everything went ok. It holds code required to build the second library as a dll. WHen I built the second library and included the first dll (I included lib1.lib) I got link...
  9. Replies
    2
    Views
    518

    Including dlls in project

    Hello,

    I'm working on a project that requires us to connect with some c++ code from our code written in a different language. We can do that but it requires that the current c++ code be included...
  10. Replies
    5
    Views
    710

    dll

    Thanks. I also would like to include another dll into my project. Do I include it in the lib area as well?
  11. Replies
    5
    Views
    710

    including libraries in dll

    Hello,

    I'm new to MFC and I need to create a dll with some existing code. I create the dll in visual studio but I get a bunch of LINK2001 errors when it links. The code I use references a couple...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured