Daniel, The creation of an MBO goes hand in hand with creating project files. If your program contains calls to functions/procedures that are not in your code, mapbasic cannot compile the program and assumes its part of a project file and therefore builds the MBO (object file).
My advice would be to go through your code and make sure that you aren't calling a subroutine/function that doesn't exist: an example: Declare Sub Main Declare Sub MathSub Sub Main Call MathSub End Sub *You've declared the MathSub subroutine but haven't actually got it within your code...therefore it'll create an MBO thinking that MathSub is somewhere else in another MBO waiting to be compiled into a project file. This is a common error if you suddenly remove a call statement and don't remove the declare sub. Hope this helps... Ben Crane __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com --------------------------------------------------------------------- List hosting provided by Directions Magazine | www.directionsmag.com | To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
