On 15.04.2008, at 00:22, huda wrote: > Finally the code is working BUT > The load function can not work because of this line in code > " //fl_register_images();" When i keep it , it gives me 23 errors > Can i changed it or do somethingelse to not stick with this problem > > also i change the extension from cxx to cpp ?? but i'd like to > know the diffece between both
Huda, - VisualC 5 is not supported by FLTK. VC5 has huge bugs and was dropped by Microsoft probably ten years ago. The earliest version of VC we support is 6 (which is basically a bug-fixed version of 5). There are also free versions of the current developer environment available from the Microsoft webste. - FLTK 1.1.6 is not supported anymore. The current version of FLTK is 1.1.8 if you decide for the FLTK1 branch. - .cxx or .cpp are C plus plus source file. It makes no difference if your files end in cpp or cxx. Both extensions should be accepted by VisualC - you are linking with the fltk libraries, but still not with fltk_jpeg, fltk_png and fltk_zlib or however they may be called in your setup. Removing fl_register_images() will remove all image support from your program. - the number of link bugs has absolutely nothing to do with the severity of the issu. If you have a single link bug, you app will not run. > ANY HELP ANY SUPPORT GUYS Please do not shout at us. I understand that you are desperate to find a solution, and we are doing the best we can. Matthias ---- http://robowerk.com/ _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

