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

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

  Все выпуски  

How to use the Administrative Tools


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

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

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

comp.soft.prog.lotuscodesrore

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

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

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

Как объединить значения двух полей типа Names в Lotus Script ?
Доброго времени суток.

Как можно отправить письмо, используя LotusScript, с другого (общего) ящика, т.е., чтобы при получении письма был отправитель что-то вроде public@domain.com, а не user@domain.com?

Спасибо!
Интересные темы:
Список форумов:

Tips. Советы

Research In Motion (RIM) has issued two advisories affecting BlackBerry smartphones and BlackBerry Enterprise Server (BES). Using malicious code a hacker could create a "partial Denial of Service (Dos)" attack on the devices.

Read | Permalink


EXTEND LOTUS QUICKR WITH DOCOVA
Extend your Lotus Quickr solution with Docova, a professional, easily modified, fully functional Document and Content Management platform. Share, collaborate and promote your project, departmental and enterprise content.

Docova Integrated Content Services enables your Quickr implementation to address your organization's Document Management, Records Management, and Domino Document Manager migration needs.

See the New Possibilities for Lotus Quickr on Domino

Keith Brooks reminds you, if the snow is deep, the power lines, roofs, and more are at risk. And then there's...

Read | Permalink
Garrett Wolthuis noticed his ToDos stopped moving forward after the first of the year. He found an old Technote on the subject, but why did the problem wait so long to surface, and on a newer version of Notes?

Read | Permalink
Chris Miller has posted a 5.5-minute explanation of how to use the Lotusphere session database. If you haven't used the database before, the video covers how to download and use it.

Read | Permalink


LEARN XPAGES WITH TLCC, THE LEADER IN NOTES AND DOMINO TRAINING
Tap here for more information and to try a free demo course!

There's no doubting that adding a Label to things like checkboxes and radio buttons is a godsend for usability.

With a Label

Here's a checkbox with a Label on the label. Click the text to the right of the check box and it toggles the field.

Nice and easy.

Without A Label

Here's a checkbox without a Label:

I'd like to receive the newsletter.

Harder to use, isn't it. There's no excuse not to use one!

Using Labels

As I've always understood it, the proper way of doing it is like this:

<input id="signup" value="yes" type="checkbox" name="signup"> <label for="signup">I'd like to receive the newsletter.</label>

Notice the Input element needs an ID and we need to pair this ID with the Label using the Label's "for" attribute. This is what has always put me off using Labels - they're a pain to implement - particularly when hand-coding lots of Inputs.

However, there's an easier way. You can do this:

<label><input value="yes" type="checkbox" name="signup"> I'd like to receive the newsletter.</label>

No need for any IDs!

This comes in handy when programmatically creating groups of checkboxes (or radio buttons) as you only need to wrap them in Label tags, rather than assigning each a unique ID, like so:

<p>
<label><input type="radio" value="Red" name="FaveColor" /> Red</label>
<br />
<label><input type="radio" value="Green" name="FaveColor" /> Green</label>
<br />
<label><input type="radio" value="Blue" name="FaveColor" /> Green</label>
</p>

Simples.

Click here to post a response

A new BlackBerry Enterprise Server (BES), expected by the end of this year, is being designed to work in the cloud. This would allow smaller companies to take advantage of the secure messaging platform.

Read | Permalink
Adam Osborne has linked to a short video, only 6 clicks long, to demonstrate deployment of Defrag.NSF. If only other things were as simple...

Read | Permalink

Francie Tanner wants to remind Lotusphere attendees - it isn't all work. The Great Geek Challenge offers you the chance to display your geekitude before an appreciative audience and win prizes.

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

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

Author: Bas van Gestel
Tags: frameset frame doubleclick
Idea:
 Would be great if when you double click on a frame within a frameset in designer the corresponding design element is opened. Kinda similar to double clicking on a subform within a form.

