Отправляет email-рассылки с помощью сервиса Sendsay

Бюллетень "Lotus Notes CodeStore"

  Все выпуски  

How often does the local Widgets catalog replicate automatically?


Рассылку ведет: Программист на Lotus NotesLotus CoderВыпуск No 449 от 2011-02-04
рассылка о программировании на Lotus Notes/Domino
Обсуждения на форумах, блогах. Примеры программного кода на LotusScript,@formula, Java

рассылка:выпускархивлентаблогсайт

Бюллетень "Lotus Notes CodeStore" Выпуск 13 от 21.04.2008

comp.soft.prog.lotuscodesrore

CodeStore. Примеры кодов

Еще примеры:
Больше кодов на сайтах:

Форумы.Свежи темы и обсуждения

клиент Lotus Notes 7.03 , установлен словарь , проверка орфографии работает вызовом команды Edit->Check spellin... Интересует - есть ли возможность подсвечивать ошибки непосредственно при наборе текста, как это работает в версии 8.01 и позднее?
Коллеги, помогите с освоением. Написать агент, при запуске сохраняет все вложения из выбранного письма в указанную папку и само письмо в удобочитаемом виде. Попробовал найти методику сохранения писем в pdf, оказалось это не так то просто, необходимы дополнительные shareware плагины. С rtf примерно такая же ситуация.
LotusScript только осваиваю, поэтому если есть дока или хороший хелп по методам с описанием, поделитесь пож-та.
Мой хеллоувордный скрипт пока выглядит так:


Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim workspace As New NotesUIWorkspace
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Dim uiview As NotesUIView
Set db = session.CurrentDatabase
Set uiview = workspace.CurrentView
Set collection = db.UnprocessedDocuments
Set doc = collection.GetFirstDocument

Msgbox doc.body ' Чтобы хоть чтото происходило

End Sub

ищу также ссылки на похожие примеры, потому как гугл предлагает чтото уж больно замудреное

если есть время, хелп)
Интересные темы:
Список форумов:

Tips. Советы

This new article on the Sametime wiki covers how to use the Watchit tool to measure performance in your IBM Lotus Sametime production environment.

Read | Permalink
This video podcast features Paul Steel, Manager of Technical Services at RIM, showing off the new BlackBerry Playbook. The video runs about 15 minutes.

Read | Permalink
Michael Porter says Forms, now IBM Forms, is the toolset for WebSphere Process Server. He provides some information, and graphics, showing how Forms fits into the suite.

Read | Permalink


WHAT'S THE MOST COST-EFFECTIVE & RESPECTED TRAINING RESOURCE FOR LOTUS PROFESSIONALS?
Visit THE VIEW Online Knowledgebase at www.eview.com.

Rob Wunderlich has already posted his presentation from Lotusphere. You can download the PDF to refresh your memory, if you attended, or see what you missed.

Read | Permalink

We've now seen how to use an ASP.NET Wen Application to connect to a database and show data from it. To do this the code in our ASPX files directly accessed the "data layer". There's a better way.

Adding Some Class(es)

The beauty of ASP.NET programming for me, is the ability to quickly and easily create your own classes.

To demonstrate let's create an Animal class. First add a folder called Objects to the your project and then add a Class file called Animal.cs, like so:

image

This will generate a file with the code snippet seen below:

image

It has used the namespace Zoo.Objects because I put the class file in a folder called "Objects". First thing I'd do is change the namespace simply to "Zoo".

Then we can start to add properties to the Animal class, so that when we create objects based on it, we can reference things like Name, Age, Type etc.

Before long it will look like this:

image

With this new class in place and saved, switch back to the Page_Load event in the Default.asp.cs file and try typing things like this to create a new object based on the Animal class:

image

As you begin to type "Animal" you'll notice VS's type-ahead already knows about it (no messy importing of classes or classpath redefining to do like in Java).

Notice how all the properties are strongly-types. You can only assign a DateTime to the dateOfArrival property etc.

In practice you'd rarely do this. More often than not you'd load Animal-based objects from a backend database. Let's see how.

