I follow your steps and i installed C:\tablebox
then i modify project seetings for my application -> c++ -> additional include 
library C:/tablebox,
after that i add the following lines to my code
     #include <FL/Fl_Window.H>
                #include <FL/Fl_TableBox.H>

I compiled my code it gives me the same error
then again i modified the project setting -> link -> preprocessor
tablebox.obj

again another error that the file can be opened

????still there is problem











> huda wrote:
> > "fatal error C1083: Cannot open include file: 'fl/Fl_Table.h': No such file 
> > or directory "
>
>       Try using "#include <FL/Fl_Table.H>"
>       ..and not "#include <fl/Fl_Table.h>"
>
> > http://seriss.com/people/erco/fltk/Fl_Table/how-to-use.html
> > I visited this site to learn how to add the package but i did
> > not understand..
>
>       Since Fl_Table is a separate project from FLTK, one normally
>       installs it in a separate directory. For instance:
>
> c:\fltk-1.3.x\                -- fltk install dir
> c:\Fl_Table\          -- Fl_Table install dir
>
>       ..in which case when you compile your own apps, you'd need
>       to have the compiler flags:
>
>               /Ic:\fltk-1.3.x /Ic:\Fl_Table
>
>       ..so that when you build your program, lines like:
>
>               #include <FL/Fl_Window.H>
>               #include <FL/Fl_Table.H>
>
>       ..will resolve correctly. That should solve the error
>       you've shown.
>
>       Be sure to also /link/ with the correct files, eg.
>       fltk.lib, Fl_Table.obj, etc. (Based on your error message,
>       I'm assuming you're using windows..)
>

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to