PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : Laufzeitfehler 91 oder 71 ???



Etienne
14.05.2002, 22:43
Hey Leute!


Wir hatten heute (wie immer) FMS32 auf der Wache laufen (beim Rettungsdienst)!

Es kam ein Einsatz für 1 NEF und 1 RTW! Als die vor Ort waren haben die einen RTH (Christoph) nachgefordert!

Bei Fahrzeuge standen in Status 4! Als der RTH den Landkreis erreichte gab er Status 3 und beim Eintreffen Status 4! Also ganz normal! Als er gestartet ist gab er Status 7!

Wir wollten den RTH dann per Hand (Drag and Drop) in den Status 8 und dann Status 2 versetzen! Aber das ging nicht!

Folgende Fehlermeldung kam kurz vorm fehlerbedingten beenden des Programms:

Laufzeitfehler 91
Objekt oder With-Blockvariable nicht festgelegt


PS: Ich weiß nicht, ob das Laufzeitfehler 91 oder 71 war!

Woran kann das liegen? Dieser Fehler trat erst 2mal auf! Danach bis jetzt nicht wieder!


Gruß

Etienne

LeiDstelle
15.05.2002, 14:28
Es müßte der Laufzeitfehler 71 gewesen sein.
Den hatte ich auf meinem alten Rechner (Pentium 120) auch schon einige male gehabt.

Quietschphone
15.05.2002, 15:15
Hallo,



Laufzeitfehler (run-time error) '71': Disk not ready
This error has the following causes and solutions:

There is no disk in the specified drive.
Put a disk in the drive and retry the operation.

The drive door of the specified drive is open.
Close the drive door and retry the operation.

Laufzeitfehler '91': Object variable or With block variable not set
There are two steps to creating an object variable. First you must declare the object variable. Then you must assign a valid reference to the object variable using the Set statement. Similarly, a With...End With block must be initialized by executing the With statement entry point. This error has the following causes and solutions:

You attempted to use an object variable that isn't yet referencing a valid object.
Specify or respecify a reference for the object variable. For example, if the Set statement is omitted in the following code, an error would be generated on the reference to MyObject:

Dim MyObject As Object ' Create object variable.
Set MyObject = Sheets(1) ' Create valid object reference.
MyCount = MyObject.Count ' Assign Count value to MyCount.

You attempted to use an object variable that has been set to Nothing.
Set MyObject = Nothing ' Release the object.
MyCount = MyObject.Count ' Make a reference to a released object.

Respecify a reference for the object variable. For example, use a new Set statement to set a new reference to the object.

The object is a valid object, but it wasn't set because the object library in which it is described hasn't been selected in the References dialog box.
Select the object library in the Add References dialog box.

The target of a GoTo statement is inside a With block.
Don't jump into a With block. Make sure the block is initialized by executing the With statement entry point.

You specified a line inside a With block when you chose the Set Next Statement command.
The With block must be initialized by executing the With statement.

Hab' leider nur die englischen Erläuterungen. Scheint aber ein Programm-Fehler zu sein.

Gruss
Alex

Etienne
16.05.2002, 01:10
Hey Alex!

Danke für die englische Version des Fehlers, aber leider kann ich kein Englisch, sondern nur Französisch, Polnisch, Slowakisch, Russisch, Jugoslawisch und Italinisch! *grins*

Nein Quatsch! Wenn du mal nicht schlafen kannst, dann kannste mir das ja mal übersetzen! *grins*


Bis dann!

Gruß

Etienne

Quietschphone
16.05.2002, 11:57
@Etienne:

Sorry, ich weiss, war etwas zu viel auf einmal ;-)

Eigentlich geht's nur darum, dass es ein Fehler im Programm selber ist, also kein Fehler, den Du als Bediener beeinflussen könntest --> Mail an HeiRue.

Gruss
Alex