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

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


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

2009-01-26
Поиск по сайтам о Lotus Notes

Содержание:

Новости о ПО Lotus Notes (1)

НОВОСОФТ ВЫХОДИТ НА РЫНОК ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ ПО БЭКАПУ ДАННЫХ ДЛЯ ПРЕДПРИЯТИЙ - Пресс-релиз.ру (пресс-релиз)

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

Flex With Domino Quick Start | Blog
Writing efficient, effective Web code for Domino, Part 4
Maximize the Green Benefits of Domino Attachment and Object Service (DAOS) for Notes and Domino 8.5

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

Вот и стонет народ потом от ClearCase и Lotus Notes.
Вот и стонет народ потом от ClearCase и Lotus Notes.<br /><br />У наших клиентов ...
есть специалисты по Lotus Domino/Notes? Питер.
("Lotus Notes Release 7.0.2 September 26, 2006"
Сервер экспресс-сообщений
Привязка документов Lotus к карте
Re: Как подключить к лотусу криптобиблиотеку с реализацией ГОСТ?
Re: Проблема с буквой " Я " в адресе.
что должен видеть юзер в names.nsf
Программы поддержки коллективной работы (Computer Supported Cooperative Work)
Картинки из Виндовоз Свисты
Совместное использование Microsoft Word и Excel в бизнеспланировании
Полезные почтовые серверы
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 47 ...
Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...
Community -- a perrenial favorite Lotusphere theme
Locating the AddToKit.exe and TrimUpdateSite.exe for customizing Notes 8.5 install or upgrade
Подвисание Lotus клиента
Об Олигархе, ICQ, Обаме, Гае Ричи, твиттере, индусах и австрийском бэнкинге

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

US IT - Lotus Notes Tech Support OPS43
Project Manager - Lotus Notes Development Projects
Senior Lotus Notes Desktop Support
Lotus Notes Specialist
Lotus Notes Developer
Lotus Notes Developer
Experienced Lotus Notes Developer
Lotus Notes Developer (Hedge Fund Firm)
Jr. Lotus Notes Developer
Lotus Notes Administrator (Hedge Fund Firm)
Lotus Notes / Domino Consultant
Lotus Notes Administrator

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

Resources for Interoperability and Migration from Lotus Domino
DontPanic - a blog about Lotus Notes / Domino
Notes/Domino Tipps und Tricks - madicon® - Ingenieurbüro Manfred Dillmann
Lotus Notes Soon to Become Even More LinkedIn -- Seeking Alpha
Michael Greth MVP SharePoint Blog : SharePoint und Lotus Notes
http://www-12.lotus.com/ldd/doc/domino_notes/7.0/help7_client.nsf/Main?OpenFrameSet
The Taking Notes Podcast
IBM - Identifying and restoring truncated documents in a Notes database
Notes/Domino 6 and 7 Forum : Solution.
Project XPages Wiki Release Document
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















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

    1. НОВОСОФТ ВЫХОДИТ НА РЫНОК ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ ПО БЭКАПУ ДАННЫХ ДЛЯ ПРЕДПРИЯТИЙ - Пресс-релиз.ру (пресс-релиз)


    НОВОСОФТ ВЫХОДИТ НА РЫНОК ПРОГРАММНОГО ОБЕСПЕЧЕНИЯ ПО БЭКАПУ ДАННЫХ ДЛЯ ПРЕДПРИЯТИЙ
    Пресс-релиз.ру (пресс-релиз) - 2 час. назад
    Первые попытки вхождения на рынок программного обеспечения для предприятий были предприняты компанией Новософт около 2-х лет назад, когда мы выпустили 3 плагина для Handy Backup по защите данных ODBC-совместимых баз данных, Lotus Notes/Domino и Microsoft Exchange Server. В мае 2007 линейка продуктов компании пополнилась Handy Backup Server, который создает резервные копии данных сетевых рабочих станций по схеме клиент-сервер. «Что отличает нас от наших конкурентов – это то, что мы предлагаем надежное ...
    Компания ПУЛ - разработка приложений на Lotus Notes/Domino

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

    1. Flex With Domino Quick Start | Blog

    All this talk of Flex is one thing. What you really need is a simple example to show you what it's all about though, don't you!?

    The only way to really learn something is to get your feet wet. Well, today I hope to help tempt your toes in for at least a dip.

    First thing you'll need is Flex Builder 3 which has a 60 day trial period, so no excuses there! Although, in theory, you don't actually need it as Flex is open source, so you can write your apps in a text editor and then compile from the command line using the free SDK. I'm assuming you're not in to that though.

    In Flex Builder start a new Flex Project from the File menu and call it "Simple".  You should end up looking at an empty mx:Application tag in the editor.

    ScreenShot001

    Now switch to Design mode, using the button you can see above. From the Components pane (bottom left) find the DataGrid and drag one in to the design area, like so:

    ScreenShot002

    Now, switch back to Source mode and you see the code for this new "view":

    ScreenShot003

    Notice the headerText and dataField properties of each column. We need to change these to cater for the XML we're expecting back from the Domino view. You can see this in effect in the demo/code later on.

    What we need to do now is get data from Domino to fill this grid. To do this we need an HTTPService object, which we point at a view on this server, like so:

    ScreenShot004 

    The "simple" view returns XML in the E4X format and you can see it here. To do this I use the Treat as HTML property of the View.

    Now we have a way to get the data we need to tie it to the DataGrid / "view". To do this we use its dataProvider property, like so (note that httpSimple is the ID of the HTTPServive we created above):

    ScreenShot005

    We've told the grid to bind itself to the last XML result fetched from our HTTPService. From that result it uses each document object as a row in the grid.

    All we need to do now is trigger the HTTPService. To do this we use the creationComplete event of the Application itself, like so:

    ScreenShot006

    This is equivalent to the onLoad event of the Body tag in HTML. In our case we tell it to trigger the request to fetch the view's XML. When the XML is returned the grid gets updated because it's bound to the result. If you triggered the HTTPService's send method again and the backend view had changed the grid would update.

    Now we've written all the Flex code needed we just need to compile it. Press the green "play" button on the toolbar and a local version of the Flex app will launch in your browser. All we need to do now is copy the files from the "bin" folder to our NSF. The files are normally in My Documents\Flex Builder 3\Project Name\bin-debug.

    To get the Flex app to launch when the database is opened at its root I've used this trick

    All that's left now is to provide demos and download. Well, you can see it in action here and you can download the working NSF here. The Flex code itself is here.

    Click here to post a response

    2. Writing efficient, effective Web code for Domino, Part 4

    Improve the performance of your Domino Web pages and simplify code maintenance by using unobtrusive JavaScript to separate function from content in your HTML page mark-up. Learn how to implement unobtrusive JavaScript, avoid common coding mistakes, and trigger your JavaScript code on most major browsers at the earliest possible moment.

    3. Maximize the Green Benefits of Domino Attachment and Object Service (DAOS) for Notes and Domino 8.5

    Domino Attachment and Object Service (DAOS), new in Notes and Domino 8.5 manages a shared repository of referenced objects on disk, saving significant disk space and reducing I/O and time to compact, among other benefits. The referenced objects that DAOS manages in its initial release are document attachments. Learn how DAOS reduces or eliminates duplicate attached files within a single Notes Storage Facility (NSF) file or across multiple NSF files on the same server. Find out how to optimize DAOS for Notes mail, and discover how to enable older NSFs now running on 8.5 to take advantage of DAOS.

    developerWorks  >  Lotus  >  Forums & community  >  Lotus Sandbox

    Lotus Sandbox

    developerWorks

    Go back

    Show details for [<a href=/ldd/sandbox.nsf/PrintView/349636f5bd64583785256c5c00482cd1?OpenDocument>2 Extended Attachment Editio2 Extended Attachment Edition
    Edit and handle Attachments in Notes 4 the same way as in Notes 6
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/71c7bb2310a15bc385256d17005a6d68?OpenDocument>A new Approach - Web-based DA new Approach - Web-based Date Picker
    Web-based date picker that displays company sponsored holidays
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/2e808c6e7f2abc6585256d17005a701f?OpenDocument>A new approach - Web-based NA new approach - Web-based NAB
    A Web-based NAB with simple search function
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/67f76112ed2e136c852571db0054f760?OpenDocument>A self-guided tour of DominoA self-guided tour of Domino Domain Monitoring (DDM)
    The attached presentation (ddm.ppt) is a self-guided tour of Domino Domain Monitoring (DDM).
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ccb30b2fead6c2288525690a0048c83b?OpenDocument>A simple method to use File A simple method to use File Upload Controls on the Web.
    For identifying/using file upload controls on the Web.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/255e4fcdbd8a951385256c940075e28e?OpenDocument>Access Level</a>][<br>]DisplAccess Level
    Displays User Access Level in DB - no need to know your group membership.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ae043110f5e4e7338525688d006a5081?OpenDocument>Accidents Reports</a>][<br>]Accidents Reports
    Simple application for reporting and monitoring industrial accidents.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/fe6574162e6c1b6a852567ca006e79f1?OpenDocument>Account Manager</a>][<br>]MaAccount Manager
    Manages accounts, profiles, and contacts.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/11f736c9d472b15885256996006d7458?OpenDocument>ACL Audit Tool</a>][<br>]TooACL Audit Tool
    Tool to perform an ACL audit of databases/templates on a Domino server.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/81deffed8f49e561852568d4006c98e4?OpenDocument>ACL backup and restore functACL backup and restore functions in LotusScript
    LotusScript agents saving ACLs in NotesDocuments and restoring them back to DBs ACL
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/9290c5e7654f34ea85256a1e0050bc55?OpenDocument>ACL Scanner</a>][<br>]CreateACL Scanner
    Creates reports about ACLs on all databases on one server, and recurses groups.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ac1ba5645421b7e285256c940075ef53?OpenDocument>ACL Setter</a>][<br>]Allows ACL Setter
    Allows you to modify a database ACL without manager access on a server.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/80a0129b9d0b965485256a700048ae65?OpenDocument>ACL &quot;Modificator&quot; 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.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/d8bd2253eef9d9918525684a006d1c5a?OpenDocument>Acme.nsf and Zippy.nsf</a>][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
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0a41daba7017450685256a3e00524375?OpenDocument>Action Button to set InterneAction Button to set Internet Password
    Action Button to set Internet Password
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0e3afa9908928a378525699e004e8fc8?OpenDocument>Add business holidays to theAdd 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.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/d94d651dcd540b2485256949006e27db?OpenDocument>Add System DBs</a>][<br>]AddAdd System DBs
    Adds MAIL.BOX, SMTP.BOX, LOG.NSF, etc. from every available server to your workspace.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/69008d904a1ca3ab85256c940075f963?OpenDocument>Address Book Servlet v1.0</aAddress Book Servlet v1.0
    Address Book servlet provides an interface similar to address book dialog box in Lotus Notes client
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/95afbd0f93c19c858525688d006a57b5?OpenDocument>Admin-Dev Tools 2.0</a>][<brAdmin-Dev Tools 2.0
    Tools for day to day admin tasks. Updated from the original version.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f51807e42918e33e00256c090044738f?OpenDocument>Admin ACL 2</a>][<br>]AdminAAdmin 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.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/ca69e90dbf829253852567f3007c4b70?OpenDocument>Admin Helper</a>][<br>]Find Admin Helper
    Find Orphan mail files, check the Out of Office agent owner and the Calendar Profile owner of mail file for existing users.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/80beb21669da8d3185256b1400745b63?OpenDocument>AdminACL</a>][<br>]This toolAdminACL
    This tool allows you, the administrator, to add any group, user, and server to any databases in you organization (in one agent).
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7147feda3a9094ed85256b9f00725761?OpenDocument>Advanced Settings sample datAdvanced 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.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/530cf440b8deb01300256bde0031a0ff?OpenDocument>Advanced View Techniques</a>Advanced View Techniques
    Interesting ways to display views using applets & print selected documents from View Applet
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/770532e1a86fbf1385256f0a00637edc?OpenDocument>Advanced XML for Notes</a>][Advanced XML for Notes
    Advanced XML techniques with Domino using data binding and Notes queries
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/b1176bb4b31fada8852567f300753b47?OpenDocument>Advertising server</a>][<br>Advertising server
    Serves advertisements from an internally maintained list.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0385bf0f95d0c98885256989005a29dc?OpenDocument>Agent to Compare 2 DocumentsAgent to Compare 2 Documents in R5
    Agent to Compare 2 Documents in R5 (works with RTF fields, too).
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f38057887f500e43852567c300660362?OpenDocument>Agentless thread map databasAgentless thread map database sample
    Demonstrates a technique for generating thread maps in an application without the use of a background agent.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7967df8d95f585a485256c940076012b?OpenDocument>agentShowInternetHeaders</a>agentShowInternetHeaders
    LotusScript agent to show Internet "received" headers
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/70f703dd400f97d500256bd000318722?OpenDocument>Alarm/Reminder setting from Alarm/Reminder setting from another application
    Set an alarm or reminders in a user's calendar from another application
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f710dcdf7214e953852569e60054fe7a?OpenDocument>Alex & Dilbert Cartoon RetriAlex & 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
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7b7eff84bd6eeff600256bd8003960e8?OpenDocument>Allow values not in list comAllow values not in list combo for web
    Combo box with allow values not in list for IE5 and above, Netscape 6 and above
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/98176455ff90e2d500256c38004a5f0c?OpenDocument>Alternate Color Rows View inAlternate Color Rows View in a Web Browser - Version 3
    Alternate Color Rows View Version 3 - More features
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/78ad87650e8e6d8085256818007202c2?OpenDocument>AntiSpamFilter Agent</a>][<bAntiSpamFilter Agent
    Anti-spam agent and design elements to enhance spam mail filtering in the standard Notes mail template.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/b376f26b8cbd9f1b8525694d004e24c3?OpenDocument>API Goodies for Lotus Notes<API Goodies for Lotus Notes
    Control various Win API settings from inside Notes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/e6621c730727e8a3852567f4007eaba1?OpenDocument>AppleScript code examples foAppleScript code examples for Notes
    This database contains additional programming examples for AppleScript in Notes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/7d55dec173045350852568a4005d0497?OpenDocument>Application Development DocuApplication Development Documentation Library
    Allows developers of a systems group to store their documentation.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/0af99983727460a000256bd4003996c6?OpenDocument>Archive on CD-ROM</a>][<br>]Archive on CD-ROM
    Agent to archive on CD-ROM.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/9dc708521fd73a43852568a40069cf02?OpenDocument>Archive Options</a>][<br>]ArArchive Options
    Archive your mail db by dates or by sizes.
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/86cf1eb52622488f85256d51004eeb72?OpenDocument>ArraySort</a>][<br>]An arrayArraySort
    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"
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/f5da0954a65348b985256e39004d1583?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: Interactive search" sample database
    Sample database to accompany the article, "Notes application strategies: Interactive search."
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/2e00b11f20d7446b85256e47006624c1?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: Mail Processor" sample database
    Sample database to accompany the article, "Notes application strategies: Mail Processor."
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/a687d600ae1001e985256e550058c84e?OpenDocument>Article &quot;Notes applicatArticle "Notes application strategies: User activity tracking" sample database
    Sample database to accompany the article "Notes application strategies: User activity tracking"
    Show details for [<a href=/ldd/sandbox.nsf/PrintView/1d9d9dd534b1491288256ae3006a997c?OpenDocument>ASP SendMail for Notes/DominASP 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. Вот и стонет народ потом от ClearCase и Lotus Notes.

    "Nobody ever got fired for buying IBM" IBM так прямо и говорит своим клиентам ...

    2. Вот и стонет народ потом от ClearCase и Lotus Notes.<br /><br />У наших клиентов ...

    "Nobody ever got fired for buying IBM"

    IBM так прямо и говорит своим ...

    3. есть специалисты по Lotus Domino/Notes? Питер.

    есть специалисты по Lotus Domino/Notes? Питер.

    4. ("Lotus Notes Release 7.0.2 September 26, 2006"

    Решил тут посмотреть с каких почтовиков мне больше всего пишут, статистика за 3 ...

    5. Сервер экспресс-сообщений

    Доброе время суток!!
    Подскажите, где можно скачать и прочитать об установке и настройке сервера экспресс-сообщений?

    6. Привязка документов Lotus к карте

    Добрый день!
    У кого-нибудь есть опыт создания документов, которые бы имели географическую привязку к карте?
    Мне нужно, чтобы при добавлении документа с описанием объекта, его местоположение можно было отметить на карте,
    а в последствии по щелчку на карте этот документ бы открывался автоматически...

    7. Re: Как подключить к лотусу криптобиблиотеку с реализацией ГОСТ?

    http://www.intertrust.ru/main/products/protect/
    можно подключить crypto pro

    8. Re: Проблема с буквой " Я " в адресе.

    эта ошибка клиента версии 8.0.0-8.0.1
    исправить можно перевыбрав имя
    в версии 8.0.2 исправлено

    9. что должен видеть юзер в names.nsf

    может туплю, но произошло следующее:
    после обновления дизайна АК с 6.5 до 8 вид АК под юзером изменился.
    Теперь юзеры среди прочих видят папку "Configuration", где можно увидеть все серверные документы.
    Редактировать не могут.

    Подскажите, пожалуйста, так и должно быть или это глюк?
    На старом шаблоне такого не было.

    10. Программы поддержки коллективной работы (Computer Supported Cooperative Work)

    - IBM Lotus Notes/Domino Одной из первых СОГР является программный комплекс Lotus Notes фирмы Lotus Development Corporation, разработка которого началась в 1984 году.

    11. Картинки из Виндовоз Свисты

    Прямо сейчас на отцовском ноутбуке на протяжении уже пятнадцати минут грузится так называемый "почтовый клиент" Lotus Notes.

    12. Совместное использование Microsoft Word и Excel в бизнеспланировании

    За рубежом ситуация не такая однозначная, там в конкурентной среде, наряду с продуктами Microsoft, используют схожие по возможностям программы от компании Symantec или Lotus, например Lotus Notes.

    13. Полезные почтовые серверы

    Во-первых, "тяжелые" индустриальные системы вроде Microsoft Exchange, Lotus Notes и Novell Groupwise.

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

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

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

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

    16. Community -- a perrenial favorite Lotusphere theme

    I was lucky enough this year to return to the User Experience Lab in the role of traffic manager. Traffic was lively, as always, and I love it when the lab hums with activity. Some customers come in b ...

    17. Locating the AddToKit.exe and TrimUpdateSite.exe for customizing Notes 8.5 install or upgrade

    The Lotus Notes 8.5 addToKit.exe and trimUpdateSite.exe tools were not included in the Notes 8.5 install kits but are available in Lotus Tech Note "Obtaining Notes 8.5 addToKit.exe and trimUpdateSite.

    18. Подвисание Lotus клиента

    Добрый день!

    Кто ни будь сталкивался с такой проблемой. У пользователей периодически (не систематически) происходит подвисание клиента, например во время печати (набора текста). Как бороться?

    19. Об Олигархе, ICQ, Обаме, Гае Ричи, твиттере, индусах и австрийском бэнкинге

    Скажем, на работе для оперативного общения с руководителем проекта мы используем либо Lotus Notes Sametime (в силу того, что он здесь не последней версии и посему коряв до невозможности, его используют в основном аудиторы, которым запрещено ставить на компы сторонние приложения), либо GTalk.
    Блиц-опрос
    Давай знакомиться. В каких отношениях с 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. Senior Lotus Notes Desktop Support

    Our client, a enterprise level financial institution, is looking for Senior Level Lotus Notes Support Technicians to join their organization. This company is migrating users from both Exchange and Lot...

    4. Lotus Notes Specialist

    Kforce is seeking a Lotus Notes Specialist for a West Chester client that has demonstrated analytical and problem solving skills with the ability to function effectively as part of a team and influenc...

    5. Lotus Notes Developer

    Our client is looking for a senior level Lotus Notes Developer. You need to have at least 3 years experience developing with Lotus Notes. Extensive experience with Lotusscript, DHTML, CSS and other we...

    6. 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...

    7. Experienced Lotus Notes Developer

    A. General - Note: Job Title = Developer, Project Leader, DB Administrator, Systems Analyst, etc.Position Type: Contractor 1 Shift Work?: Y 0 N 1 Shift - Job Title: Experienced Lotus Notes Developer P...

    8. Lotus Notes Developer (Hedge Fund Firm)

    Lotus Notes/Domino DeveloperOpen Systems Technologies, a full-service consulting firm that specializes in providing inclusive IT solutions to the Financial Services industry. Our client, one of the to...

    9. Jr. Lotus Notes Developer

    Our client, one of the top financial services firms in the world, is seeking a Jr. Lotus Notes Developer for their downtown location (close to el trains and Metra stops) for a 3 month contract to hire...

    10. Lotus Notes Administrator (Hedge Fund Firm)

    Lotus Notes AdministratorOpen Systems Technologies, a full-service consulting firm that specializes in providing inclusive IT solutions to the Financial Services industry. Our client, one of the top f...

    11. Lotus Notes / Domino Consultant

    As a Lotus Notes/Domino contractor with our client, you will assist with the development and maintenance of Lotus Notes databases and work with the Systems Engineers to maintain and improve the Domino...

    12. 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...

    Закладки о Lotus Notes

    1. Resources for Interoperability and Migration from Lotus Domino

    Microsoft Transporter for Lotus Domino Availability Microsoft Transporter Suite for Lotus Domino supports transitions from Lotus Domino to the Microsoft collaboration platform, including interoperability and migration tools for directory, mail, and applications.

    2. DontPanic - a blog about Lotus Notes / Domino

    3. Notes/Domino Tipps und Tricks - madicon® - Ingenieurbüro Manfred Dillmann

    4. Lotus Notes Soon to Become Even More LinkedIn -- Seeking Alpha

    5. Michael Greth MVP SharePoint Blog : SharePoint und Lotus Notes

    Zum Thema SharePoint für Lotus Notes Anwender und Integrations-Szenarien gibt es mehrere neue Informationsquellen: * Zwei Webcasts o Optimizing Sharepoint for the Lotus Notes Customer o Integrating MS Office 2003 with Lotus Notes/Domino * Lotus Notes .NET Integration

    6. http://www-12.lotus.com/ldd/doc/domino_notes/7.0/help7_client.nsf/Main?OpenFrameSet

    7. The Taking Notes Podcast

    Podcasts by Bruce Elgort and Julian Robichaux

    8. IBM - Identifying and restoring truncated documents in a Notes database

    9. Notes/Domino 6 and 7 Forum : Solution.

    10. Project XPages Wiki Release Document

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


    "Красные книги" 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

    В избранное