有没有办法用loutsscript取文件中的特定文件夹为模版建立新的文件夹

时间:2022-01-10 05:51:05
Set doc=s.documentcontext
Set view=db.GetView(doc.curuser(0))
If view Is Nothing Then
Set docnew=New notesdocument(db)
Call docnew.save(True,False)
curuser2="search"+doc.CurUser(0)
Call docnew.PutInFolder(curuser2)
Call docnew.Remove(True)
End If

如果用这个只能建立一中模版的文件夹,有没有可以根据指定文件夹建立模版的。

6 个解决方案

#1


有的,
你可以到www.notes.net 上搜索一下!我看到过.

#2


Hi everyone !

I use CopytoDatabase and PutinFolder to copy documents from a database to another.
When the folder doesn't exist in the destination database, PutinFolder creates it.
The problem is that it creates it with the hierarchy option on and I don't want that. How do I prevent it from happening ?

Thanks !

Nicolas Bessette 

我在www.notes.net找了半天,有很多有同样的问题,但是没人回答

#3


I'm trying to create a new document in the ToDo folder via the Java/CORBA toolkit. I can create the document, retrieve the view and the database it is in. However, when I try to call putInFolder with the view (ToDo) as the argument I get a NotesException thrown with no further information supplied. Does anyone have any idea why this would happen, or what I am doing wrong? I have tried doing the same thing with databases instead of views but get an exception due to insufficient permissions when trying this, despite the fact that I am logging in as the Administrator.

Thanks,
Erik 
也是没人回答

#4


其实,你应该好好研究一下邮箱模板,里面就有关于这方面的设计。

#5


替换文件夹/视图的公式:

@UpdateViewDesign(TargetView;SourceDesign);

#6


在R6下面不是有db.createview([viewname],[viewSelectionFormula$],[tmpelateView])就可以创建你想要的东西。
在R5下面没有上面那个方法,但可以实现的。

#1


有的,
你可以到www.notes.net 上搜索一下!我看到过.

#2


Hi everyone !

I use CopytoDatabase and PutinFolder to copy documents from a database to another.
When the folder doesn't exist in the destination database, PutinFolder creates it.
The problem is that it creates it with the hierarchy option on and I don't want that. How do I prevent it from happening ?

Thanks !

Nicolas Bessette 

我在www.notes.net找了半天,有很多有同样的问题,但是没人回答

#3


I'm trying to create a new document in the ToDo folder via the Java/CORBA toolkit. I can create the document, retrieve the view and the database it is in. However, when I try to call putInFolder with the view (ToDo) as the argument I get a NotesException thrown with no further information supplied. Does anyone have any idea why this would happen, or what I am doing wrong? I have tried doing the same thing with databases instead of views but get an exception due to insufficient permissions when trying this, despite the fact that I am logging in as the Administrator.

Thanks,
Erik 
也是没人回答

#4


其实,你应该好好研究一下邮箱模板,里面就有关于这方面的设计。

#5


替换文件夹/视图的公式:

@UpdateViewDesign(TargetView;SourceDesign);

#6


在R6下面不是有db.createview([viewname],[viewSelectionFormula$],[tmpelateView])就可以创建你想要的东西。
在R5下面没有上面那个方法,但可以实现的。