Das Notes Forum

Domino 9 und frühere Versionen => ND6: Entwicklung => Thema gestartet von: adminnaddel am 06.01.05 - 14:59:34

Titel: cannot execute the specified command
Beitrag von: adminnaddel am 06.01.05 - 14:59:34
Hallo liebe Gemeinde,

da kriege ich doch immer wieder diese blöde Meldung und das bei:

...
Set coll = ws.PickListCollection( 1, True, thisdb.Server, thisdb.FilePath, "vwBuchS1", "Project List", "Please select a project." )
...

So langsam stört das  >:(

ein kleinen Tipp?

lg Andy
Titel: Re: cannot execute the specified command
Beitrag von: koehlerbv am 06.01.05 - 15:13:23
Was soll denn 1 als erster Parameter ? Für PicklistCollection ist doch PICKLIST_CUSTOM als einziger Wert erlaubt, und PICKLIST_CUSTOM entspr. 3.

Bernhard
Titel: Re: cannot execute the specified command
Beitrag von: adminnaddel am 06.01.05 - 15:20:51
Hi,

1 , 2 oder 3, ich bin immer noch nicht dabei ;D
Leider ist es völlig egal, welche Zahl ich hier eintrage, auch die "19756" will nicht (GeheimTipp)  :o

lg Andy
Titel: Re: cannot execute the specified command
Beitrag von: koehlerbv am 06.01.05 - 15:38:52
Wie gesagt, erlaubt ist nur der Parameter PICKLIST_CUSTOM = 3.
"Geheimtips" würde ich generell verwerfen.

Wo steht denn Dein Code ? Kann es sein, dass in dem Kontext UI-Befehle nicht zulässig sind ?

Bernhard
Titel: Re: cannot execute the specified command
Beitrag von: adminnaddel am 06.01.05 - 15:43:10
Nun, das soll kein Geimnis sein:

Im Button einer Form: (gar nicht solange her, das dieses Script hier jemand bereitgestellt hatte)

Set thisdb = s.CurrentDatabase
Set olduidoc = ws.CurrentDocument ' current uidoc
Set thisdoc = olduidoc.Document ' doc in memory but hasn't been saved yet
   
' select the doc to link to
Set coll = ws.PickListCollection( 3, True, thisdb.Server,thisdb.FilePath, "vwBuchS1", "Project List", "Please select a project." )
   
' if a doc isn't selected exit
   If coll.Count = 0 Then
      Messagebox "User canceled" ,,"No project was selected."
      Exit Sub
   End If

lg Andy
Titel: Re: cannot execute the specified command
Beitrag von: Semeaphoros am 06.01.05 - 15:43:39
Keine UI-Befehle zulässig wäre eigentlich schon der übliche Auslöser für sowas
Titel: Re: cannot execute the specified command
Beitrag von: koehlerbv am 06.01.05 - 15:46:07
Wo ist coll deklariert ?
Titel: Re: cannot execute the specified command
Beitrag von: adminnaddel am 06.01.05 - 16:26:10
na oben im gedimmse  ;D

Dim coll As NotesDocumentCollection

lg Andy
Titel: Re: cannot execute the specified command
Beitrag von: ascom40 am 06.01.05 - 17:08:47
ich seh schlecht  ???
Titel: Re: cannot execute the specified command
Beitrag von: Tode am 11.01.05 - 16:51:37
ich denke, der Fehler liegt NICHT im Code, denn den haben inzwischen viele Augenpaare durchgeschaut... Schau Dir mal in Deiner "vwBuchS1" - Ansicht alle Events an: ist da vielleicht irgendwas im QueryOpen, PostOpen, o.ä. ?

Gruß
Tode