Hi!
Die Schleife für obiges Problem bekomm ich ja noch selbser hin ;o))
Allerdings „weigert“ isch ACCESS den selben Bericht (jeweils mit unterschiedlicher where-Condition öfters zu öffnen!
Wer weiß da weiter???
Gruß
Bernd
Hi!
Die Schleife für obiges Problem bekomm ich ja noch selbser hin ;o))
Allerdings „weigert“ isch ACCESS den selben Bericht (jeweils mit unterschiedlicher where-Condition öfters zu öffnen!
Wer weiß da weiter???
Gruß
Bernd
gleichen Bericht mehrmals - zusatzfrage
Allerdings „weigert“ isch ACCESS den selben Bericht (jeweils
mit unterschiedlicher where-Condition öfters zu öffnen!Wer weiß da weiter???
Grüße auch aus Wien,
Ich habe das gleiche Problem mit Formularen. Ich nehme an die Lösung ist analog zu den Berichten. Die VB-Hilfe schreibt da was über MDIForms aber da bin ich im Access nicht fündig geworden.
Über einen heißen Tip würde ich mich seeeeeehhhhhr freuen.
Danke,
TheBeast
vielleicht hilft das weiter…
Hi!
Ich hab in Erinnerung, das man halt „auf irgendeine Weise“ den Berichten/Formularen einen Alias geben muß…
Vielleicht findest du ja raus wie ;o))
Bernd
Hallo Bernd,
Das ist aus der Access-Hilfe (bei mir auf Englisch installiert, wenn Du beim Übersetzen Hilfe brauchst, helfe ich gerne)
_Creating Multiple Nondefault Instances of Forms
You can create multiple nondefault instances of a form’s class if you want to display more than one instance of a form at a time. For example, you might want to display the records for an employee and the employee’s manager at the same time. You can create one instance of the Employees form’s class to display the employee’s record, and one to display the manager’s record.
To create new, nondefault instances of a form’s class from Visual Basic, declare a variable for which the type is the name of the form class module. You must include the New keyword in the variable declaration. For example, the following code creates a new instance of the Employees form and assigns it to a variable of type Form:
Dim frm As New Form_Employees
This nondefault instance of the form isn’t visible until you explicitly set its Visible property.
When the procedure that creates this instance has finished executing, the instance is removed from memory unless you’ve declared the variable representing it as a module-level variable. Since module-level variables retain their values until they are reset with the Reset command on the Run menu or the Reset button on the toolbar, the form will stay open if the variable has been declared as a module-level variable.
Any properties that you set will affect this instance of the form’s class, but won’t be saved with the form. Also, a new instance of the form’s class can’t be created if the form is open in Design view.
A nondefault instance of a form’s class can’t be referred to by name in the Forms collection. You can refer to it by index number only. Since you can create multiple nondefault instances of a form, and each instance has the same name, you can have more than one form with the same name in the Forms collection, without any means of distinguishing them other than by index number._
Ich hoffe das löst unsere Probleme, probiert habe ich´s noch nicht…
Gruß,
TheBeast
Hi!
Wenn das so klappt wies da steht löst es die auf jeden Fall…entspricht ja ungefähr dem was ich dachte… da hätte ich drauf kommen können ;o))
Wobei ich wieder mal das Glück hatte, das ich es jetzt net mehr brauche, da die Reports direkt ausgedruckt werden ohne Vorshcau und da gibts keine Probs…;o))
Bernd