Je desire creer une app qui liste des pdf pour les afficher ensuite .
Je ne trouve pas mon bonheur sur le forum ,a part afficher un pdf online via google docs et web.view .
Ici les pdf sont la carte sd .
Merci d'avance
la solution evoquee passe par une app google sur le net qui lis un pdf sur un site web .
moi le pdf est sur la carte sd et je voudrais le lire en local sans passer par le net .
Sub Btn_Tarif_Click Dim nom_file AsString nom_file = "file:///sdcard/_lelong/fiches_tarif/" & nomdoc 'Msgbox(nom_file,"nom fichier") Dim zz AsIntent'Requires a reference to the Phone library zz.Initialize(zz.ACTION_VIEW, nom_file) zz.SetType("application/pdf") 'zz.WrapAsIntentChooser("Choose PDF Viewer") StartActivity(zz) End Sub