First thing to do is add a Constructor to the Animal class that takes a DataRow as its parameter. Knowing the names of the columns we'd expect in the data we can then assign the object properties based on the values received. Like so:

image

Notice above that I added a new class to the same package called AnimalFactory. This "factory" will be responsible for returning to us a List (which we can iterate over using foreach() etc) of Animals.

Note: The AnimalFactory and its methods are static! This means we don't need to first create an object based on it before being able to use the methods. So, instead of needing to write:

AnimalFactory factory = new AnimalFactory();
List<Animal> animals = factory.GetAllAnimals();

You'd just use this line of code:

List<Animal> animals = AnimalFactory.GetAllAnimals();

You'll see this in use in a moment.

All references to the Animal TableAdapter and actual SQL Column names are now only ever contained within the Animal Class itself, rather than being littered about the site in all our .aspx.cs files.

The Default.aspx.cs file now simply looks like this:

image

Note: The calls to "using System.Data" and "using Zoo.ZooTableAdapters" have now gone from this file.

Now, we can do funky things like this:

image

Or as an alternative in shorthand:

image

In both cases the result when viewed on the web is like so:

image

Notice the column names (which are still being auto-generated by the GridView element) now come from the properties we defined for the class, rather than the column names of the SQL table.

Again, remember, that I'm not saying this is how best to create a "view" of data in the real world. We're still just proving a point.

Summary

Hopefully this has shown you how easy it is to create your own objects/classes in C#. Not only how easy it is but also how amazing type-ahead is in Visual Studio. I've always known the principles of Object Orientated programming and how to do this in the likes of Java, but it more-often-than-not requires remembering properties and class names etc. In VS it makes using your own code a breeze!

What this doesn't show is the power of custom classes. Later on we'll take it further and add methods such as Save() and Delete() to the Animal class and methods like GetAnimalByID() to the AnimalFactory class.

For now though, this should be good enough to get you familiar with the concept. Hopefully, before long and like me, you'll get your head round it and never look back.

Before I embarked on learning ASP.NET 18 months or so ago my OO skills were lacking to say the least. Now, thanks mainly to how easy VS makes it, I'm coming along leaps and bounds.

Click here to post a response

Chris Toohey has posted his slides from the Speed Geeking session at Lotusphere 2011. Some of the things you aren't doing might surprise even you.

Read | Permalink
Perry Hiltz says many people have made the mistake over the years of setting up their Domino domain as if it were an Internet domain. If your organization is moving to Domino 8.5.x Perry says this needs to be corrected.

Read | Permalink


WHAT'S THE MOST COST-EFFECTIVE & RESPECTED TRAINING RESOURCE FOR LOTUS PROFESSIONALS?
Visit THE VIEW Online Knowledgebase at www.eview.com.

Andre Guirard says he has found an error in the documentation for the LotusScript NotesNoteCollection method. He's posted a correction that will increase execution speed.

Read | Permalink
Andy Pedisich presented a session on extracting stats at Lotusphere 2011 where he briefly mentioned the Configuration Collector. In this post he expands on what the Domino Configuration Collector can do to help you.

Read | Permalink
Еще советы:
Смотри советы на сайтах:

Блоги. Что обсуждают и пишут

Author: Bas van Gestel
Tags: view agent applications
Idea:
 When I choose "View > Agents" the enitre application is loaded in the DDE, it is also prompted to be added to the current working set.
 
When I want to open the app in Designer I will choose View > Design.
 
So please just open the agent list in the center pane and do not influence the Applications View.
 

Author: Dwain Wuerfel
Tags: mac troubleshooting cache.ndk
Idea:
I don't have any idea of the percentage of users that have a PC compared to a MAC, but in our organization it is like 99.5 % PC and .5 % MAC.  So, when we get issues with a MAC user it is difficult to troubleshoot the issue and searching the forums becomes a headache.
 
I would like to see a new forum/wiki created that is dedicated solely to using the Lotus Notes suite of tools on a MAC.
 

