Bonjour
HListeFichier ne renvoie pas le détail des fichiers du serveur quand j'exécute ce code dans un projet sans analyse.
Mais dans un projet avec analyse, il me retourne tous les détails.
Une idée ?
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 
		SI HChangeConnexion(sFichero, sConexion) = Faux ALORS			// CONEXION FALLA
			bConnexionDistante = Faux
			Erreur(HErreurInfo())
		SINON
			// CONEXION CORRECTA
			SI HOuvreConnexion(sConexion) = Faux ALORS
				bConnexionDistante = Faux
				Erreur(HErreurInfo())
			SINON
				// CONEXION CORRECTA
				bConnexionDistante = Vrai
			FIN
		FIN
		ListeFichier = HListeFichier(sConexion, hLstDétail+hLstTout)