Author: Bas van Gestel
Tags: embedded outline embedded view
Idea:
When an outline is embedded on a page, it would be great if I have the page open in designer and I double click on the embedded outline, the outline would be opened in designer.
 
Would be even better if the changes would be visible in the page directly after editing the outline.

Author: Vlad Sh
Tags: view Shared Column
Idea:
To view the code of Shared Columns have to open them, that creepy uncomfortable.
I propose to leave the background color of the system, but instead a common text (see screenshot) to display a formula of selected Shared Column.  

Author: Vlad Sh
Tags: settings colors code templates
Idea:
Homes and other workplaces must configure Domino Designer again, unfortunately a lot of manual routine work. This is especially true File -> Preferences -> Domino Designer -> LotusScript Editor (Code Templates, Fonts and Colors).
The same applies to sections Java -> Editor и JavaScript -> Editor.
Please make the possibility of Import / Export at least themes, and they can be shared with other developers!
 

Author: Tinus Riyanto
Tags: mail rule group
Idea:
Sample scenario : 
1. Allow only certain people to send email to more than x recipient
2. Allow only certain people to send email with size more than x MB
 
With the above two case, it would be very helpfull if the condition operator in server mail rule have an Is Member operator (currently they only have Contains, Does Not Contains, Is & Is Not) so we can use group listed on the server address book for this.
 
Currently the exclusion list have to be added via the rule dialog form, thus making future revision tedious. If group is used then the functionality can be delegated to non-administrator. Furthermore it would help in personal mail rule if there are many people in the list.

Author: Ralph Borcherds
Tags: calendar user administration user_deletion calendar entry
Idea:
 When a user is terminated from a company and they are the chair for meetings a lot of people have to go through and delete the meetings one at a time.  Make it possible to have all the calendar entries that the user that is terminated is a chair and remove it from the calendar or change the chair so that it can be managed correctly by the attendees.
 
If the attendees try to delete the calendar item they get an error message and it will not delete.  Any other ideas to add to this would be good.

I've developed an application showing how to find personally relevant information from social networks and other websites. I've called this prototype Deja Vu and would like to publish it on OpenNTF if people are interested. Nowadays information is ...
Author: Ken Haggman
Tags: lotusscript
Idea:
The NotesNoteCollection class is very powerful and can be of great use in many situations. However, after ND6 nothing has been done to this class to allow it to extract design element types added after ND6.
I know that the $Flags item can be checked and that was enough to find shared columsn and web services in ND7.
But in ND8 we have yet more design element types and there is no easy way to find them with this class, at least none that I know of.
In addition the web services in ND8 can now be Providers and Consumers and while the "ND7" technique can be used to find Providers, Consumers are harder if not impossible to find.

The IBM developerWorks team has added links to XPages.info and OpenNTF.org to the developerWorks Lotus zone home page: They also put a link to the XPages Documentation Wiki on this page and on the wiki landing ...
Еще записи:
Интересные блоги специалистов:

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

This is a collection of various tools that Lotus Technical Support provides in the form of technotes. These technotes usually require an Administrator to create agents to troubleshoot or workaround various issues. This goal of this tool is to eliminate those steps in favor of guided options to perform the required tasks.
This technote provides steps to build a new 8.5.1 (or later) installation package, in order to provision additional language dictionaries.
To keep a specific database in good working order, perform these tasks regularly. Task Frequency Monitor replication, if a database replicates Daily Check for and consolidate replication or save conflicts Daily, for large active databases; weekly for other databases Monitor database ...
Introduction IBM WebSphere Portal can be leveraged to enforce security, an important requirement for many Web applications. It relies on underlying technologies in delivering certain security functionality and provides integration points for other securityrelated technologies. This article is ...
If you are a regular or roaming user and you want to use your Notes contacts on a blackberry, you need to enable synchronization for your contacts and then replicate. Follow these steps: In Notes, click File Preferences, and then select Contacts. Select Enable "Synchronize Contacts" on the ...
Также почитатай:
Найти документацию можно на сайтах:

В избранное