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

Lotus Notes/Domino -- продукт и инструмент. Выпуск: 57


Lotus Notes/Domino -- продукт и инструмент. Выпуск: 57

2009-02-09
Поиск по сайтам о Lotus Notes

Содержание:

CodeStore. Коды Примеры Шаблоны (4)

Want a Perfect CMS? Build it Yourself! | Blog
Secrets of a Successful Directory Integration for Connections
Develop Widgets for IBM Lotus Mashups and Notes 8
Flex With Domino Quick Start - Part 5 | Blog

Интенет эфир о Lotus Notes. Блоги и форумы (19)

BlackBerry Curve 8320 Titanium
Re: Народ, помогите. Кто настраивал ICM на Domino.
Announcing the winners of our Lotusphere giveaway!
Re: Регистрация дополнительных админов на 2 сервере Domino
Re: Уведомление о приходе почты
Re: Народ, помогите. Кто настраивал ICM на Domino.
Re: Помогите с Check passwords on Notes IDs
... as rival e-mail servers including IBM's Lotus Domino and other SMTP-compliant ...
Handy Backup 6.2.2 с новыми функциями и усовершенствованиями
Untitled
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 52 ...
Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...
Воть так вот.
Re: Уведомление о приходе почты
Setparameter
Enabling Smartcards for Notes login
Delaware and Hawaii trivia question
Проведём анализ браузеров
Dharma Talk, Feb 1 2009: Facebook Official (part one)

Вакансии для специалистов (20)

US IT - Lotus Notes Tech Support OPS43
Project Manager - Lotus Notes Development Projects
Lotus Notes Developer
Lotus Notes Administrator
Lotus Notes Admin / Developer
Lotus notes Administrator
Lotus Notes - Domino - Administrator
Lotus Notes Developer
Lotus Notes Messaging Specialist (20988)
Lotus Notes Developer
Programmer/Analyst - Lotus Notes/Web Developer
Help Desk Support - Lotus Notes to Outlook Conversion
Lotus Notes Developer
Help Desk Support - Lotus Notes to Outlook Conversion
Lotus Notes Developer
Lotus Notes Consultant
Lotus Notes Administrator
LOTUS NOTES ADMINISTRATOR
Lotus Notes Administrator
Jr Lotus Notes Administrator

Закладки о Lotus Notes (11)

Lotus Notes Client V6.5.x - The CD Forum
GTD and Lotus Notes
InternetNews Realtime IT News - Lotus Notes, Microsoft Competition Heats Up
Alltop - Top Lotus News
YouTube - Twitter for Lotus Notes
Configure Eclipse 3.4 for Notes 8.5 - lekkimworld.com
User experience guidelines for IBM Lotus rich client applications and plug-ins
Create MIME Messages with LotusScript -- Use this technique to maintain e-mail formatting over the Internet. ++ Tags: E-Mail, IBM, IBM Lotus, IBM Lotus Notes, LotusScript, Messaging
Understanding desktop email clients - Litmus
assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently
Lotus Notes Ninjas: Domino Web Access Warning
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















Блиц опрос
Материалы на английском
(голосование возможно только из письма рассылки)
  • Нормально. Могу читать
  • Не годиться. Хочу только на русском
  • Компания ПУЛ - разработка приложений на Lotus Notes/Domino

    CodeStore. Коды Примеры Шаблоны

    1. Want a Perfect CMS? Build it Yourself! | Blog

    Every now and then I get asked to create a website for a friend. Being the helpful type I always like to help out - twice already this year! Now that I've got children and less time to spare than ever I need to make the whole process involve me less. I need them to manage their own content.

    In the past I've created the sites using PHP and hosted them on my LAMP server, but they've mainly contained static HTML content. How 1998 is that!? For the most part this works well as the only type of site I get asked to do are brochure sites. They rarely change. That said, they do change every now and then and I want to avoid being involved in their day-to-day upkeep.

    So, that's why I Googled "PHP CMS" recently.

    What I found surprised me - either I didn't look hard enough or there just isn't a basic CMS out there. They all seemed like over-kill to me. My starting point was OpenSourceCMS.com, where you can see a rated list of CMS packages along with links to demos. It wasn't longed before I picked out the first to try - Drupal. It wasn't long before I gave up on it either. Having spent a good few hours getting it installed I then fell at the first hurdle - I couldn't for the life of me work out how to theme a site with my own HTML/CSS.

    Next I took a look at alternatives such as Concrete. Again I couldn't work out how you did anything other than change the basic appearance of your choice of a pre-defined page template.

    Then I took a look at MovableType, which I know from past experience allows you complete control of the HTML/CSS, but soon realised I'd have to pay to use that for anything other than a personal blog.

    Creating My Own

    I soon realised that the time I was spending looking for a way to save time was in fact wasting time. That time would be much better spent knocking my own CMS together. Within hours of making this decision I had it up and running from scratch.

    All I needed was a single-tabled database and a couple of php files. The table is called Pages and has four columns:

    Column Description
    Title Text which appears at the top of the page
    Name Used as unique the key in URL
    Body Main content in HTML format
    Menu Name of the page that this page sits under. If blank then it's used as a main tab in the nav bar. If it has a parent then it appears in the dropdown navigation under that page's tab.

    That's all it needed. I then created a file called page.php which accepted the Name of the page to display as a parameter and then displayed its content.

    Through the correct use of the Menu field it's a simple task to build the whole site navigation. So simple it hurts.

    Obviously there's a bit more to it than that, but you get the idea. It's all I needed and I now have the basis for any future brochure site I'm asked to do as a favour for a mate. Each site will no doubt require an extra table here and there - a "Guestbook" for holiday lets for example, but I have the starting point now.

    What About Notes?

    Now, I know what you're thinking, why didn't I do it Notes. Various reasons. None of them being that I can't. Obviously I could have done, but would it really have been the best use of Domino?! We all know Notes is great at what it does, but it would be like driving to the supermarket in a Ferrari. Kind of.

    Another reason not to is portability. If for any reason I want to hand responsibility for the site over to them or another web developer/host then I can easily do that with a ZIp of the PHP files and a SQL data/schema export. If I gave them an NSF they'd be a bit lost.

    Then there's hosting. While I won't hear a bad word said about the Prominic guys I'm sure they'd agree the process of hosting a Domino website isn't as simple or as widely available as LAMP hosting. Although, on the flip side, I don't have a good word to say about Fasthosts the server I have hosted with allows me to have a new domain registered and a site live inside of an hour.

    Using Notes for a simple brochure site would be daft.

    2. Secrets of a Successful Directory Integration for Connections

    Discover why IBM Tivoli Directory Integrator (TDI) is a great tool for synchronizing and exchanging information between different systems and why it's a vital part of implementing IBM Lotus Connections. Learn about some real-world issues that you should address before rolling out Lotus Connections. Find out what preparations you need to make and common pitfalls you might encounter with TDI during a Lotus Connections implementation.

    3. Develop Widgets for IBM Lotus Mashups and Notes 8

    Discover how to develop widgets for IBM Lotus Mashups and Notes 8 in Lotus Widget Factory. A single deployment to the Mashups server makes them available in both environments. As a first step in constructing widgets that can send "live text" elements (such as phone numbers, addresses, and site URLs) from Notes applications to other widgets, learn to build a basic widget with events that can be triggered on the Mashups server.

    4. Flex With Domino Quick Start - Part 5 | Blog

    By request, today I'm going to talk about user-based "hide whens" in Flex. Before we can do this we need to know as much as we can about the user.

    Remember ages ago I talked about the "DEXT" object for JavaScript? Well, I've converted it in to a Flex-ready XML version, which you can see here.

    By having Flex fetch this XML we know all we need to know about the user and whether to show them certain features. For example, here's the Simple app we're working on before the user has logged in:

    Notice it says "Welcome Anonymous", there's a Login button and the "Create New Car" button is disabled. If you were to click the Login button and login (which you can try in the demo) you'd then see the screen re-adjust itself to look like this:

     

    Notice that Anonymous has been replaced with the user's name, the Login button now says Logout and the new Car button has been disabled.

    How Did It Do That?

    The key to all this is binding. Let's look at the new Car button:

    The enabled property of the button is tied (bound) to the last XML result of the httpSession object, which is used to fetch the user-defining XML from the server. Whenever the httpSession fetches the XML again the lastResult updates and so then does the enabled property of the button as they're bound together. There's no need to do anything other than trigger a request for the XML.

    The same is true of the user name display and the label of the "login" button:

    Sorry about the blurry images. You can see the code in full by right-clicking the demo.

    So, do you get the notion of binding? Clever init!?

    The only other note-worthy addition is the login dialog. Notice in the source code that there's now a new file called Login.mxml. This is a component. The idea being we can separate the login/out logic from out app and re-use it elsewhere. I've made a bit of a mess of it, but you get the idea.

    Note that by creating components as separate files you can reference them in code by that filename as the name of the object. For example our code does this:

    Notice we've created an instance of the Login component called loginWindow and then opened it using the PopupManager.

    What Next?

    I've been asked to talk about charts with Domino data so I think I'll cover that next. Then I'll probably talk about creating forms/document from Flex. If I get chance I'll re-factor all the code and then make it available for download again.


    developerWorks  >  Lotus  >  Forums & community  >  Lotus Sandbox

    Lotus Sandbox


    Go back

    2 Extended Attachment Edition
    Edit and handle Attachments in Notes 4 the same way as in Notes 6
    A new Approach - Web-based Date Picker
    Web-based date picker that displays company sponsored holidays
    A new approach - Web-based NAB
    A Web-based NAB with simple search function
    A self-guided tour of Domino Domain Monitoring (DDM)
    The attached presentation (ddm.ppt) is a self-guided tour of Domino Domain Monitoring (DDM).
    A simple method to use File Upload Controls on the Web.
    For identifying/using file upload controls on the Web.
    Access Level
    Displays User Access Level in DB - no need to know your group membership.
    Accidents Reports
    Simple application for reporting and monitoring industrial accidents.
    Account Manager
    Manages accounts, profiles, and contacts.
    ACL Audit Tool
    Tool to perform an ACL audit of databases/templates on a Domino server.
    ACL backup and restore functions in LotusScript
    LotusScript agents saving ACLs in NotesDocuments and restoring them back to DBs ACL
    ACL Scanner
    Creates reports about ACLs on all databases on one server, and recurses groups.
    ACL Setter
    Allows you to modify a database ACL without manager access on a server.
    ACL "Modificator" 1.0
    Add ACL entries in multiple databases.
    Acme Standard Interface and Acme News databases
    Sample databases from the Iris Today article Building standard interfaces without changing your applications.
    Acme.nsf and Zippy.nsf
    Sample databases Acme.nsf and Zippy.nsf referenced in the Iris Today article "Exercising XML with Domino Designer."
    Action button to initiate replication on server
    This Action code uses defined Connection documents to start immediate replication through remote console on source server
    Action Button to set Internet Password
    Action Button to set Internet Password
    Add business holidays to the user's calendar
    Quick and dirty code to add business holidays to the user's calendar using front end classes.
    Add sound to a Notes form
    Add Sound Recorder to your e-mail template.
    Add System DBs
    Adds MAIL.BOX, SMTP.BOX, LOG.NSF, etc. from every available server to your workspace.
    Address Book Servlet v1.0
    Address Book servlet provides an interface similar to address book dialog box in Lotus Notes client
    Admin-Dev Tools 2.0
    Tools for day to day admin tasks. Updated from the original version.
    Admin ACL 2
    AdminACL is an application that allows you to add any ACL entry with any level to any database you want even if you do not have access to it.
    Admin Helper
    Find Orphan mail files, check the Out of Office agent owner and the Calendar Profile owner of mail file for existing users.
    AdminACL
    This tool allows you, the administrator, to add any group, user, and server to any databases in you organization (in one agent).
    Advanced Settings sample database
    This database includes an advanced version of the Application Settings tool described in the Iris Today article "Application settings tool: an alternative to profiles" by Jonathan Coombs.
    Advanced View Techniques
    Interesting ways to display views using applets & print selected documents from View Applet
    Advanced XML for Notes
    Advanced XML techniques with Domino using data binding and Notes queries
    Advertising server
    Serves advertisements from an internally maintained list.
    Agent to Compare 2 Documents in R5
    Agent to Compare 2 Documents in R5 (works with RTF fields, too).
    Agentless thread map database sample
    Demonstrates a technique for generating thread maps in an application without the use of a background agent.
    agentShowInternetHeaders
    LotusScript agent to show Internet "received" headers
    Alarm/Reminder setting from another application
    Set an alarm or reminders in a user's calendar from another application
    Alex & Dilbert Cartoon Retrieval Agent
    Database to retrieve and email Dilbert and Alex Cartoons
    Allow value not in list
    To improve Allow value not in list on the WEB
    Allow values not in list combo for web
    Combo box with allow values not in list for IE5 and above, Netscape 6 and above
    Alternate Color Rows View in a Web Browser - Version 3
    Alternate Color Rows View Version 3 - More features
    AntiSpamFilter Agent
    Anti-spam agent and design elements to enhance spam mail filtering in the standard Notes mail template.
    API Goodies for Lotus Notes
    Control various Win API settings from inside Notes.
    AppleScript code examples for Notes
    This database contains additional programming examples for AppleScript in Notes.
    Application Development Documentation Library
    Allows developers of a systems group to store their documentation.
    Archive on CD-ROM
    Agent to archive on CD-ROM.
    Archive Options
    Archive your mail db by dates or by sizes.
    ArraySort
    An array sort using a fast shell sort algorthim
    Article "Notes application strategies: Document rating" sample database
    Sample database that accompanies the article, "Notes application strategies: Document rating"
    Article "Notes application strategies: Interactive search" sample database
    Sample database to accompany the article, "Notes application strategies: Interactive search."
    Article "Notes application strategies: Mail Processor" sample database
    Sample database to accompany the article, "Notes application strategies: Mail Processor."
    Article "Notes application strategies: User activity tracking" sample database
    Sample database to accompany the article "Notes application strategies: User activity tracking"
    ASP SendMail for Notes/Domino
    Very simple program in VBScript that sends mail in ASP / WSH natively through Notes/Domino
    Audio CD Tracking
    Keeps track of 100 CD changer and CD collection

    Go back


    Интенет эфир о Lotus Notes. Блоги и форумы

    1. BlackBerry Curve 8320 Titanium

    It's supported on BlackBerry Internet Service, giving you access to up to 10 work or personal email accounts (including most popular ISP email accounts), as well as BlackBerry Enterprise Server, enabling advanced security and IT administration within IBM Lotus Domino, Microsoft Exchange and Novell GroupWise environments.

    2. Re: Народ, помогите. Кто настраивал ICM на Domino.

    Да, если указывать полный путь с указанием базы, то отображается нормально. Нигде не могу найти инфу о том, как работает в связке ICM и Internet Site

    3. Announcing the winners of our Lotusphere giveaway!

    :: Abstract not available ::

    4. Re: Регистрация дополнительных админов на 2 сервере Domino

    либо сервер не запущен либо у админа отсутсвует(или неправильно заполнен) документ соединение на сервер и имя сервера не разрешается в ip.

    5. Re: Уведомление о приходе почты

    возможно проблема была связана с выбором location?

    6. Re: Народ, помогите. Кто настраивал ICM на Domino.

    а если подставить в запрос полный путь до настроеной страницы, отобразится правильно?

    7. Re: Помогите с Check passwords on Notes IDs

    предлагаю для начала уточнить на каком сервере находится проблемная АК и в ней проверить password digest пользователя, возможно проблема с репликацией
    если это так то заставить отреплицироваться изменения в АК

    8. ... as rival e-mail servers including IBM's Lotus Domino and other SMTP-compliant ...

    9. Handy Backup 6.2.2 с новыми функциями и усовершенствованиями

    В новой версии улучшена функция Outlook backup и усовершенствована работа плагина Lotus Notes/Domino Backup.

    10. Untitled

    11. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 52 ...

    Вышел новый выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент.

    12. Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...

    Р"С"СРѭР" РѬРѭРІС"Р№ РІС"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС"СѬСгРѭРѭРѬС".

    13. Воть так вот.

    Цитата
    Лотусблть!

    Вот как-бэ так вот собрать всех разработчиков Lotus Notes в одном месте, и запретить этим цензура цензура цензура цензура .
    А потом сжечь.
    До чего-ж цензура система... На редкость... Просто таки эталон цензура.

    Вот так вот думает товарисч Necroscope |#^#]>отсюда|#^#]>
    обьявляем флешмоб-с

    14. Re: Уведомление о приходе почты

    И какое же решение? Я думаю остальным тоже будет интересно послушать. Может у кого-то тоже возникнет такая проблема

    15. Setparameter

    Добрый день.
    Lotus 5, Windows XP SP3

    Не происходит выбор данных при передачи кириллического параметра:


    QueryExp="select * from poz t "&_
    "where t.ID like ?first?"

    Set QryExp.Connection = con
    QryExp.SQL=QueryExp
    Set resultExp.Query = QryExp


    If Not ResultExp.SetParameter(1,"'А%'") Then Exit Sub 'киррилический параметр


    print cstr(ResultExp.GetParameter(1)) 'выводит 'А%'
    If Not resultExp.Execute Then
    Print resultExp.GetExtendedErrorMessage
    exit sub
    End If
    print cstr(ResultExp.GetParameter(1)) 'выводит '·%'


    If resultExp.IsResultSetAvailable Then
    Print "ALLGOOD"
    End If

    При выполнении простого запроса без параметра
    QueryExp="select * from poz t "&_
    "where t.ID like 'А%'" всё работает (т.е. драйвер ODBC работает корректно )

    Как передать кириллический параметр?
    Менял кодировку в реестре Windows - не помогает.
    User Preferences - International - CodePage 1251

    16. Enabling Smartcards for Notes login

    Beginning in Notes 7.0.2 the preferred way to enable Smartcards for Notes login is to secure the ID file using a private key from a personal Internet certificate stored on the Smartcard. Because this

    17. Delaware and Hawaii trivia question

    What do Delaware and Hawaii have in common, different from other states? Be the first with a correct answer, and win fame and glory! No actual prizes, sorry. ...

    18. Проведём анализ браузеров

    , Lotus Notes, iCab - около 0 %.[3]

    19. Dharma Talk, Feb 1 2009: Facebook Official (part one)

    The thing is, whenever you change one of these settings, the site sends a note to all your friends, informing them of this. I don't know if other sects have a process of this, but in Mahayana/Zen Buddhism, we have a teaching from the Lotus Sutra, that all beings have the capacity and the destiny of Buddhas.
    Блиц-опрос
    Давай знакомиться. В каких отношениях с Lotus Notes?
    (голосование возможно только из письма рассылки)
  • Lotus Администратор
  • Lotus Программист
  • Lotus Пользователь
  • С Lotus Note не знаком
  • Хочу познакомиться с Lotus Notes/Domino
  • Вакансии для специалистов

    1. US IT - Lotus Notes Tech Support OPS43

    US IT - Lotus Notes Tech Support OPS43 Apply Online Job Description The PricewaterhouseCoopers (www.pwc.com) network of firms provides industry-focused Assurance, Tax and Advisory services to build ...

    2. Project Manager - Lotus Notes Development Projects

    Project Manager - Lotus Notes Development Projects Job Code: ct35-Mat Location: Washington, DC Compensation: $95,000 - 110,000 Description: If you are an experienced technical Project Manager, this is...

    3. Lotus Notes Developer

    Kforce is seeking a Lotus Notes Developer for an Austin client. Functions: * Independently research, design, and develop complex computer software systems based on customer requirements * Must communi...

    4. Lotus Notes Administrator

    Lotus Notes AdministratorOTHERAs part of the staffing/hiring process, the following WILL be required if a candidate is selected for a role and chooses to move forward:1) Criminal Background Check (at ...

    5. Lotus Notes Admin / Developer

    One of my clients in Appleton is hiring for a Lotus Notes Admin / Developer. -3-5 years of experience administering and developing in a Lotus Notes/Domino environment. -Candidate would have experience...

    6. Lotus notes Administrator

    POSITION VERY URGENT WITH OUR DIRECT CLIENT-Candidate will need to hit the ground running and has to have hands on experience on:1. Lotus Quikr * installation and configuration on a production environ...

    7. Lotus Notes - Domino - Administrator

    Minimum Required Skills: Lotus notes administrator, domino administrator, domino admin, notes administrator, notes admin, Certified Lotus Professional, Lotus Notes, Systems Engineer, Systems Administr...

    8. Lotus Notes Developer

    Our client, located in RTP, NC, is currently in need of a Lotus Notes Developer to develop and support many Lotus Notes applications. The applications complexity will be fairly complex. Applications c...

    9. Lotus Notes Messaging Specialist (20988)

    Perot Systems Corporation is a worldwide provider of information technology services and business solutions to a broad range of clients. It is currently looking for a Lotus Notes Messaging Specialist ...

    10. Lotus Notes Developer

    This is an immediate need for a Lotus Notes developer at the DC site with a minimum 5 years experience. Each submission must be accompanied by a separate letter from the candidate as to why they are q...

    11. Programmer/Analyst - Lotus Notes/Web Developer

    --Description-- We are assisting our Birmingham client with their search for a Programmer/Analyst - Lotus Notes/Web Developer. Responsibilities include: Analysis, design, coding, testing, implementati...

    12. Help Desk Support - Lotus Notes to Outlook Conversion

    --Description-- **********************Help Desk Support************************ We are looking for consultants that will primarily provide Helpdesk support for the conversion of associates from Lotus ...

    13. Lotus Notes Developer

    --Description-- Vaco Technology is seeking a Lotus Notes developer for a 3 month+ contract opportunity in Memphis, TN. Salary is commensurate with experience. This person will be responsible for creat...

    14. Help Desk Support - Lotus Notes to Outlook Conversion

    ***************Help Desk Support****************We are looking for consultants that will primarily provide Helpdesk support for the conversion of associates from Lotus Notes to MS Outlook. Support for...

    15. Lotus Notes Developer

    Connexion Systems & Engineering, a Boston based IT and Engineering Solutions Company immediately seeks individuals with the following skills: Job# 10898Lotus Notes Consultant Major Duties: This person...

    16. Lotus Notes Consultant

    3 months plus contract - send resumes to mlong@summerfield.netLotus Notes Consultant Major Duties: This person will be responsible for creating and updating non-web applications using Lotus Notes. Com...

    17. Lotus Notes Administrator

    Required:3-5 years experience with Lotus Notes Server Administration3-5 years experience supporting Notes/Domino on Windows server environments (build, upgrade, patch, etc..)Working knowledge of suppo...

    18. LOTUS NOTES ADMINISTRATOR

    All applicants must have a minimum of 3 years IT Industry experience in order to apply. No 3rd party resumes accepted.Tampa, FlRequired:Must have 3-5 years experience with Lotus Notes Server Administr...

    19. Lotus Notes Administrator

    LOTUS NOTES ADMINISTRATORPosition is in Pittsburgh, PASystems Administrator provides end to end infrastructure services and support for the firm*s application development, production support clients a...

    20. Jr Lotus Notes Administrator

    LOTUS NOTES ADMINISTRATORPosition is in Pittsburgh, PASystems Administrator provides end to end infrastructure services and support for the firm*s application development, production support clients a...

    Закладки о Lotus Notes

    1. Lotus Notes Client V6.5.x - The CD Forum

    Create Lotus Notes client on Bartpe

    2. GTD and Lotus Notes

    3. InternetNews Realtime IT News - Lotus Notes, Microsoft Competition Heats Up

    4. Alltop - Top Lotus News

    5. YouTube - Twitter for Lotus Notes

    6. Configure Eclipse 3.4 for Notes 8.5 - lekkimworld.com

    7. User experience guidelines for IBM Lotus rich client applications and plug-ins

    8. Create MIME Messages with LotusScript -- Use this technique to maintain e-mail formatting over the Internet. ++ Tags: E-Mail, IBM, IBM Lotus, IBM Lotus Notes, LotusScript, Messaging

    Creating a MIME message with mixed content types using LotusScript

    9. Understanding desktop email clients - Litmus

    10. assonos blog :: SnTT: Installing and running Notes R5, 6, 7 and 8 concurrently

    Multiple Client version installation

    11. Lotus Notes Ninjas: Domino Web Access Warning

    solution to reset the cache on the server.

    Источники знаний. Сайты с книгами


    "Красные книги" IBM

    Книги компании IBM по специализированным тематикам о Lotus Software. Основной язык - английский форматы pdf и html

    Книги компании "Интертраст"

    Для администраторов разработчиков и пользователей. Настройка и администрирование, разработка и программирование, пользование системой Lotus Notes
    Документация. YellowBook
    Оригинальная документация по продуктам Lotus Software. Язык англыйский. Форматы pdf html nsf
    IBM Пресс
    Книги от компании IBM. Книги и брошуры на заказ и на бесплатную скачку в формате pdf
    КУДИЦ-ПРЕСС
    Просмотр и заказ книг. Некоторые книги возможно скачать в формате pdf для свободно чтения и просмотра.
    Книги о Lotus Notes в Интернете
    Ссылки на книги и методички находящиеся в свободном пользовании. Ветки форумов обсуждения книг и материалов. Поисковый сервер по хелпам Lotus Notes книги от Google для свободного просмотра

    В избранное о Lotus Notes/Domino В подготовке выпуска использовались материалы и знания
    По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes

    В избранное