Author: Alexey Zimarev
Tags: sametime proxy
Idea:
 Since 8.5 we have two places for connectivity - one on the community settings tab and another one on meeting server tab. Both have proxy configuration settings but whilst community settings tab has more mature proxy configuration and has for example "Use IE proxy settings", the meeting server tab has very proxy configuration possibilities. I'd rather remove proxy settings from the meeting server configuration tab and or expand configuration possibilities to those we see on the community server tab.

Author: Alexey Zimarev
Tags: follow up day-at-a-glance
Idea:
 In Outlook I see all my tasks in one place - meetings, todos and follow up mails. I Notes however follow up mails are below the main outline (left side) and todos/meetings are in day-at-a-glance sidebar. This is pretty illogical, why not place all these things in one place with proper display formatting?

Author: Alexey Zimarev
Tags: sametime mobile nokia symbian
Idea:
 I believe since Nokia is the most popular business smartphone in Europe and Symbian is second sold smartphone OS, LotusLive mobile client should not be limited to Android and iPhone only.

Author: Alexey Zimarev
Tags: sametime meeting mobile audio video
Idea:
 It is very pity that Sametime Mobile client is limited to chat. I would like to have there A/V as well especially when all smartphone platforms support VoIP from the box, including SIP and codecs.
 
Also it would be very helpful to have Sametime meeting client, as planned in LotusLive Meetings, on mobile devices - with A/V. whiteboard, slides and screen sharing (at least for viewing).

Author: Mike Woolsey
Tags: domain consolidation integration
Idea:
Allow the @domain part of a user identifier to be included in a reader or author field entry. This'd allow use of the reader or author field in email as well as for security purposes, and the field wouldn't need to be re-created to guarantee emailing the author, e.g.
 
If the user's already authenticated by hierarchical name, it shouldn't have an impact on actual security.
 
And @NameLookup including the domain would allow easy expansion to the full hierarchical name, with the doman address as well.

Author: Mike Woolsey
Tags: javascript development web browser
Idea:
I'd love to be able to read a field that Javascript has signed. I don't think it takes much -- a decrypt function that'll accept the author's public key instead of your own private key. It'd quickly replace all the signed-section functions I use, when they exist for security reasons (and XPages has replaced all the non-security functions already).
 
So -- just a decryption function to expose, along with the already-existing access to a user's public key. That would do it for me!
 
'Course, it could be nicer. Lots could be nicer.

Еще записи:
Интересные блоги специалистов:

Статьи и Документация

The widgets catalog replicates according to the Notes client "Normal" priority. The published documentation incorrectly indicates that the catalog replicates every 24 hours.
p strong object width"770" height"498" id"MediaPlayer" classid"CLSID:22D6f312B0F611D094AB0080C74C7E95" standby"Loading Windows Media Player components..." type"applicationxoleobject" ...
p strong object width"770" height"498" id"MediaPlayer" classid"CLSID:22D6f312B0F611D094AB0080C74C7E95" standby"Loading Windows Media Player components..." type"applicationxoleobject" ...
This topic describes known Windows® Mobile device restrictions and limitations with IBM® Lotus Notes® Traveler. h2 Install h2 Table 1. Install issues Problem Details A mobile device user cannot complete registration if the user home mail server is down. During the registration of a mobile ...
p strong object width"770" height"498" id"MediaPlayer" classid"CLSID:22D6f312B0F611D094AB0080C74C7E95" standby"Loading Windows Media Player components..." type"applicationxoleobject" ...
Table of Contents: Optimizing Lotus Domino AdministrationTable of Contents Have you looked into Domino policies yet? If not, then you have not yet seen how powerful policies can be. Since there are many reasons to use a policy and a number of policy types, you may wonder how you should get ...
You have created an Xpage that contains some javascript and when you preview it from the Designer client or enter the direct URL, you see the error message "'XSP' is undefined"
When you open existing mail messages in the Lotus Notes 8.x client, certain information in the To/CC fields is hidden unless you click the Show Details link. Is there a way to show this information by default so that you don't have to click Show Details every time you open a message?
Также почитатай:
Найти документацию можно на сайтах:

В избранное