IBM Advanced email, calendaring, and contact management - Lotus Notes
Новости о ПО Lotus Notes1. Департамент общественных финансов Франции будет использовать свободное ПО - RosInvest.Com
2. Французское правительство выбирает свободное ПО - RosInvest.Com
3. Новософт выпустил программу резервного копирования Windows 7 - СМИ2
Статьи. Публикации. Пресс-релизы1. Представление бренда компании в клиентах IBM Lotus Sametime Connect версии 8.0 и вышеДанная статья описывает процесс установки и изменения плагина размещения бренда (branding plug-in) Lotus Sametime на примере плагина для размещения бренда вымышленной компании Your Co. Компания ПУЛ - разработка приложений на Lotus Notes/Domino CodeStore. Коды Примеры Шаблоны1. Programming for Performance with LotusScript and Java (Redux)A performance bottleneck or resource leakage is much easier to fix in the design and architecture phases of a software project than just prior to deployment. With that in mind, this article delivers a top-down perspective on programming for performance, and it provides a set of coding tips that will aid programmers in achieving better code and a higher level of productivity. You'll find specific information about what kind of code executes more quickly than other types of code, and some simple techniques for actually measuring the performance of LotusScript and Java programs. Форумы о Lotus Notes/Domino:
Интенет эфир о Lotus Notes. Блоги и форумы1. GSX_RBT_MaintenanceStart2. GSX_RBT_FlagRemoteEnabled3. Французское правительство выбирает свободное ПОВ частности будут заменены IBM Lotus Notes и Microsoft Outlook на Mozilla Thunderbird для почты и Lightning для организации совместной работы.4. А пока на НТВ гоняют рекламу...В частности будут заменены IBM Lotus Notes и Microsoft Outlook на Mozilla Thunderbird для почты и Lightning для организации совместной работы.5. GSXMaint6. GSH_Temp_Folder7. Ожидать IPhone SDK и яблоко новые по продукту Feburary 26 [#Согласно плану яблочная компания выпустит новый программный продукт на Feburary 26, прогнозировать развитие программного инструмента, который релизы IPhone и IPod Коснитесь является обертываются, прикладного программного обеспечения, который обеспечивает поддержку Lotus Notes программного обеспечения.8. GSH_Scanner_Threads9. GSH_Install_Directory10. ubuntu 9.10: lotus notes doesn't work, you have to update some libs, or get septemberubuntu 9.10: lotus notes doesn't work, you have to update some libs, or get september build (if you can)11. Русский темплейт 8.5Есть ли в природе оный (Mail8.5rus.ntf)и если есть - кто может поделиться?12. Re: Если я правильно нашел, то вот список:Red Hat Enterprise Linux 5.2 Desktop; Lotus Notes 8.0.1 - ЗБ, ОК(2ОУД)13. Выпуск рассылки "Lotus Notes/Domino -- РїСЂРѕРґСѓРєС‚ Рё РёРЅСЃС ...161".14. Конвертировать из .nsf в .csvБратцы, подскажите, какой бесплатной утилитой сделать экспорт из .nsf в .csv ?15. Экспорт из .nsf в .csБратцы, подскажите, какой бесплатной утилитой сделать экспорт из .nsf в .csv ?16. GSD_Scan_Dir17. правильный подбор типов для DllCобственно работаю с одной dll по ЕЦПно есть подозрение что она не хочет со мной работать, так как я ей подсовываю не верный тип (от неё всегда один и тот же результат - не верный тип вх. параметров) что требовалось: [code=no-highlight]Function nkiEnumDevices (no:integer; withcard:boolean; var name):byte[/code] как это реализовалось на LS: [code=no-highlight]Declare Function nkiEnumDevices Lib "nkidll" (no As Integer, withcard As Boolean, sName As Variant) As Byte Dim i As Integer, j As Integer, s As String, w As Integer, v As Variant, mas(72) As String, no As Byte, withcard As Boolean Print "Existing readers:" i = 1 no = 1 Do v = mas withcard = False j = nkiEnumDevices(i, withcard, s) If j=0 Then Print s Else Exit Do End If i = i +1 Loop While j<>0[/code] если юзать аналогичные примера на С++ или Паскале то всё пашет может я как-то не правильно задеклалировал функцию? 18. Lotus Notes 8.5 - требования?Коллеги, у кого уже есть реально работающие клиенты Lotus Notes 8.5 - каковы реальные требования, поделитесь информацией? Интересует: Объем оперативки (желательный/минимальный), будет ли работать на XP SP2, или необходимо только XP SP3 или виста? Какая...19. Как передаются сообщения в системе Domino?Задача SMTP Listener заносит сообщение в MAIL.BOX (Lotus Notes, IMAP клиенты, POP3 клиенты). ·20. Domino Directory и маршрутизация почтыLotus рекомендует в Domino системе, использовать полные имена хостов, вместо IP адресов.21. Проблема с чтением данных из таблиц SqlНаписал "синхронизатор" между базами Lotus и таблицами SQL. Данные из лотуса закидываются нормально, но затем не могу прочитать то что закинул. Из лотуса кидаю следующим образом:CODE Sub Click(Source As Button) Dim v As Variant Dim sqlfields As Variant Dim sqlfields1 As Variant Dim item As NotesItem sf="Select " For i=Lbound(doc.Forms) To Ubound(doc.Forms) sf=sf+{form="}+doc.Forms(i)+{" |} Next sf=Left(sf,Len(sf)-1) Set col=db.Search(sf,Nothing,0) If col.Count=0 Then Msgbox "Ничего не найдено!" End End If count=col.Count Msgbox Cstr(count)+" документов" sqlfields1=doc.sqlfields Dim sfields As Variant Dim fieldsTypes As Variant If doc.AllFields(0)<>"" Then sqlfields1=doc.SQLfieldsList_1 Redim sqlfields(Ubound(sqlfields1)) Redim fieldsTypes(Ubound(sqlfields1)) For i=Lbound(sqlfields1) To Ubound(sqlfields1) sqlfields(i)=Strleftback(sqlfields1(i),"^") fieldsTypes(i)=Strrightback(sqlfields1(i),"^") Next sfields=Join(sqlfields,",") con.ConnectTo(doc.Server1(0)) Set qry.Connection=con Set result.Query=qry ' result.Execute Dim g For i=1 To col.Count Set doc1=col.GetNthDocument(i) v="" For j=Lbound(sqlfields) To Ubound(sqlfields) If doc1.HasItem(sqlfields(j)) Then g="" Set item=doc1.GetFirstItem(sqlfields(j)) If Isarray(item.Values) Then g=Trim(Cstr(item.Values(0))) If g="" Then v=v+"NULL," Else Select Case fieldsTypes(j) Case 11: d=Cdat(g) v=v+"'"+Cstr(Year(d))+"-"+Cstr(Month(d))+"-"+Cstr(Day(d))+"'," Case -9, -10:v=v+"'"+g+"'," Case Else: v=v+""+g+"," End Select End If Else v=v+"NULL," End If Next qry.SQL={Insert INTO }+doc.Tables(0)+{(}+sfields+{) Values(}+Left(v,Len(v)-1)+{)} result.Execute If i=100 Then Goto next1 Next next1: Msgbox "Закончено" ' result.Execute result.Close(DB_CLOSE) con.Disconnect End Sub[/code] Затем пытаюсь подсчитать кол-во закинутых мною записей. В свойствах таблицы написано реальное кол-во, но при программном чтении он возвращает 1. [code=no-highlight]Sub Click(Source As Button) Dim ws As New NotesUIWorkspace If doc.Tables(0)="" Then Msgbox "Укажите в какой таблице нужно произвести подсчет" ws.CurrentDocument.GotoField("Tables") End End If con.ConnectTo(doc.Server1(0)) Set result.Query=qry qry.SQL="SELECT * FROM "+doc.tables(0) Msgbox (result.Execute) i=0 If result.Execute Then Do result.NextRow i=i+1 Loop Until result.IsEndOfData End If Msgbox Cstr(i) result.Close(DB_CLOSE) con.Disconnect End Sub Помогите, пожалуйста, найти решение через qry.SQL="SELECT COUNT(*) FROM "+doc.tables(0) подсчитывается. 22. GSD_Olympus_Engine_Path23. Microsoft Dynamics GPIt is enough if we give you excellent ERP platform which has good integration tools to Microsoft Office plus enables some integration with Windows platform itself – you can use VB.Net or C#.Net (our commentary – you can have your SAP Business One to communicate with outside world with such non-Microsoft platforms as IBM Lotus Notes Domino and use Lotus Notes as24. Ms Project и LotusСуществует ли какие-нибудь приемы интеграции MS Project и Lotus?Меня пока интересует возможность читать данные из файла Project в Lotus. В Project я вношу данные из Lotus посредством VB Script, а как действовать в обратном направлении? Возможно есть какие-то уже готовые приемы реализации? Подскажите куда можно "копать"? Блиц-опрос
Вакансии для специалистов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 DeveloperLotus Notes Developer Full Time Regular posted 10/13/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158730 Able to obtain security clearance? None Currently possess ...3. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/16/2009 Job Category MIS - Info Tech / Telecommunications Req ID 159027 Able to obtain security clearance? None Currently possess ...4. Lotus Notes DeveloperLotus Notes Developer Full Time Regular posted 10/14/2009 Job Category MIS - Info Tech / Telecommunications Req ID 158834 Able to obtain security clearance? None Currently possess ...5. Lotus Notes AdministratorLotus Notes Administrator Requisition Number: EF17105 Location: WASHINGTON, DC US Travel Involved: None Job Type: Regular Full Time Job Level: Experienced (Non-Management) Education: Bachelors Degre...6. Lotus Notes/ Domino Developer 3Title: Lotus Notes/ Domino Developer 3 Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: MS/093602 This job is eligible for theRefer a Friendprogram...7. Lotus Notes Tier 2 AdministratorTitle: Lotus Notes Tier 2 Administrator Category: Information Systems Location: Reston, VA / USA | Sector: Information Systems Posting ID: MS/093608 This job is eligible for theRefer a Friendprogra...8. 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 ...9. Lotus Notes EngineerReq ID 33193BR Title Lotus Notes Engineer Division ManTech Information Systems and Technology Additional Job Title Systems Engineer Location VIRGINIA Reston Security Clearance Required Yes Clearance L...10. 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 ...11. Senior Lotus Notes / Domino Web Developer - DallasSenior Lotus Notes/Domino Web Developer The Marketing Arm was ranked the #1 marketing agency by Promo Magazine. Founded in 1993, The Marketing Arm is a network of experiential marketing services agenc...12. Lotus Notes Domino DeveloperClassification: ConsultingCompensation: Pay up to $35.00 per hourWe are currently looking for a dynamic Lotus Developer for a multi-project engagement.Ideally, the candidate will have 5+ years experie...13. Lotus Notes AdminLooking for a Lotus Notes Administrator who has experience with Domino as well as some exposure to SharePoint. 5+ years experience with Lotus Notes and email network infrastructure. Solid experience w...Закладки о Lotus Notes1. IBM Advanced email, calendaring, and contact management - Lotus Notes2. IBM software downloads- Lotus Trials and demos3. IBM business email solution - Lotus Notes4. IBM collaboration software - Lotus software5. IBM Lotus e-mail, calendaring, collaborative applications offerings6. Lotus Notes specs and E-mail Software specifications - CNET Downloads7. OpenNTF.org - Open Source Community for Lotus Notes Domino8. How To Install Lotus Notes 8.5.1 in Ubuntu karmic 64 Bit9. Lotus Domino Designer 6 Help - Properties that improve database performance10. Lotus Notes Formula that is bugging me11. How To Install Lotus Notes 8.5.1 in Ubuntu karmic 64 Bit12. Lotus Domino Designer wiki13. Download: Lotus Domino Designer 8.5.114. VB and VBA - Lotus Notes Send Email from VB or VBAИсточники знаний. Сайты с книгами
По вопросам спонсорства, публикации материалов, участия обращайтесь к ведущему рассылку LotusDomiNotes |
В избранное














Добавить комментарий:
Ваше имя:
Введите текст с картинки: