CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 2 FirstFirst 12
Results 16 to 27 of 27
  1. #16
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    The directory is in visual studio, folder "include"?
    I try it but not work
    The error is the same, file not exist.
    What did you try?
    Does the folder "bzscmn" exist within the VC "Include" directory?
    Does the file "file.h" exist within "bzscmn" folder?
    Did you try
    Code:
    #include <bzscmn\file.h>
    or
    Code:
    #include "bzscmn\file.h"
    rather than
    Code:
    #include <bzscmn/file.h>
    Quote Originally Posted by johnmcloud@libero.it View Post
    I'll post the library, so you can try.
    Don't do it. No one here needs it.
    Victor Nijegorodov

  2. #17
    Join Date
    Jun 2011
    Posts
    13

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by VictorN View Post
    What did you try?
    Does the folder "bzscmn" exist within the VC "Include" directory?
    Does the file "file.h" exist within "bzscmn" folder?
    Did you try
    Code:
    #include <bzscmn\file.h>
    or
    Code:
    #include "bzscmn\file.h"
    rather than
    Code:
    #include <bzscmn/file.h>
    Don't do it. No one here needs it.
    First: Yes
    Second: Yes
    Third:Now Yes, with the "" and the <> & / \ --- Not working

    I'll post the library not for ads or something, only for understand why the my vb don`t see that library. And i repeat, isn't my code/library, i'd like to modify one simply string.
    But it revealed so difficult for me...
    Last edited by johnmcloud@libero.it; July 1st, 2011 at 11:05 AM.

  3. #18
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    First: Yes
    Second: Yes
    Third:Now Yes, with the "" and the <> & / \ --- Not working
    well, then try to #include this file using its actual full path name with "".

    And, BTW, why do you place any non-Microsoft files/folders within Microsoft VC directory?

    Quote Originally Posted by johnmcloud@libero.it View Post
    I'll post the library not for ads or something, only for understand why the my vb don`t see that library.
    Again: your library has nothing to do with the error you are still referring to:
    Quote Originally Posted by johnmcloud@libero.it
    Code:
    Fatal Error C1083 Cannot open include file "bzscmn/file.h" No such file or directory
    Victor Nijegorodov

  4. #19
    Join Date
    Aug 2000
    Location
    New York, NY, USA
    Posts
    5,656

    Re: [C++] Build Error? Please Help!

    Did you run the setup for this library?
    Did you see this option page? What did you have checked on it?
    Attached Images Attached Images  
    Vlad - MS MVP [2007 - 2012] - www.FeinSoftware.com
    Convenience and productivity tools for Microsoft Visual Studio:
    FeinWindows - replacement windows manager for Visual Studio, and more...

  5. #20
    Join Date
    Jun 2011
    Posts
    13

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by VictorN View Post
    Again: your library has nothing to do with the error you are still referring to:
    Sorry VictorN, but i think is the problem. The file .cpp need to include a external file ( file.h and many other ) to be build
    That file is a part of the library. The author of the software say:

    To build WinCDEmu from the source code, you'll need to download the BazisLib library.

    I think the problem is i can't load this library, so i can't build the file.

    Quote Originally Posted by VladimirF View Post
    Did you run the setup for this library?
    Did you see this option page? What did you have checked on it?
    Never see that screen before
    After install i have only the directory with the file, and i have drag/drop in the "include" vb. I think the same thing do that window

  6. #21
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    ...
    Never see that screen before
    After install i have only the directory with the file, and i have drag/drop in the "include" vb. I think the same thing do that window
    What does
    "include" vb have to do with the VC?
    Victor Nijegorodov

  7. #22
    GCDEF is offline Elite Member Power Poster
    Join Date
    Nov 2003
    Location
    Florida
    Posts
    12,635

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    Sorry VictorN, but i think is the problem. The file .cpp need to include a external file ( file.h and many other ) to be build
    That file is a part of the library. The author of the software say:

    To build WinCDEmu from the source code, you'll need to download the BazisLib library.

    I think the problem is i can't load this library, so i can't build the file.



    Never see that screen before
    After install i have only the directory with the file, and i have drag/drop in the "include" vb. I think the same thing do that window
    The library comes into play when you link your code. You're getting compile errors. You haven't got the point where the library is being used yet.

  8. #23
    Join Date
    Jun 2011
    Posts
    13

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by GCDEF View Post
    The library comes into play when you link your code. You're getting compile errors. You haven't got the point where the library is being used yet.
    I don't have idea, this is the reason i have post a thread to this forum, with a hope someone with 5 minute download the source and the library and see what is the problem. Its one week i can try with no results

  9. #24
    Join Date
    Aug 2000
    Location
    New York, NY, USA
    Posts
    5,656

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    Never see that screen before
    After install i have only the directory with the file, and i have drag/drop in the "include" vb. I think the same thing do that window
    So WHAT did you install?
    I actually followed your link to sourceforge and got the installer from there.
    How did you "install" it?
    Vlad - MS MVP [2007 - 2012] - www.FeinSoftware.com
    Convenience and productivity tools for Microsoft Visual Studio:
    FeinWindows - replacement windows manager for Visual Studio, and more...

  10. #25
    Join Date
    Jun 2011
    Posts
    13

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by VladimirF View Post
    So WHAT did you install?
    I actually followed your link to sourceforge and got the installer from there.
    How did you "install" it?
    Sure i install, it appears a screen to select directory to extract, default is:
    C:/opensource/bazislib
    It install in that director and finish

    I have also upload the file in .rar in a previus post, so i have install it

  11. #26
    Join Date
    Aug 2000
    Location
    New York, NY, USA
    Posts
    5,656

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by johnmcloud@libero.it View Post
    Sure i install, it appears a screen to select directory to extract, default is:
    C:/opensource/bazislib
    It install in that director and finish

    I have also upload the file in .rar in a previus post, so i have install it
    Where did you get your "installer"?
    I just went to the sourceforge, clicked on green button "Download BazisLib-2.5.3.exe".
    That exe file is the installer, which prompts to update your Visual Studio include path (as seen on my screenshot).
    Anyway, if you don't run this installer, you can update this path yourself:
    Tools->Options->Projects and Solutions->VC++ Directories and select "Include Files".
    I think it was already suggested above in this thread...
    Vlad - MS MVP [2007 - 2012] - www.FeinSoftware.com
    Convenience and productivity tools for Microsoft Visual Studio:
    FeinWindows - replacement windows manager for Visual Studio, and more...

  12. #27
    Join Date
    Jun 2011
    Posts
    13

    Re: [C++] Build Error? Please Help!

    Quote Originally Posted by VladimirF View Post
    Where did you get your "installer"?
    I just went to the sourceforge, clicked on green button "Download BazisLib-2.5.3.exe".
    That exe file is the installer, which prompts to update your Visual Studio include path (as seen on my screenshot).
    Anyway, if you don't run this installer, you can update this path yourself:
    Tools->Options->Projects and Solutions->VC++ Directories and select "Include Files".
    I think it was already suggested above in this thread...
    I have the file in "include" dir, i have add the file with "include file"
    Can you try to compile the .cpp for me? It`s only one string...
    Please.

Page 2 of 2 FirstFirst 12

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured