Autor Thema: attempt to execute nested form events  (Gelesen 4578 mal)

Offline adminnaddel

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 819
  • Geschlecht: Männlich
  • What a wonderful girl, so beautiful und se....;-)
attempt to execute nested form events
« am: 22.02.05 - 10:48:50 »
Hallo liebe Gemeinde,

eine aufwendige Formel macht mir im QueryModeChange Event große Sorgen mit der Meldung:

attempt to execute nested form events

Dabei prüfe ich einfach nur, ob der aktuelle DAU darf oder net!

lg
Andy
« Letzte Änderung: 22.02.05 - 17:20:25 von adminnaddel »

Offline adminnaddel

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 819
  • Geschlecht: Männlich
  • What a wonderful girl, so beautiful und se....;-)
Re: attempt to execute nested form events
« Antwort #1 am: 22.02.05 - 10:53:57 »
Okay ... bin schlauer geworden, nachdem ich weiß, was nested heißt!

Aber verschachtelt hin und verschachtelt her ... schon dumm das es nicht im Event funzt!

lg
Andy

Offline umi

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 2.062
  • Geschlecht: Männlich
  • one notes to rule'em all, one notes to find'em....
    • Belsoft AG
Re: attempt to execute nested form events
« Antwort #2 am: 22.02.05 - 11:00:26 »
Wie machst Du es denn?
evtl. reicht es wenn Du Continue auf False setzt im Querymodechange.

Gruss

Urs

<:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jegliche Schreibfehler sind unpeabischigt
http://www.belsoft.ch
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~:>

Offline adminnaddel

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 819
  • Geschlecht: Männlich
  • What a wonderful girl, so beautiful und se....;-)
Re: attempt to execute nested form events
« Antwort #3 am: 22.02.05 - 11:23:55 »
Das ist ja lustig!
Dachte ich probiere es einfach mal mit LS und nehme mir einen kleinen Ausschnitt aus der Formel:

Sub Querymodechange(Source As Notesuidocument, Continue As Variant)
   
   Dim ws As New NotesUIWorkspace   
   Dim session As New NotesSession   
   Dim db As NotesDatabase   
   Dim uidoc As NotesUIDocument
   Dim doc As NotesDocument
   Dim docProfile As NotesDocument
   
   Set uidoc = ws.CurrentDocument
   Set db = session.currentDatabase   
   Set docProfile = db.GetProfileDocument("($Konfiguration)")
   
   If docProfile.configAutoren(0) = "" Then   
      uidoc.EditMode = False
   End If
End Sub

Und bekomme doch dieselbe Fehlermeldung :-( Das ist doch bestimmt ein Trick :-)

lg
Andy

Offline umi

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 2.062
  • Geschlecht: Männlich
  • one notes to rule'em all, one notes to find'em....
    • Belsoft AG
Re: attempt to execute nested form events
« Antwort #4 am: 22.02.05 - 11:26:20 »
Hi
Du versuchst im QueryModeChange nochmals den Modus zu ändern. Daher das nested.


Versuch doch folgendes
Code
	If docProfile.configAutoren(0) = "" Then	
		Continue = False
	End If
anstatt:
Code
	If docProfile.configAutoren(0) = "" Then	
		uidoc.EditMode = False
	End If
Gruss

Urs

<:~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Jegliche Schreibfehler sind unpeabischigt
http://www.belsoft.ch
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~:>

Offline adminnaddel

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 819
  • Geschlecht: Männlich
  • What a wonderful girl, so beautiful und se....;-)
Re: attempt to execute nested form events
« Antwort #5 am: 22.02.05 - 11:29:12 »
Upps .. da hat sich wohl etwas eingeschlichen! Vielen Dank!

lg
Andy

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz