How to count and delete deletion stubs - Lotus Notes Domino - development - Creative design and development - Wohill
Новости о ПО Lotus Notes1. Новые возможности системы электронного документооборота masterdoc - B2Blogger.com (пресс-релиз)
2. Дополнительная информация к пресс-релизу о предложении МТС – 3 месяца бесплатного безлимитного GPRS-Интернет- трафика покупателям Nokia N97 в салонах оператора - Калининградский информационно-аналитические портал
Статьи. Публикации. Пресс-релизы1. Пятьдесят способов поставить закладку: эксперимент в социальных публикацияхВ прошлом году группе потенциальных авторов было предложено написать на разных языках пример кода, используя Atom Publishing Protocol (AtomPub) и Dogear в качестве сервиса, использующего AtomPub. В статье представлены результаты этого уникального эксперимента в социальных публикациях.2. Использование LotusScript и средств автоматизации для интеграции IBM Lotus Notes с Microsoft OfficeБольшинство разработчиков Lotus Notes знакомо с ограничениями на публикацию в Lotus Notes. В своей деятельности вы могли неоднократно сталкиваться с необходимостью решения таких задач как составление стандартных писем на основе данных из приложений Lotus Notes, создание отчетов с определенным форматированием, поддержка таких функций как сводные таблицы, и т.д. Это примеры задач, которые невозможно решить стандартными средствами Lotus Notes. Компания ПУЛ - разработка приложений на Lotus Notes/Domino CodeStore. Коды Примеры Шаблоны1. tests for network drive mapping and maps drives if neededOption PublicOption Declare Dim mappedDrives As Boolean Sub Initialize Call mapNetworkDrives If Not mappedDrives Then Exit Sub End Sub Sub mapNetworkDrives Dim network As Variant Set network = createobject("WScript.Network") Dim drivesAreGood As Boolean drivesAreGood = checkMapping("h:", "\\emrml01\projects") 'substitute your own drive letter and UNC path here. If drivesAreGood Then Messagebox "Drive H is mapped to \\emrml01\Projects",0,"Drive mapped correctly" mappedDrives = True Else Messagebox "Drive H is not mapped to \\emrml01\Projects. I will now attempt to map it myself.",0,"Drive not mapped correctly" Call network.MapNetworkDrive("H:", "\\emrml01\Projects") 'see if we were able to connect If checkMapping("h:", "\\emrml01\projects") Then Messagebox "I did it!! Drive H is mapped to \\emrml01\Projects",0,"Drive mapped correctly" mappedDrives = True Else Messagebox "Can't map the drive. Your H drive must be mapped to \\emrml01\Projects to proceed. Please connect to the network.",0,"Stopping" End If End If End Sub Function checkMapping(driveLetterCheck As String, uncCheck As String) As Boolean 'given drive letter and unc path, check to make sure it's mapped OK. Dim i As Integer Dim drives As Variant Dim net As Variant Dim networkResult As Variant Dim driveLetter As String Dim unc As String Dim drivesAreGood As Boolean Set net = createobject("WScript.Network") Set drives = net.EnumNetworkDrives() checkMapping = False For i = 0 To drives.Count() - 1 Step 2 driveLetter = Lcase(drives.Item(i)) unc = Lcase(drives.Item(i+1)) If driveLetter = driveLetterCheck And unc = uncCheck Then checkMapping = True Exit For End If Next End Function 2. Monitoring the status of external processes on a Lotus Domino serverYou can edit your events4.nsf form to include tasks, but did you realize you can also use it to monitor external prcocesses on your Domino server? Learn how and the benefits in this tip.3. Power to Developers! Expand Sametime Meeting Room Functions with a Single APIDevelopers can extend the functionality of the IBM Lotus Sametime Meeting Room Client (MRC) by simply using one application programming interface (API). Discover how the Sametime MRC JavaScript Extensibility API allows developers to receive event notifications and create additional menu items. Learn how to access events and monitor meeting-room traffic with this new powerful API.4. tests for network drive mapping and maps drives if neededOption PublicOption Declare Dim mappedDrives As Boolean Sub Initialize Call mapNetworkDrives If Not mappedDrives Then Exit Sub End Sub Sub mapNetworkDrives Dim network As Variant Set network = createobject("WScript.Network") Dim drivesAreGood As Boolean drivesAreGood = checkMapping("h:", "\\emrml01\projects") 'substitute your own drive letter and UNC path here. If drivesAreGood Then Messagebox "Drive H is mapped to \\emrml01\Projects",0,"Drive mapped correctly" mappedDrives = True Else Messagebox "Drive H is not mapped to \\emrml01\Projects. I will now attempt to map it myself.",0,"Drive not mapped correctly" Call network.MapNetworkDrive("H:", "\\emrml01\Projects") 'see if we were able to connect If checkMapping("h:", "\\emrml01\projects") Then Messagebox "I did it!! Drive H is mapped to \\emrml01\Projects",0,"Drive mapped correctly" mappedDrives = True Else Messagebox "Can't map the drive. Your H drive must be mapped to \\emrml01\Projects to proceed. Please connect to the network.",0,"Stopping" End If End If End Sub Function checkMapping(driveLetterCheck As String, uncCheck As String) As Boolean 'given drive letter and unc path, check to make sure it's mapped OK. Dim i As Integer Dim drives As Variant Dim net As Variant Dim networkResult As Variant Dim driveLetter As String Dim unc As String Dim drivesAreGood As Boolean Set net = createobject("WScript.Network") Set drives = net.EnumNetworkDrives() checkMapping = False For i = 0 To drives.Count() - 1 Step 2 driveLetter = Lcase(drives.Item(i)) unc = Lcase(drives.Item(i+1)) If driveLetter = driveLetterCheck And unc = uncCheck Then checkMapping = True Exit For End If Next End Function 5. IBM Lotus Domino 8.5 server performance, part 1: IBM Lotus Notes performanceIncreasing value to the customer is an ongoing theme for the IBM® Lotus® Domino® server. The growing volume of information in today’s enterprise strains existing hardware infrastructures. Lotus Domino 8.5 contains features that help relieve the stress on the expensive processor and storage subsystems. This article shows the reductions in processor and disk utilization with Lotus Domino 8.5 and Lotus Notes® clients.6. IBM Lotus Domino 8.5 server performance, part 2: iNotes performanceImproving input/output (I/O) performance is one of the major goals for IBM® Lotus® Domino® 8.5. The developerWorks® article "IBM Lotus Domino 8.5 performance for IBM Lotus Notes users" showed the impressive I/O reductions of Lotus Domino 8.5 with the Lotus Notes client. This article shows the I/O performance improvements of Lotus Domino 8.5 performance with Lotus iNotes® users. Lotus iNotes had been called Lotus Domino Web Access in the past; its name is iNotes in Lotus Domino 8.5.7. IBM Lotus Domino 8.5 server performance, part 3: Enterprise cluster mail performanceIBM® Lotus® Domino® 8.5 server offers a lot of features aimed at reducing the overall total cost of ownership (TCO) of the Lotus Domino mail server cluster infrastructure in a large enterprise. In this article, we show you how you can leverage these features incrementally to realize TCO benefits while upgrading to Lotus Domino 8.5.8. Troubleshoot agents by displaying LotusScript variables onlineIf your Web users are triggering agents, you may want to find out what's going on. Apply this LotusScript to display and easily troubleshoot triggered agent variables. Learn all the steps.9. Database Delivery Done Right -- A "Click and Create" Utility for Domino AdministratorsAutomate the creation and delivery of new databases to your users with this Notes utility. Administrators configure the types of databases that can be created, the allowable server locations, and the people and groups who will be able to use the database types and locations. Database creators (for example, Help Desk staff) can then request new databases by specifying the database type, database location, and the people and groups who may access it. A Notes agent does the rest, handling the creation of the database, any necessary replicas, Access Control List (ACL) entries, and changes to the Domino Directory. Форумы о Lotus Notes/Domino:
Интенет эфир о Lotus Notes. Блоги и форумы1. DIFFHelpDatabase2. 点击网址或从网页粘贴URL时返回错误 ’The Web Navigator Retrieval Process is Not Running’ 或者 ’File Does Not Exist’点击网址或从网页粘贴URL时返回错误 'The Web Navigator Retrieval Process is Not Running' 或者 'File Does Not Exist'有时候运行Notes客户端时,您收到如下错误:"The Web Navigator retrieval process is not running."您可能会在下面三种情况下碰到该错误: · 点击一个3. руководитель канцелярии, делопроизводитель, заведующий архивом, офис-менеджерWindows‚ MS Office (Outlook‚ Word‚ Excel‚ Power Point)‚ Lotus Notes‚ Internet‚ E-mail.4. двусторонняя печать Doc файла из Lotus'aВсем доброго времени суток.Столкнулся с проблемой при использовании OLE Word'a 2003. Пытаюсь запустить из Lotus'a ручную двустороннюю печать файла Word'a: CODE Sub Click(Source As Button) On Error Goto er1 Dim wordObject As Variant Dim pvWordDocument As Variant Dim Background As Variant Dim Range As Variant Dim Copies As Variant Dim PageType As Variant Dim PrintToFile As Variant Dim Collate As Variant Dim ManualDuplexPrint As Variant Set wordObject=CreateObject("Word.Application") If Isobject(wordObject) Then wordObject.Visible=True Set pvWordDocument=wordObject.Documents.Open("D:\test2.doc") End If Background=True Range=Microsoft.Office.Interop.Word.WdPrintOutRange.wdPrintAllDocument Copies=1 PageType=Microsoft.Office.Interop.Word.WdPrintOutPages.wdPrintAllPages PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, Range, Copies,PageType, PrintToFile, Collate, ManualDuplexPrint) Exit Sub er1: Msgbox Error$ & Chr(10) & Getthreadinfo(1) & " (l." & Erl & ")" Resume WorkDone WorkDone: End Sub В приведенном коде получаю ошибку при запуске "Variant does not contain an object" при инициализации Range. При попытке передачи параметров Range и PageType просто числами: CODE Background=True Copies=1 PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, 0, Copies,0, PrintToFile, Collate, ManualDuplexPrint) код падает при вызове PrintOut с ошибкой "Automation object argument type mismatch". Причем похоже, падает на параметре PageType (второй ноль). Если же инициализировать Range и PageType по имени константы: CODE Background=True Range=wdPrintAllDocument Copies=1 PageType=wdPrintAllPages PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, Range, Copies,PageType, PrintToFile, Collate, ManualDuplexPrint) код валится опять же на PrintOut, c той же ошибкой "Automation object argument type mismatch" Может кто подскажет, как правильно передать параметры в функцию PrintOut? По идее все параметры этой функции по MSDN и прочим источникам имеют тип Object, но Lotus его не знает Ошибка "Variant does not contain an object" при попытке инициализации констант через Microsoft.Office.Interop.Word вполне логична и ожидаема, но я уже не знаю как правильно достучаться до них. Почему то кажется , что проблема именно в Range и PrintOut. Заранее спасибо за помощь. 5. двусторонняя печать Doc файла из Lotus'aВсем доброго времени суток.Столкнулся с проблемой при использовании OLE Word'a 2003. Пытаюсь запустить из Lotus'a ручную двустороннюю печать файла Word'a: CODE Sub Click(Source As Button) On Error Goto er1 Dim wordObject As Variant Dim pvWordDocument As Variant Dim Background As Variant Dim Range As Variant Dim Copies As Variant Dim PageType As Variant Dim PrintToFile As Variant Dim Collate As Variant Dim ManualDuplexPrint As Variant Set wordObject=CreateObject("Word.Application") If Isobject(wordObject) Then wordObject.Visible=True Set pvWordDocument=wordObject.Documents.Open("D:\test2.doc") End If Background=True Range=Microsoft.Office.Interop.Word.WdPrintOutRange.wdPrintAllDocument Copies=1 PageType=Microsoft.Office.Interop.Word.WdPrintOutPages.wdPrintAllPages PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, Range, Copies,PageType, PrintToFile, Collate, ManualDuplexPrint) Exit Sub er1: Msgbox Error$ & Chr(10) & Getthreadinfo(1) & " (l." & Erl & ")" Resume WorkDone WorkDone: End Sub В приведенном коде получаю ошибку при запуске "Variant does not contain an object" при инициализации Range. При попытке передачи параметров Range и PageType просто числами: CODE Background=True Copies=1 PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, 0, Copies,0, PrintToFile, Collate, ManualDuplexPrint) код падает при вызове PrintOut с ошибкой "Automation object argument type mismatch". Причем похоже, падает на параметре PageType (второй ноль). Если же инициализировать Range и PageType по имени константы: CODE Background=True Range=wdPrintAllDocument Copies=1 PageType=wdPrintAllPages PrintToFile=False Collate=False ManualDuplexPrint=True Call pvWordDocument.PrintOut(Background, Range, Copies,PageType, PrintToFile, Collate, ManualDuplexPrint) код валится опять же на PrintOut, c той же ошибкой "Automation object argument type mismatch" Может кто подскажет, как правильно передать параметры в функцию PrintOut? По идее все параметры этой функции по MSDN и прочим источникам имеют тип Object, но Lotus его не знает Ошибка "Variant does not contain an object" при попытке инициализации констант через Microsoft.Office.Interop.Word вполне логична и ожидаема, но я уже не знаю как правильно достучаться до них. Почему то кажется , что проблема именно в Range и PrintOut. Заранее спасибо за помощь. 6. Что в $MessageIDLotus 7.0.2Имея только свойства входящего сообщения, как определить из какого почтового ящика(используя Replica ID, или другие доступные поля),оно было отправлено? Cсылку, где можна почитать? 7. Новости от Новостей.COM за 13.07.2009Выпущена бета-версия Dr.Web для IBM Lotus Domino 5.0 под Linux8. UntitledНу почему же только Lotus Notes?9. WEB Access только для определенной группы пользователей?Коллеги добрый день!Подскажите, существует ли возможность ограничить доступ через WEB Access для различных групп пользователей? Т.е. мне надо чтобы логиниться через DOMINO WEB ACCESS (DWA) могла только определенная группа (Например: Internet Mail User) а остальные не могли, даже если у них прописан "интернет пароль" ? 10. Как не надо писать программыНу что ж. Теперь хотя бы понятно, как был написан Lotus Notes :)11. DIFFExpertMode12. WEB Access только определенной группе пользователей?Коллеги, ещё раз добрый день.... 13. Подгрузка ресурсов в апплете в Lotus NotesЕсть проблема, что-то не могу сходу решить:Имеется самописный ява апплет. В нем из файла подгружается иконка для JButton. Файл иконки лежит в той же самой папке где и файлы .class В еклипсе все работает нормально. Вставляю апплет в форму - иконка не отображается. Пробовал по-всякому, и добавлять иконку как ресурс при создании апплета, и апплет в jar упаковывал. В коде разные варианты пробовал, ничего не помогает, причем в еклипсе все варианты рабочие:
Может кто посоветует что делать? Грузить иконку откуда-то специально не хочется, это самый запасной вариант. 14. DialTimer15. GFI MailEssentials for Exchange/SMTP/LotusGFI MailEssentials Exchange用/のSMTP /ロ ... バー反Microsoft Exchange ServerのNotes向けメ ... ン/ SMTPサーバ ... ムです。スパムは、メールサーバーの前には、クライ ... されてORDBのような黒のリストです。管理者 ... でなく、自動ホ ... 能を使16. Хочу убить того человека, в чей восполненный мозг пришла шальная мысль внедрить ...Хочу убить того человека, в чей восполненный мозг пришла шальная мысль внедрить к нам систему электронного документооборота на основе lotus notes.17. UntitledА уж от перспектив применения Lotus Domino или Exchange моё сострадание приобретает термоядерные масштабы.18. GFI MailEssentials for Exchange/SMTP/LotusGFI MailEssentials для Exchange / SMTP / Lotus є сервера анти спам управлінні рішення для Microsoft Exchange Server Notes / SMTP-серверів.19. От: Jckmjjzeblackjack handheld device, live roulette, lasvegas 25cent roulette, blackjack plugins, free blackjack, samsung blackjack synch with lotus notes, does samsung blackjack ii have wifi, address book software for samsung blackjack, random number generator for online roulette, ipod blackjack, free online casino blackjack game, blackjack unlockcode, blackjack table sale purchase, casino careers online, best casino gambling guide online online portal,20. Работа Домино на виртульных машинахЕсть ли у кого опыт запуска серверов Домино на виртуалках под 2003 сервером в 64 битахВ большей степени интересует работа СЭД не важно какой,чисто спортивный интерес. Так как тестовый сервер разработки и тестирования на 64 битах часто падает из-за не хватки ресурсов 21. Lhasa EnvironsThere aren’t many monks around (Kunchuk notes that the Potala monks are “security monks”) -- a scattering of them refill the mustard butter vats and read scriptures. My favorite aspect of the palace is the wall murals that line the 14th Dalai Lama’s audience hall, in particular, the depiction of the Tibetan origin myth: we see the Bodhisattva Chenrizi seated in a lotus position projecting a rainbow to a monkey seated in a distant cave.22. Секретарь на receptionПК - опытный пользователь (Word‚ Excel‚ Lotus Notes‚ Internet) Знание копировальной и множительной техники23. Re: WEB Access. Изменить login страничку?http://www-12.lotus.com/ldd/doc/domino_notes/7.0/help7_admin.nsf/f4b82fbb75e942a6852566ac0037f284/236f179d441b18d48525706f0065d988?OpenDocument24. Специалист главныйWord‚ Excel‚ Access‚ Power point ‚ Lotus notes‚ Outlook‚ The bat‚ Fine Reader.25. DialogFont26. Desk_Debug_45627. Java PolicyЗдравствуйте, уважаемые!У меня возникла следующая проблема: есть Java агент, который должен выполняться ночью. Он не выполняется - хотя подписан правильно, расписание выставлено. Этот же агент спокойно отрабатывает при вызове из кнопки( то есть вручную). Помогите пжалуйста - подскажите хотя бы куда смотреть, чтобы найти решение! 28. 70-272 examExperience using messaging software such as Lotus Notes29. 70-271 examExperience using messaging software such as Lotus Notes30. Replay of July Lotus Technical Information and Education community meeting:: Abstract not available ::31. юристWindows‚ MS Office‚ Word‚ Excel‚ Internet‚ Servise Desk‚ Lotus Notes‚ Гарант-Консультант32. How to analyze Notes and Domino Crash and Hang DataThere is a great tool to help you analyze Notes/Domino Crash and Hang Data.The following video shows how to install and setup and use the Lotus Notes Diagnostic (LND) tool33. UntitledBy @estephen successful with loading Lotus Notes34. WEB Access. Изменить login страничку?Коллеги, добрый день ещё раз. Благо я разобрался как после логина попадать в свою почту. Всё работает отлично. Один маленький вопрос: как изменить экран авторизации? У меня он выглядит вот так:...35. Re: Настройка WEB AccessВаше сообщение про WMR.NSF натолкнуло на МЫСЛЬ. И у меня получилось всё сделать. В любом случае спасибо.36. IBM Lotus Domino 8.5 server performance, part 1: IBM Lotus Notes performanceIncreasing value to the customer is an ongoing theme for the IBM® Lotus® Domino® server. The growing volume of information in today’s enterprise strains existing hardware infrastructures. Lotus Domino 8.5 contains features that help relieve the stress on the expensive processor and storage subsystems. This article shows the reductions in processor and disk utilization with Lotus Domino 8.5 and Lotus Notes® clients.37. IBM Lotus Domino 8.5 server performance, part 2: iNotes performanceImproving input/output (I/O) performance is one of the major goals for IBM® Lotus® Domino® 8.5. The developerWorks® article "IBM Lotus Domino 8.5 performance for IBM Lotus Notes users" showed the impressive I/O reductions of Lotus Domino 8.5 with the Lotus Notes client. This article shows the I/O performance improvements of Lotus Domino 8.5 performance with Lotus iNotes® users. Lotus iNotes had been called Lotus Domino Web Access in the past; its name is iNotes in Lotus Domino 8.5.38. IBM Lotus Domino 8.5 server performance, part 3: Enterprise cluster mail performanceIBM® Lotus® Domino® 8.5 server offers a lot of features aimed at reducing the overall total cost of ownership (TCO) of the Lotus Domino mail server cluster infrastructure in a large enterprise. In this article, we show you how you can leverage these features incrementally to realize TCO benefits while upgrading to Lotus Domino 8.5.39. Backupмы знаем, что существует опред. софт и методы бэкапа Домины...но это всё требует опред. "заморочек", а порой и денег есть ср-ва самих ФС, как уже устоявшихся (с использованием LVM), так и вновь создаваемых (ZFS), в опоре на snapshot возможно ли такое использование, для бэкапов именно Домины (у кого есть инфа), почему возник вопрос - потому как БД так резервируют (без остановки) вот есть ссылка http://forums13.itrc.hp.com/service/forums...threadId=707555 но достоверность подтвердить невозможно 40. Настройка WEB AccessКоллеги, выручайте. Есть задача включить WEB доступ для почты (внутри своей сети) .... 41. секретарь, офис-менеджерПостоянный пользователь Интернет‚ хорошо владею программами Microsoft Office 98‚ 2000‚ XP‚ Lotus Notes‚ Company Media‚ Oracle‚ FinDoc‚ есть навыки работы в 1C и Access.42. LG KS20outlook express , lotus organizer , lotus notes) , pdf-файлов43. руководитель отдела трейд маркетинга, трейд-маркетологПК: опытный пользователь (Microsoft office‚ photoshop‚ Lotus Notes‚ Amdocs‚ CRM‚ 1С:Торговля и склад и другие приложения.)44. менеджер по развитию (менеджер по поиску помещений)ПК - уверенный пользователь (Windows‚ MS Office‚ Adobe Photoshop‚ SAP‚ Lotus Notes‚ AutoCAD‚ the Bat.)‚ оргтехника.45. Менеджер по работе с клиентамиWord‚ Excel‚ Internet Explorer‚ Laguna Teletext Editor‚ Lotus Notes - уверенный пользователь46. IBM #STRANGE Дистрибутив #Lotus Notes для MacOS X весит 500 mb, почтовый клиент ...IBM,STRANGE,Lotus # IBM #STRANGE Дистрибутив #Lotus Notes для MacOS X весит 500 mb, почтовый клиент.47. Выбор решения для предзаполнения формИзначально решение было названо IBM Workspace Forms и затем переименовано в IBM Lotus Notes Forms. IBM Lotus Notes Forms использует как основу стандарт xForms, разработанный и принятый консорциумом W3C.48. How to relaunch/reconfigure Notes Client in case Notes Client crashedQ: For Notes Client 8.x, what should I do if my Notes Client crashed and still failed to launch after I tried many times.A: Please follow the steps below to take a try. Note, backup your data before y49. How to restore default toolbar in case duplicated items on toolbar existsIf you met the duplicated items on toolbar, shown as picture toolbar.jpg in attachments. Please follow the steps below to restore the default setting.Open toolbar Preference, then go to Customize, see50. Миллионы рабочих мест переведены с Lotus Notes на SharePoint и Exchange за ...Миллионы рабочих мест переведены с Lotus Notes на SharePoint и Exchange за последний год Сообщается, что за период с июля 2008 по июль 2009 года более чем 4.7 миллиона рабочих мест было переведено с Lotus Notes на SharePoint и Exchange.51. Arch Linux. Очередной этап безделия.Все что от нее может потребоваться - работа с офисными документами, почтовый клиент lotus notes, возможность подключаться к терминальному серверу через rdp и конечно-же Firefox. Lotus Notes был запущен с windows-раздела при помощи Wine.52. Директор по развитиюLotus Client (R4‚ R5)‚ Lotus Domino server (администрирование)‚ Lotus Designer (разработка приложений)‚ Lotus WorkFlow‚ MindManager.53. UntitledМиллионы рабочих мест переведены с Lotus Notes на SharePoint и Exchange за последний год.54. Yullen Fanfiction :Accidental Deadstop Chapter 1He didn’t allow anyone into his room and Lavi was a little jealous that that single lotus was given permission to stay inside the place. Authors note: …Yeah, so that was the repost.55. Выпуск рассылки "Lotus Notes/Domino -- продукт и инструмент. Выпуск: 124 ...notes.ini Analyzer * Sync Lotus Notes with your Google account and your phone | CompanionLink * Lotus Notes to Google Synchronizer * Lotus Notes to Google Synchronizer * IBM Additional software entitlements with your license - Lotus Notes and Domino * Lotus Notes Development/Integration * Lotus Notes Administrator with TS/SCI Full Scope Poly Clearance required * Lotus Notes developer- Requires polygraph * Lotus Notes Developer - Requires Polygraph * Lotus Notes Developer - UJO# 5403 * Senior Lotus Notes Administrator * Lotus Notes Development/Integration * Lotus Notes Developer/Administrator * Senior Lotus Notes Client and Domino Web Developer - TS/SCI with FS Poly * Lotus Notes Administrator * Application Developers & Administrators (Web & Lotus Notes) * Systems Engineer, Senior- Lotus Notes/Domino * Junior Lotus Notes Domino Developer * Senior Lotus Notes Administrator * Senior Lotus Notes Client and Domino Web Developer - TS/SCI with FS56. Выпуск рассылки "Lotus Notes/Domino -- РїСЂРѕРґСѓРєС‚ Рё РёРЅСЃС ...Poly * Sr. Business Appl Developer Analyst Lotus Notes * Senior Lotus Notes Administrator * Sr.57. Помощник юристаПК - знание справочных правовых систем Консультант плюс‚ Гарант‚ продвинутый пользователь (Microsoft Office‚ Lotus Notes).58. КладовщикРабота на ПК с пакетами прикладных программ MS Office‚ MS Project‚ Lotus Notes‚ MS Outlook.59. Менеджер по недвижимости/УправляющийMS Office‚ MS Project‚ Lotus Notes‚ графические программы.60. Нужна помощьДобрый день. Есть маленькая задача. На половину уже сделана. нужно чтоб одно база даных LOTUS работала через веб интерфейс. Помогите пожалуйста. о вознограждение при общение! icq- 406 816 633 Блиц-опрос
Вакансии для специалистов1. Lotus Notes DeveloperLotus Notes Developer Reston, VA L-3 Communications Services Group, Intelligence Solutions Division has an opening for a Lotus Notes Developer in Reston, VA. Clearance: Must have current TS/SCI FULL ...2. Lotus Notes / Domino DeveloperPosition Title Lotus Notes / Domino Developer Location US - Virginia - Herndon (VA27) Clearance Required Yes - Not Required to Start Clearance Type TS/SCI with Lifestyle Poly Daily Responsibilities SR...3. Lotus Notes Administrator (CF)Lotus Notes Administrator (CF) Full Time Regular posted 4/6/2009 Job Category MIS - Info Tech / Telecommunications Req ID 144349 Able to obtain security clearance? None Currently p...4. Lotus Notes Domino EngineerReference # : 09-00369 Title : Lotus Notes Domino Engineer Location : Pittsburgh, PA Experience Level : 3 Years Start Date / End Date : Tue, Jun 16, 2009 / Mon, Dec 21, 2009 Position Type : Contract ...5. Lotus Notes DeveloperLotus Notes Developer Advanced Lotus Notes Development experience. All applicants applying for U.S. job openings must be authorized to work in the United States. All applicants applying for Canadian ...6. Deployment Technician (Lotus Notes)Deployment Technician (Lotus Notes) Pomeroy IT Solutions Inc« Back to Search Form Details Location: CA - Los Angeles Job Type: Information Technology Base Pay: $14.99 - $15.00 /Hour Required Ed...7. Lotus Notes / Domino Developer 5Title: Lotus Notes / Domino Developer 5 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: MS/085138 This job is eligible for theRefer a Friendprogra...8. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2229 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: Near Term Recruiter: Jessica O'Mara Apply...9. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2228 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: .. Recruiter: Jessica O'Mara Apply for th...10. Lotus Notes Email Support Co-opLotus Notes Email Support Co-op Job Type: Full-Time Location: Syracuse, NY Last Updated: 11/03/2005 Job Description: Job Title: Lotus Notes Email Support co-op Department: Information Technology ...11. Lotus Notes Developer - UJO# 5403Title: Lotus Notes Developer - UJO# 5403 Work Authorization: US Citizen/ Greencard / EAD / H1-B Work Permit Skills: Lotus Notes - NEAR-EXPERT Project Management - VERY GOOD Oracle DBA - VERY GOOD Po...12. Senior Lotus Notes AdministratorSenior Lotus Notes Administrator Jun 3, 2009 Tampa, Florida Return to Search Results|Send job to a friend Description: Department Function Email Infrastructure Team is responsible for critical tec...13. Lotus Notes Development/IntegrationLotus Notes Development/Integration Job ID: 20090623-ZCHENAUL-9174 Location: Charlotte, NC US Travel Involved: 0-10% Job Type: Full Time Job Level: Experienced Education: Bachelors Degree or Equival...14. Lotus Notes Developer/AdministratorLotus Notes Developer/Administrator Req. Code : 368 Division/Department : CDO Technologies Inc Location : Dayton OH US 45402 Travel Required : None Job Type : Full Time Career Level : Experienced (No...15. Senior Lotus Notes Client and Domino Web Developer - TS/SCI with FS PolyTitle: Senior Lotus Notes Client and Domino Web Developer - TS/SCI with FS Poly Location: VA-Chantilly * TS/SCI with Fullscope polygraph required. * Requirement for Senior Lotus Notes Client and Domin...16. Lotus Notes Development and Administration Task LeadTitle: Lotus Notes Development and Administration Task Lead Location: VA-Classified Duties and Responsibilities: Provide technical direction for the LN development. Team will respond to user questions...17. Lotus Notes AdministratorLotus Notes Administrator Job Number: 116240 Category: A - Immediate/Urgent Need Description: Required Qualifications Undergraduate degree, current enrollment in IT degree program, or equivalent exper...18. Sr. Business Appl Developer Analyst Lotus NotesJob Title: Sr. Business Appl Developer Analyst Lotus Notes Function: Information Systems Business Unit: Corporate North America Company: Corporate Staff U.S. State: California City: Pasadena Relocatio...19. Lotus Notes ProgrammerReference # : 09-10179 Title : Lotus Notes Programmer Location : EL SEGUNDO, CA Experience Level : Start Date : Wed, Jun 10, 2009 Description Location: Los Angeles Project: Notes Migration Primary s...20. Lotus Notes Domino/Systems EngineerTEKsystems is looking for Lotus Notes Engineer/Systems Engineer. Must have experience with the following: Domino R6 or R7 (Subject Matter Expert Needed) LINUX or UNIX (Must have a understanding) DNS ...21. Lotus Notes Administrator (CF)Lotus Notes Administrator (CF) Full Time Regular posted 4/6/2009 Job Category MIS - Info Tech / Telecommunications Req ID 144349 Able to obtain security clearance? None Currently p...22. Lotus Notes Domino EngineerReference # : 09-00369 Title : Lotus Notes Domino Engineer Location : Pittsburgh, PA Experience Level : 3 Years Start Date / End Date : Tue, Jun 16, 2009 / Mon, Dec 21, 2009 Position Type : Contract ...23. Lotus Notes DeveloperLotus Notes Developer Advanced Lotus Notes Development experience. All applicants applying for U.S. job openings must be authorized to work in the United States. All applicants applying for Canadian ...24. Deployment Technician (Lotus Notes)Deployment Technician (Lotus Notes) Pomeroy IT Solutions Inc« Back to Search Form Details Location: CA - Los Angeles Job Type: Information Technology Base Pay: $14.99 - $15.00 /Hour Required Ed...25. Lotus Notes / Domino Developer 5Title: Lotus Notes / Domino Developer 5 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: MS/085138 This job is eligible for theRefer a Friendprogra...26. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2229 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: Near Term Recruiter: Jessica O'Mara Apply...27. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2228 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: .. Recruiter: Jessica O'Mara Apply for th...28. Lotus Notes Email Support Co-opLotus Notes Email Support Co-op Job Type: Full-Time Location: Syracuse, NY Last Updated: 11/03/2005 Job Description: Job Title: Lotus Notes Email Support co-op Department: Information Technology ...29. Systems Engineer, Senior- Lotus Notes/DominoReq ID 29176BR Title Systems Engineer, Senior- Lotus Notes/Domino Division ManTech Information Systems and Technology Location VIRGINIA Herndon Security Clearance Required Yes Clearance Level Needed T...30. Lotus Notes Engineer/DeveloperReq ID 31134BR Title Lotus Notes Engineer/Developer Division ManTech Information Systems and Technology Additional Job Title Lotus Notes Engineer Location VIRGINIA McLean Security Clearance Required Y...31. Lotus Notes DeveloperLotus Notes Developer Reston, VA L-3 Communications Services Group, Intelligence Solutions Division has an opening for a Lotus Notes Developer in Reston, VA. Clearance: Must have current TS/SCI FULL ...32. Lotus Notes / Domino DeveloperPosition Title Lotus Notes / Domino Developer Location US - Virginia - Herndon (VA27) Clearance Required Yes - Not Required to Start Clearance Type TS/SCI with Lifestyle Poly Daily Responsibilities SR...33. Lotus Notes Administrator (CF)Lotus Notes Administrator (CF) Full Time Regular posted 4/6/2009 Job Category MIS - Info Tech / Telecommunications Req ID 144349 Able to obtain security clearance? None Currently p...34. Lotus Notes Domino EngineerReference # : 09-00369 Title : Lotus Notes Domino Engineer Location : Pittsburgh, PA Experience Level : 3 Years Start Date / End Date : Tue, Jun 16, 2009 / Mon, Dec 21, 2009 Position Type : Contract ...35. Lotus Notes DeveloperLotus Notes Developer Advanced Lotus Notes Development experience. All applicants applying for U.S. job openings must be authorized to work in the United States. All applicants applying for Canadian ...36. Deployment Technician (Lotus Notes)Deployment Technician (Lotus Notes) Pomeroy IT Solutions Inc« Back to Search Form Details Location: CA - Los Angeles Job Type: Information Technology Base Pay: $14.99 - $15.00 /Hour Required Ed...37. Lotus Notes / Domino Developer 5Title: Lotus Notes / Domino Developer 5 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: MS/085138 This job is eligible for theRefer a Friendprogra...38. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2228 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: .. Recruiter: Jessica O'Mara Apply for th...39. Lotus Notes DeveloperLotus Notes Developer Requisition #: 2229 Location: US-VA-Falls Church Posted Date: 6/17/2009 Reg/Temp: Regular Employee FT/PT/On-Call: Full Time Priority: Near Term Recruiter: Jessica O'Mara Apply...40. Lotus Notes Email Support Co-opLotus Notes Email Support Co-op Job Type: Full-Time Location: Syracuse, NY Last Updated: 11/03/2005 Job Description: Job Title: Lotus Notes Email Support co-op Department: Information Technology ...Закладки о Lotus Notes1. How to count and delete deletion stubs - Lotus Notes Domino - development - Creative design and development - Wohill2. Urs-o-Log - Exportieren von Lotus Notes-Kalendereinträgen in Google-Kalender3. Quickr File Upload Control4. http://80.66.123.115/NR13/IconosRecursos.nsf/xpages.xsp?documentId=4AC3947A89109B5FC12569330059229F&action=openDocument5. Lotus Sandbox - icons6. wissel.net :: How does the ideal Notes/Domino 8.5 upgrade looks like7. Lotus Sametime Forum : RE: Single-Sign-OnHow to prevent user being "logged out" when switching from one notes client to another, or from Notes client to web app where STLinks are enabled.8. Lotus Notes and Domino wikiMight be the file Tim was referring to that needs to be in place after 8.5 client install and before client login to Notes to prevent a login prompt for ST.9. Lotus Notes to Google Synchronizer10. www.mynotesblog.com: Analytikere: Lotus Notes er fremtidens epostklient11. SHOW STOPPER: If you’re upgrading from 6.5 to 8.5....12. Ed Brill - Updated my roadshow presentation on slideshare.net13. Batchfile Export Lotus Notes | aus Forum Lotus Notes/Domino | wer-weiss-was14. IBM Lotus Sametime Meeting Room15. Lotus Notes to Google Synchronizer16. How to analyze Notes and Domino Crash and Hang Data17. IBM Lotus Domino 8.5 server performance, part 1: IBM Lotus Notes performance18. DBLookup functionality in web applications by using JavaScriptLotus Domino Designer wiki19. Tutorial: Introduction to XPagesLotus Domino Designer wiki20. IBM - IBM Lotus Domino Tech Exchange webcast: NSD for Administrators21. Coding Thoughts: Zip Extraction using LS2JHow to use LS2J to extract files from a zip file.22. Debugging LotusScript Part 123. notes.ini Analyzer24. IBM - Purging documents in Lotus Notesdeletion stubs purging purged25. Lotus GermanyLotus Germany BLOG26. Welcome - lotus2dayIBM Lotus2Day Quickr Files27. The Taking Notes Podcast28. DomBlog.de - Notes, Domino and Stuff :: Deletion Stubs - a Lifetime Myth Uncovereddeletion stubs29. Purge Deletion Stubs Programmatically30. Domingo - HomepageFerramenta para integrar Lotus Notes com Java31. nsftools - Tools - Lotus Notes API Samples32. Genii Software | DominoLimitslimits33. http://www.thenorth.com/northern.nsf/ac567d6535ab069785256a00004d66dc/4100857248b8b82185256d350058f7e4!OpenDocument34. XPages Blog - The XPages Blog35. Sync Lotus Notes with iPhone - iPhone Lotus Notes Sync - Lotus Notes Calendar - Lotus Notes Mail - Lotus Notes Contacts - Lotus Notes Todo - Lotus Notes iPhone | JM Interactive36. IBM Lotus iNotes - Bring the enterprise to your Apple iPhone37. Using the Lotus Domino Driver for JDBC 1.538. IQJam - Elguji Software, LLC39. » Lotus Notes mail merge from a Microsoft Excel spreadsheet -- sacha chua :: enterprise 2.0 consultant, storyteller, geek40. nsftools.com - Tools, Tips, and a Weblog about Lotus Notes, Domino, and Java41. Lotus Notes to Iphone: Lotus notes to Iphone (EMail and Calendar) - AnswerThe holy grail!42. Notes 6.5 C-API User Guide43. OpenNTF.org - Lotusscript Manager44. Whats is in a Note ID - Lotus Notes FAQ from Notes411How to read the last tab of the Notes document properties box and decipher the id information provided thereИсточники знаний. Сайты с книгами
По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes |
В избранное | ||