Documentazione di Gambas
Application Repository
Come...
Componenti
Da fare
Documentazione Sviluppatori
Documenti
Indice del linguaggio
LEGGIMI
Lessico
Licenza dello Wiki
Messaggi di errore
Access forbidden (43)
Argument cannot be passed by reference (62)
Bad archive (51)
Bad argument (20)
Bad event handler (28)
Bad expression (57)
Bad format string (40)
Bad number of dimensions (22)
Bad project file (36)
Bad regular expression (50)
Bad string conversion (32)
Bad use of virtual class (54)
Cannot create callback (66)
Cannot find dynamic library (60)
Cannot find symbol in dynamic library (61)
Cannot load class (2)
Cannot load component (27)
Cannot open file (35)
Cannot register class (52)
Class is static (10)
Device is full (37)
Division By Zero (26)
End of file (39)
File already exists (38)
File is a directory (46)
File is closed (53)
File is locked (58)
File name is too long (44)
File or directory does not exist (#45)
Illegal instruction (8)
Invalid date (33)
Invalid object (29)
Invalid path (34)
Mathematical error (19)
No instanciation method (25)
No parent class (59)
No return value (18)
No startup method (24)
Not a directory (49)
Not a function (9)
Not an array (23)
Not an enumeration (30)
Not an object (12)
Not enough arguments (4)
Null object (13)
Out of bounds (21)
Out of memory (1)
Overflow (7)
Read error (47)
Serialization error (67)
Stack overflow (3)
Static array (65)
STOP instruction encountered (55)
Symbol is badly overridden (63)
Symbol is not a property (17)
Symbol is not static (41)
Symbol is read only (16)
Symbol is static (14)
Symbol is write only (15)
System error... (42)
Too many arguments (5)
Too many simultaneous new strings (56)
Type mismatch (6)
Unknown symbol in class (11)
Unsupported string conversion (31)
Void key (64)
Write error (48)
Panoramica del linguaggio
Registrazione
Ultime modifiche
Wiki Manual

Cannot load component (27)

Problema:
L'interprete non riesce a caricare lo specifico componente (componenti).

Soluzione:
Quando si ottiene questo messaggio, significa che un componente necessario non รจ stato compilato a causa della non installazione del pacchetto di sviluppo in questione.

Supponiamo che stiate usando Debian 3.1, e che otteniate questo messaggio:

ERROR: #27: Cannot load component 'gb.pcre': cannot find library file

Con Debian 3.1, libpcre.dev non viene istallato normalmente quando il sorgente di Gambas viene compilato. Va notato comunque che ./configure nel suo rapporto a video notifica che il componente non esiste. Per risolvere questo problema, bisogna istallare il pacchetto mancante (in questo caso libpcre.dev) e ricompilare il sorgente con ./configure; make; make install.

Fare riferimento alla guida sulla compilazione per i componenti: http://gambas.sourceforge.net/compilation.html - necessari per la vostra distribuzione.

Previous: Division By Zero (26)_ Next: Bad event handler (28)_