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

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


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

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

Содержание:

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

Ведущий специалист розничного кредитования - Омский городской портал Город55.ру

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

Flex With Domino Quick Start - Part 4 | Blog
Build iWidgets for IBM Lotus Connections V2.0

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

torrents_ru: IBM Lotus Domino 8.5 32 bit for Windows English (C1SP7EN ...
Emoze v.2.1.6
В этой компании пользуются, правда, не доской, а Lotus Notes.
Lotus Notes 8.5 - Messaging & collaboration client.
На Lotus Notes.
Решение
Как написать резюме?
Великий Lotus Notes :
Помогите найти.
Великий Lotus Notes :
ESET NOD32 2.70.25 + Fix Rus (С НЕОГРАНИЧЕННЫМ КЛЮЧОМ)
Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 49 ...
Demonstrations for the Lotus Notes client
Р"С"РїСгСГРє СѬР°СГСГС"Р"РєРё "Lotus Notes/Domino -- РїСѬРѭРґСгРєС" Рё РёРѬСГС ...
Перенес почтовые базы на новый сервер...
Introduction to Alloy by IBM and SAP
Lotus Workflow
Sendkeys & shell
Ошибка: Nonexistetnt or invalid recovery information

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

US IT - Lotus Notes Tech Support OPS43
Project Manager - Lotus Notes Development Projects
Jr Lotus Notes Administrator
Jr. Lotus Notes Administrator
Lotus Notes Administrator
Lotus Notes Administrator
Sr. Lotus Notes Developer - Domino, Notrix, Migrating, Data
Lotus Notes Developer
Lotus Notes Administrator
Jr. Lotus Notes Developer
Lotus Notes / Domino Consultant

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

11TMR :: Slides for BP105 and BP109
OpenNTF.org - Lotus Notes and Domino Open Source Community
Notes Design Blog
Lotus Notes and Domino wiki
IBM General webcast event - Lotusphere 2009 Opening General Session - 15 jan 2009
Re: Ruby + Lotus Domino oh my!
LepoLand - A Blog by Alan Lepofsky - Alan's blog about software ...
Notes Design Blog
My Portal Project " .NET for Domino Devs
Lotus Domino Designer wiki
DominoWiki, new release

Lotus Notes. Видео и изображения (4)

Software Dating Game
Lotus Notes 8.5 - iCAL Support in the Lotus Notes Calendar
Using Lotus Notes 8 and above to read RSS Feeds
Model Metrics - Cloud Converter Screen Cast (1)
Спонсоры рассылки:
Поиск по сайтам о Lotus Notes/Domino
Полнотекстовый поиск по тематическим сайтам о Lotus Notes
Хостинг на Lotus Domino















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

    1. Ведущий специалист розничного кредитования - Омский городской портал Город55.ру


    Ведущий специалист розничного кредитования
    Омский городской портал Город55.ру - 8 час. назад
    Опытный пользователь ПК (Windows, MS Office, IBM Lotus Notes, Диасофт, Софит) и оргтехники. Быстро обучаюсь пользоваться любым ПО. Специалист отдела розничного кредитования, АКБ «СОЮЗ» (ОАО) (11-100 человек). предварительные переговоры с Клиентом, оценка заявок на предмет соответствия Кредитной политике Банка, помощь Клиенту в определении условий кредита и заполнении заявки на кредитный продукт; прием заявок на предоставление кредитов; андеррайтинг заемщиков (физ. и юр. лиц) и предмета залога (жилая, ...
    Компания ПУЛ - разработка приложений на Lotus Notes/Domino

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

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

    Hmm. What to do now? I guess we need to make the navigation elements we added last Wednesday actually do something. This is where we go beyond the basics though, stepping outside the idea of a "quick start" and it gets a bit complicated. I should probably have thought this through before I got this far.

    There are two approaches we can take here. The most obvious approach would be to somehow have the code fetch the newly-selected view -- both its design and its data -- each time a different view is selected. This seems to be the goal of any Notes developer adapting to a new web framework -- Ext.nd have done it with Ext and it's already been done with Flex by FlexDomino.net. In both cases you select a view and it fetches the view's design and data as two separate requests and then re-builds the view on the fly.

    That's all very clever (and useful if you want to quickly migrate a many-viewed database to the web) but it's not the only way to tackle things. Let's look at a way of just re-displaying the data we already have. What if we could categorise the existing data on any "field" it contained without needing to fetch anything back from the server?! Flex can do this.

    ScreenShot002 Let's see an example first. Either look at the updated demo for this "series" of posts and click the "by something" links on the left or (if you're feeling underwhelmed by that) try the updated accounts.nsf which I've been working on in the background and click the "group by category" checkbox above the view.

    In the both cases notice that there's no request sent to the server! How cool is that!?

    To do this the first thing you need to do is switch from using a DataGrid to using an AdvancedDataGrid. Nothing tricky in that, but it does mean you'll need the professional version of Flex Builder, which is nearly three times the price of the standard version ($700 rather than $250). It's worth it for the advanced grid alone, but you also get the charts with the pro version. When combined, both features were enough to convince me to part with the extra cash.

    Unfortunately I don't really have the time to talk about the code involved in categorising a previously flat "datagrid". Let's just say there's not really much to it (10 lines of code). You can see how it's done by right-clicking the demo and viewing the source. Look inside the treeItemClicked function.

    Hopefully what this has shown is that you can do things differently sometimes. Although there's a big assumption in this case -- that you've already loaded the whole view. If you've only loaded the first 30 entries of the flat view then the categorised version you build might not tell the whole story!

    Again it all comes down to the situation at hand, as to how you'd deal with it. It's just that it always seems to be assumed that all you want of a web-enabled Notes database is an exact copy of the client version in every way. Is that really always the case?

    Whether I take this "quick start" series of posts any further I don't know yet. What do you think? Hopefully by now it's shown the power of Flex and how simple it is to achieve tangible results. Is there anything else you want to see added/tackled?

    Click here to post a response

    2. Build iWidgets for IBM Lotus Connections V2.0

    IBM Lotus Connections Version 2.0 offers additional functionality via the iWidgets platform, which is built into the Homepage and Profiles features. Learn how to build your own widgets and extend the functionality of IBM Lotus Connections. Discover how to use minimal code to build three simple widgets that perform some not-so-simple functions.

    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. torrents_ru: IBM Lotus Domino 8.5 32 bit for Windows English (C1SP7EN ...

    torrents_ru: IBM Lotus Domino 8.5 32 bit for Windows English (C1SP7EN ...

    2. Emoze v.2.1.6

    - Совместимость с Microsoft Outlook, Microsoft Exchange, Lotus Notes Domino и серверов электронной почты POP3, таких как Yahoo! и Gmail

    3. В этой компании пользуются, правда, не доской, а Lotus Notes.

    Да вы даже не посмотрели на письмо. Конечно, оно зарегистрировано и получило ...

    4. Lotus Notes 8.5 - Messaging & collaboration client.

    Lotus Notes is the leading client for messaging, e-business, and collaboration. Organizations can reduce costs and gain a competitive edge by enhancing productivity and by leveraging the value of e-business and collaboration with Lotus Notes.

    5. На Lotus Notes.

    Автоматизация бизнес-процессов. На Lotus Notes.

    6. Решение

    Стоимость услуг по настройке баз данных Lotus Notes составляет 175000-00 (Сто семьдесят пять тысяч) тенге; (20.01.09 в 12.00 ч.) Стоимость услуг по настройке баз данных Lotus Notes составляет 175000-00 (Сто семьдесят пять тысяч) тенге.(21.01.09 в 15.00 ч.) І. Признать победителем государственных закупок услуг по настройке баз данных Lotus Notes ценовое предложение:

    7. Как написать резюме?

    Как можно всерьез отнестись к молодому человеку 23 лет от роду, когда он сообщает о себе, что чуть ли не в совершенстве владеет СУБД Oracle, Informix и Microsoft SQL Server одновременно, а также ОС UNIX, NetWare, Windows NT и, более того, САПР AutoCAD и системой Lotus Domino?

    8. Великий Lotus Notes :

    Великий Lotus Notes : Не он сам, конечно, а одна из интегрированных с ним баз ...

    9. Помогите найти.

    Коллеги!!!
    Крик души!!!

    Помогите найти WebSphere Portal 6. Выложите.
    В наличие есть лиц. WebSphere MQ v.5.3 (Win, Solaris, HP-UX, AIX, Linux),
    WebSphere Development Studio for iSeries v.6 (6 cd), WebSphere Application server v.6.0,
    WebSphere Host Access Transformation Services v.6 (HATS), IBM DB2 Universal Database Express Edition v 8.2 (rus, Win), Комплект разработчика IBM для 64-битных систем Java v 1.3.1 и 1.4 +
    по мелочи дополнительные утилиты for Java. Все лицензия made in IRELAND.

    Может кому пригодится.

    10. Великий Lotus Notes :

    Великий Lotus Notes : Не он сам, конечно, а одна из интегрированных с ним баз ...

    11. ESET NOD32 2.70.25 + Fix Rus (С НЕОГРАНИЧЕННЫМ КЛЮЧОМ)

    Он обеспечивает безупречную защиту персональных компьютеров и корпоративных систем, а также почтовых серверов Microsoft Exchange Server, Lotus Domino и др.

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

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

    13. Demonstrations for the Lotus Notes client

    These demonstrations will show you how to perform common tasks in Lotus Notes.

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

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

    15. Перенес почтовые базы на новый сервер...

    ... включая и shared mail базу, а сервак начал писать "D:\IBM\Lotus\Domino\data\mail\userbox1.nsf is linked to shared mail, please unlink this database from shared mail."
    И так для каждого пользователя. Чтобы это значило? Зачем он просит "please unlink this database from shared mail."?

    16. Introduction to Alloy by IBM and SAP

    17. Lotus Workflow

    Дело значит было так, mad.gif Есть жизненный процес документа, и на одном этапе создатилю документа должно отправится письмо, а оно mad.gif с ................ ка не отправляется, а может и отправляется только хрен его знает куда и кому, но только не тому кому нужно, я уже пытался указывать конкретного пользователя, только ничего не изменилось. Может кто знает с какой стороны подойти к этому колобку, ато от чИтания различного рода хелпов по этому Lotus Workflow у меня уже голова болит и хвост отваливается

    18. Sendkeys & shell

    По хелпу все понятно и работает
    Код
    Sub WriteNote
       Dim taskId As Integer, note As String
       note$ = InputBox("Start your note:")  
       taskId% = Shell("notepad.exe", 1)
       SendKeys note$, TRUE
    End Sub
    WriteNote


    но если изменить код на

    Код
    Sub WriteNote
       Dim taskId As Integer, note As String
       note$ = "ping 127.0.0.1"
       taskId% = Shell("CMD", 1)
       SendKeys note$, TRUE
    End Sub
    WriteNote


    то как бы банан получается, понятно что можно сделать

    taskId% = Shell("ping 127.0.0.1", 1)

    но мне нужно передавать параметры в CMD и запускать приложение так, стартовать из LS могу но появляется ошибка, о том что не видится девайс т.е. я так понимаю приложение не имеет доступа к ключу реестра.

    тоже самое с hyperterminal он стартует но sendkeys не передаются.

    Пните в нужную сторону.

    19. Ошибка: Nonexistetnt or invalid recovery information

    Здравствуйте!
    Коллеги, будьте любезны, подскажите, как исправить ошибку?
    Пользователь забыл пароль на свою почту. С помощью ID-recovery можно заменить старый пароль на пароль восстановительный (получив его от администратора). Однако, при выборе ID-файла Lotus пишет ошибку: Nonexistetnt or invalid recovery information.
    В чем может быть эта ошибка?
    Блиц-опрос
    Давай знакомиться. В каких отношениях с 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. Jr Lotus Notes Administrator

    LOTUS NOTES ADMINISTRATOR Position is in Pittsburgh, PA Systems Administrator provides end to end infrastructure services and support for the firm?s application development, production support clients...

    4. Jr. Lotus Notes Administrator

    Job Title: Jr. Lotus Notes Administrator Skills: Lotus Notes; UNIX Position is in Pittsburgh, PA Responsibilities include: ? Build, integrate and maintain servers in development, QA, production and co...

    5. Lotus Notes Administrator

    Assignment Location:Pittsburgh, Pennsylvania Job Title: Lotus Notes Administrator Skills: Lotus Notes; UNIX Systems Administrator provides end to end infrastructure services and support for the firm?s...

    6. Lotus Notes Administrator

    LOTUS NOTES ADMINISTRATOR Position is in Pittsburgh, PA Systems Administrator provides end to end infrastructure services and support for the firm?s application development, production support clients...

    7. Sr. Lotus Notes Developer - Domino, Notrix, Migrating, Data

    Reference # 5893 Descriptions: - Senior Lotus Notes/Domino developer is needed with skills in Notes/Domino 7. - In addition to strong technical skills, the successful candidate must have excellent ora...

    8. Lotus Notes Developer

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

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

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

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

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


    "Красные книги" 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. Видео и изображения

    1. Software Dating Game

    Apple sponsors the "Software Dating Game" in 1984. This clip is from the video "The Machine That Changed the World" which is worth a look

    Author: jeremytai
    Keywords: apple microsoft lotus notes steve jobs bill gates mitch kapor computers dating computer culture
    Added: January 14, 2009

    2. Lotus Notes 8.5 - iCAL Support in the Lotus Notes Calendar

    Here is a link to my blog where you can find more support http://st1.rivettassociates.com/Web/Vaughans.nsf/ This video shows how to set up Lotus Notes 8.x to integrate both the Lotus Notes Calendar and compliant iCAL Calendars into one view within Lotus Notes. This also works with Google Calendar. In this video I show how to set up Lotus Notes to work with Google Calendar. My name is Vaughan Rivett and I am a Lotus Notes Consultant based in New Zealand. I support Lotus Notes Administrators throughout New Zealand and also other parts of the world. Most of my clients are not New Zealand based due to my ability to support Lotus Notes and Lotus Domino server from anywhere in the world. If you have a question about Lotus Notes, please feel free to contact me on Skype. My user name is vrivett. The New Zealand time zone is GMT +12

    Author: vrivett
    Keywords: Lotus Notes ical google calendar calander new zealand support
    Added: January 15, 2009

    3. Using Lotus Notes 8 and above to read RSS Feeds

    http://st1.rivettassociates.com/Web/Vaughans.nsf/ In this video I show you how to use Lotus Notes as an RSS Feed Reader. My name is Vaughan Rivett and I am a Lotus Notes Consultant based in New Zealand. I support Lotus Notes Administrators throughout New Zealand and also other parts of the world. Most of my clients are not New Zealand based due to my ability to support Lotus Notes and Lotus Domino server from anywhere in the world. If you have a question about Lotus Notes, please feel free to contact me on Skype. My user name is vrivett. The New Zealand time zone is GMT +12

    Author: vrivett
    Keywords: Lotus Notes New Zealand
    Added: January 15, 2009

    4. Model Metrics - Cloud Converter Screen Cast (1)

    Introduction to Cloud Converter from Model Metrics. Cloud Converter is a collection of Java scripts designed to ease the transition from traditional databases (Lotus Notes, Microsoft SQL, Oracle, etc.) to the Force.com cloud.

    Author: ModelMetrics
    Keywords: model metrics Force.com open source
    Added: January 15, 2009

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

    В избранное