> 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>" > I do your steps which are very cler but still it does not work the same error , yes i am working with windows
I install the folder "TableBox.zip" the extact in the folder in c directory then i modify my project settings -> c++ -> preprocessor -> additional include directories and i wrote c:/TableBox it is inform me that new project is built when i finshed this step i add this link in my project #include <FL/Fl_Window.H> #include <FL/Fl_TableBox.H> it does not work and i changed it #include <FL/Fl_Window.H> #include <FL/Fl_Table.H> it does not work then i tried to put in project settings -> link "Fl_TableBox.obj" and i changed many times but stilll same error plus link problem can not open the directory "Fl_TableBox.obj" hopefully i explained my problem in clear way > > 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

