CommonDialog + ShowPrinter
Fermé
Lenouveauapprenti
Messages postés
300
Date d'inscription
samedi 22 décembre 2018
Statut
Membre
Dernière intervention
7 avril 2024
-
Modifié le 27 mai 2019 à 20:48
Lenouveauapprenti Messages postés 300 Date d'inscription samedi 22 décembre 2018 Statut Membre Dernière intervention 7 avril 2024 - 27 mai 2019 à 20:54
Lenouveauapprenti Messages postés 300 Date d'inscription samedi 22 décembre 2018 Statut Membre Dernière intervention 7 avril 2024 - 27 mai 2019 à 20:54
1 réponse
Lenouveauapprenti
Messages postés
300
Date d'inscription
samedi 22 décembre 2018
Statut
Membre
Dernière intervention
7 avril 2024
2
27 mai 2019 à 20:54
27 mai 2019 à 20:54
Re Bonjour
J'ai essayé un autre code sans résultat escompté
Je vous demande de m'indiquer mes erreurs, Merci d'avance
'______________________________Impression
J'ai essayé un autre code sans résultat escompté
Je vous demande de m'indiquer mes erreurs, Merci d'avance
'______________________________Impression
Dim NDebut, NFin As Integer
Dim NbreNumCopies, ICopies As Integer
On Error GoTo xxx:
CmnDialog.ShowPrinter
NDebut = CmnDialog.FromPage
NFin = CmnDialog.ToPage
NbreNumCopies = CmnDialog.Copies
SQLs = "select * from TableGrandLivre where ((Dossier='" & CStr(VarDossier) & "')and (Compte=" & CLng(CmbCompte) & "))" & "order by NOrdreGl asc"
If RS.State = adStateOpen Then RS.Close
RS.Open SQLs, DB, adOpenKeyset, adLockPessimistic
ADGL.RecordSource = SQLs
Set DRGrandLivre.DataSource = ADGL
ADGL.Refresh
DRGrandLivre.Sections("Section4").Controls("LDossier").Caption = VarDossier
DRGrandLivre.Sections("Section4").Controls("LDateDebut").Caption = VarDateD
DRGrandLivre.Sections("Section4").Controls("LDateFinale").Caption = VarDateF
DRGrandLivre.Sections("Section4").Controls("LblDate").Caption = DateAN
DRGrandLivre.Sections("Section4").Controls("LblJournal").Caption = NomR
DRGrandLivre.Sections("Section4").Controls("LTitre").Caption = CmbCompte & " " & LblCompte
DRGrandLivre.Sections("Section4").Controls("LblSoldeInitial").Caption = Format(SoldeAN, "#,##0.00")
DRGrandLivre.Sections("Section5").Controls("LblDebitG").Caption = Format(SommeD, "#,##0.00")
DRGrandLivre.Sections("Section5").Controls("LblCreditG").Caption = Format(SommeC, "#,##0.00")
DRGrandLivre.Sections("Section5").Controls("LblSoldeG").Caption = Format(SoldeG, "#,##0.00")
DRGrandLivre.Show
DRGrandLivre.WindowState = 2
'DRGrandLivre.PrintReport False, rptRangeAllPages
For ICopies = 1 To NbreNumCopies
Next ICopies
Exit Sub
xxx:
Exit Sub