missing library

rew

Registered User.
Local time
Today, 02:00
Joined
Aug 22, 2005
Messages
19
Hi,
i've developed a program in access 2003, but now i'm on access 2000 and seems that one / more library is/are missing..

i've this part of code

Code:
Private Sub List0_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Dim strOrd As String, strSql As String
    If Button = 1 Then
        If Y <= 225 Then
            If Right$(List0.RowSource, 5) = " Asc;" Then
                strOrd = " Desc;"
            Else
                strOrd = " Asc;"
            End If
        strSql = "SELECT cliente.CLI_ID, cliente.CLI_TITOLO, cliente.Cognome, cliente.Nome, cliente.Indirizzo, cliente.Cap, cliente.[Citta'], cliente.Regione, cliente.Nazione, cliente.CLI_SOCIO FROM cliente WHERE (((cliente.CLI_SOCIO)=Yes)) ORDER BY "
        Select Case X

and this is the screen with the libraries currently installed ..



i was wondering which one is missing....i'm quite far from my laptop right now..

thanks in advance

bye
 
..

visual basic indicates this part of the code when the "missing library" message appears

Code:
 [B]If Right$[/B](List0.RowSource, 5) = " Asc;" Then
 
problem solved

i've justs unchecked the one that was missing (the "excel11" library) that actually i'm not using and now it works!
 

Users who are viewing this thread

Back
Top Bottom