Aidez- moi!!!!

Aidez- moi!!!! - VB/VBA/VBS - Programmation

Marsh Posté le 05-08-2002 à 00:06:21    

Je veux entrer du texte dans la textbox1 et afficher la valeur correspondante dans la texte box2 en passant par une base de données access ( pour la valeur de la textbox2). je remplis donc la textbox 1 et je clique sur un bouton de commande qui devria mù'afficher la valeur dans la textbox2.
Seulement quand je lance le programme il apparait :
"unrecognized database format:chemein de ma base de données"
puis j'ai quand j'appuie sur le bouton de commande:
"Impossible d'utiliser cette connexion pour effectuer cette opération.Elle est fermée ou non valide dans ce contexte"
 
 
voila le code:
 
 
Dim x As Currency
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
 
Private Sub Command1_Click()
 
Set rs = New ADODB.Recordset
rs.Open "SELECT * FROM C:\Documents and Settings\Tooms\Bureau\Tirage 1.0\Epalement.mdb "
 
If Not rs Is Nothing And rs.Recordcount > 1 Then
rs.Movefirst
rs.Find "Hauteur (en cm) = " & CInt(Textbox1.Text) & ""
rs.Movenext
Textbox2.Text = rs.Fields("Hauteur (enHl)" ).Value
End If
 
Set rs = Nothing
Set cn = Nothing
End Sub
 
Private Sub Form_Load()
 
Set cn = New ADODB.Connection
cn.Provider = "Microsoft.Jet.OLEDB.4.0"
cn.ConnectionString = "C:\Documents and Settings\Tooms\Bureau\Tirage 1.0\Epalement.mdb"
cn.Open
 
End Sub

 
 
AIDEZ MOI SVP!!! QU'EST CE QUI NE VA PAS DANS MON CODE????

Reply

Marsh Posté le 05-08-2002 à 00:06:21   

Reply

Marsh Posté le 05-08-2002 à 11:40:38    

AIDEZ MOI SVP

Reply

Marsh Posté le 05-08-2002 à 12:32:08    

Citation :


rs.Open "SELECT * FROM C:\Documents and Settings\Tooms\Bureau\Tirage 1.0\Epalement.mdb "  


 
c'est quoi ça ??? depuis quand on met un chemin de base après un FROM ??
 
et ensuite, les paramètres pour Open sont archi faux !!! t'as lu le MSDN au moins ?
 
allez, je te file l'article correspondant :

Citation :


MDAC 2.5 SDK - ADO
 
 
 
 
Open Method (ADO Connection)
       
 
Opens a connection to a data source.
 
Syntax
 
connection.Open ConnectionString, UserID, Password, Options
 
Parameters
 
ConnectionString   Optional. A String value that contains connection information. See the ConnectionString property for details on valid settings.
 
UserID   Optional. A String value that contains a user name to use when establishing the connection.
 
Password   Optional. A String value that contains a password to use when establishing the connection.
 
Options   Optional. A ConnectOptionEnum value that determines whether this method should return after (synchronously) or before (asynchronously) the connection is established.
 
Remarks
 
Using the Open method on a Connection object establishes the physical connection to a data source. After this method successfully completes, the connection is live and you can issue commands against it and process the results.
 
Use the optional ConnectionString argument to specify either a connection string containing a series of argument = value statements separated by semicolons, or a file or directory resource identified with a URL. The ConnectionString property automatically inherits the value used for the ConnectionString argument. Therefore, you can either set the ConnectionString property of the Connection object before opening it, or use the ConnectionString argument to set or override the current connection parameters during the Open method call.
 
If you pass user and password information both in the ConnectionString argument and in the optional UserID and Password arguments, the UserID and Password arguments will override the values specified in ConnectionString.
 
When you have concluded your operations over an open Connection, use the Close method to free any associated system resources. Closing an object does not remove it from memory; you can change its property settings and use the Open method to open it again later. To completely eliminate an object from memory, set the object variable to Nothing.
 
Remote Data Service Usage   When used on a client-side Connection object, the Open method doesn't actually establish a connection to the server until a Recordset is opened on the Connection object.


 
et autre chose : merci de ne pas gueuler !! je viens de me réveiller !!


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 05-08-2002 à 13:10:30    

Merci pour ta réponse.  
 
P.S : Si j'avais MSDN je serais aller voir

Reply

Marsh Posté le 05-08-2002 à 13:14:56    

Toomslegrand a écrit a écrit :

P.S : Si j'avais MSDN je serais aller voir




[:google]
http://msdn.microsoft.com


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed