Page 1 of 1

error

Posted: Mon Apr 11, 2022 11:39 am
by Eugene Lutsenko
All this works on my computer, but others don't. Why, please tell me

Code: Select all

     //----- FOXCDX: DBF-FPT-CDX                                                
     IF ! DbeLoad( "FOXDBE", .T.)     // load engine for DBF files            
        msgbox( "Database Engine FOXDBE not loaded" , "STOP" )                
        QUIT                                                                  
     ENDIF                                                                    
     IF ! DbeLoad( "CDXDBE", .T.)     // load engine for DBF files            
        msgbox( "Database Engine CDXDBE not loaded" , "STOP" )                
        QUIT                                                                  
     ENDIF                                                                    
     DbeBuild( "FOXCDX", "FOXDBE", "CDXDBE" )   // DBE=FOXCDX                 
     *** DbeSetDefault("FOXCDX")  // OFF                                      
------------------------------------------------------------------------------
ERROR LOG of "C:\NIKITA\crypton\_Crypton.exe" Date: 04/11/2022 21:33:29

Xbase++ version : Xbase++ (R) Version 2.00.1461
Operating system : Windows 10 1809 Build 17763
------------------------------------------------------------------------------
oError:args :
-> VALTYPE: C VALUE: FOXDBE
-> VALTYPE: L VALUE: .T.
oError:canDefault : Y
oError:canRetry : N
oError:canSubstitute: N
oError:cargo : NIL
oError:description : Operating system error
oError:filename :
oError:genCode : 40
oError:operation : DbeLoad
oError:osCode : 126
oError:severity : 2
oError:subCode : 4
oError:subSystem : BASE
oError:thread : 1
oError:tries : 0
------------------------------------------------------------------------------
CALLSTACK:
------------------------------------------------------------------------------
Called from MAIN(97)

Re: error

Posted: Mon Apr 11, 2022 12:11 pm
by rdonnay
You need to make sure to copy the foxdbe.dll, cdxdbe.dll files to the other computers.

Re: error

Posted: Mon Apr 11, 2022 12:41 pm
by Eugene Lutsenko
Thanks!