Spell Checker >> http://www.thesolutioncafe.com/public-spell-checker.html Document Locking in Web >> http://cwhisonant.blogspot.com/2006/08/web-document-locking-version-01-sntt.html Appication Mockup >> http://www.balsamiq.com/products/mockups Table create with css >> http://www.somacon.com/p141.php Button Designer >> http://www.pagetutor.com/button_designer/index.html Code Highlighter >>http://blog.lotusnotes.be/domino/code2html On Line HTML Editor >> http://www.free-online-html-editor.com/ Online Javascript compressor >> http://javascriptcompressor.com/ Online CSS Formatter >> http://www.cssportal.com/format-css/ Layout builder >> http://developer.yahoo.com/yui/grids/builder/ Online file diffrence >> http://blog.lotusnotes.be/domino/js-diff.html CSS Sprite Generator fro Images >> http://spritegen.website-performance.org/ 10 Ways to Improve Your Web Page Performance >> http://sixrevisions.com/web-development/10-ways-to-improve-your-web-page-performance/ 15 Tools to Help You Develop Faster Web Pages >> http://sixrevisions.com/tools/faster_web_page/ 20 tools for web application development >> http://onemonthapp.com/archives/2007/10/21/20-tools-for-web-application-development 20 Useful Tools to Make Web Development More Efficient >> http://sixrevisions.com/tools/20_web_development_tools/
Существует ли какие-нибудь приемы интеграции MS Project и Lotus? Меня пока интересует возможность читать данные из файла Project в Lotus. В Project я вношу данные из Lotus посредством VB Script, а как действовать в обратном направлении?
Возможно есть какие-то уже готовые приемы реализации? Подскажите куда можно "копать"?
Помню на курсах по администрированию преподаватель говорил про эту фишку, когда пользователь может удалить или изменить политику, в своем доке в АК (на вкладке Администрирование). Но уже забыл как запретить ему это делать - напомните кто-нить, плз
Коллеги, добрый день! Можно ли сделать уведомление о том что полученное мной письмо подписано более явным. Например как в web браузерах - зеленая полоска в адресной строке.
Ну и здесь, какой либо явно выделяющий данное письмо признак. Или же наоборот, если письмо НЕ подписано, то выводить красную полоску (или сообщение) о том что данное письмо не подписано.
The Learning Continuum Company (TLCC) has introduced three new self-paced LotusScript courses, for Notes and Domino 8.5 developers, which can be purchased individually or with TLCC's Notes and Domino 8.5 LotusScript Package. The package is on sale for $1,399 until October 30th, saving you $900.
It seems that, under Notes/Domino 8.0.2 and 8.5, if you delete a folder in your active mailfile, that deletion will be "replicated" to an archive copy of the mailfile. The individual messages will not be deleted. This Technote includes a link to the fix.
This weekend the clocks went back an hour in the UK. British Summer Time ended and we're now back on GMT.
This gives me a tenuous excuse to have a whine about my HTC Hero. With the Hero I lose and gain an hour at various points of every day and it's getting a bit annoying.
See the clatter-board-style clock on the image to the right? This is the Hero's default and the culprit for making me lose time.
When you wake/unlock the phone the time displayed is 62 minutes ago. It then changes to the current time using an animation where the numbers drop down like a clatter-board would.
How long it takes to change from an hour and two minutes ago to the current time seems to vary - from ~200ms to a second or more.
The animation is impressive eye candy the first few times you see it ("Oooh, that's nice" I remember thinking). Then it gets annoying. If you don't know what time it is (I don't wear a watch) and you're looking to the phone as a clock then it can be either a good or a bad thing.
The trouble is that it only takes the mind a fraction of a second to read the time and process it. In the time it takes the clock to update itself to the proper time my mind already thinks it's an hour earlier. If I've got up with the kids and it turns 5:30am in to 6:30am then this is a good thing. If I've just gone through the whole getting the kids to bed saga then turning 8:00pm in to 9:00pm is not a good thing!
I know I should train my mind to get used to it and add an hour on, but I just can't. It's such unexpected behaviour of a clock that my mind can't cope.
Maybe I should just remove the widget and use another clock, but this is the best one there is. I just wish they thought more about the side effect of the pointless animation. For now I'm learning to not look at it at all.
This is a perfect example of how the tiny little things become very, very annoying with objects you use all the time.
COMPUTER CONSULTING: FROM STRIVING TO THRIVING The Independent Computer Consultants Association presents the 32nd Annual ICCA Conference in San Franscisco, November 13-15, 2009.
Hot topics include:
What Would Grace Hopper Do? Lessons from the Mother of the Information Age
Starting a Single Shingle Shop
Creating Opportunities for Consultants
Consulting 2.0: How Virtualization, Cloud Computing, and Open Source are Transforming IT
Creating a Successful Consulting Company
Plus, keynote speech by Craig Newmark on the history and culture of Craigslist.
Marc Champoux got a lot of complaints from his users when Notes 8.x went out with new messages showing in bold, black text. He was so happy when Notes 8.5.1 offered an option to go back to red. Then he started getting complaints again.
As I continue producing Flex solutions for customers I find more of them reporting the same issue -- that pressing F5 no longer refreshes the page.
The cause of this is that the Flash plugin takes complete keyboard focus. As soon as your mouse focuses on the Flash player all the usual browser keyboard shortcuts stop working. Not that I'd expect a user to know that of course.
This is especially confusing in a hybrid HTML/Flex app like the Staff Skill demo, as shown below:
One of the things I offer as a workaround is that the user clicks "outside the Flex app" to remove focus from Flash and then presses F5. Or that they use the browser's own refresh icon.
I'm never happy with half-hearted answers like that though. There's a bigger picture to address.
In most - if not all - cases the goal of the user is to simply refresh the data in a Grid. There's no need to reload the whole page to do that. Instead we can provide an interface to update the grid itself.
On the image above notice I've highlighted in yellow a "button" that refreshes the grid. The MXML for this button is simply:
Notice that the click event simply tells the HTTPService with ID "xmlGet" to fetch the data from the same URL it did when the app was first loaded. The HTTPService then handles in the refreshing of the grid. Case closed.
Taking It Further
While a button is better than having to explain the cause and workaround over and over it's not as good as a catch-all solution would be. Ideally what we'd do have Flex listen for a press of the F5 key and then do the same as the above button without the using knowing.
Using key codes you can capture F5 being pressed like so:
private function init():void{ application.addEventListener(KeyboardEvent.KEY_UP, keyHandler);
} private function keyHandler(event:KeyboardEvent):void { if (event.keyCode==116){ xmlGet.send(); }
}
Taking it one step further you could detect if the shift or ctrl key are held down and refresh the whole page in that case. Just an idea.
Summary
Even if this hasn't been an issue for you yet, if you're using Flex and grids it probably will be at some point, so it might be an idea to get in there with a pre-emptive strike.
Last week I blogged
about an add on for discussion applications that helps Notes users to easier
copy Notes documents into discussions. Today I published the code as release
of the discussion next generation project. You can install the feature
via drag ...
We have added a new project to OpenNTF - XPages Framework Template. This template allows you to quickly create new XPage applications by creating the css layout (OneUI) for you and easily allowing you to manage and translate it. Download the project from ...
Many times mail-signatures are an overhead in chain mails. There should be an option in the mail client to restrict the addition of signature only to new mails (and not when replying or forwarding a mail). This will reduce the length and size of the mail, increasing efficiency of the user as well as computing resources.
An even better way to do this is to check whether the signature is already in the mail or not. Thus notes will add your signature when forwarding/replying only once!
As a software developer working with the Lotus Notes software, I would like to formally request the release of documentation for the NSF file format. Lotus Notes has a huge install base, and your customers have invested a lot of trust in your product, storing vital information within Notes databases.
Currently, the only means of accessing that data is either through the user interface of the application, or via a poorly implemented, extremely limited and buggy COM API. Those of us who need to interact with Lotus on a lower level understand the reasons why the COM API cannot be rapidly extended enhanced or changed.
However, the format of the NSF files used needs no change, it merely needs documentation. If it was documented, we could write our own tools to work directly against the data, removing some of the burden from the Lotus Notes development team to support enhancements to the COM API.
One of your primary competitors -- Microsoft Outlook/Exchange -- has recently taken a bold step forward by releasing the documentation of their equivalent PST format. Much like Lotus Notes, and the NSF format, the only historical way of accessing data in a PST was via a very limited and buggy COM API.
Releasing the documentation for the PST format was a huge gesture of understanding from Microsoft and shows a lot of concern for their customer base, and those who service and support their customers. It's those kinds of display of concern that create customer loyalty and encourage users to continue using their products.
Please step up to the plate and show your customers that you care about them as a company. Please provide documentation for the structure of your data files.
This doesn't need to be extremely accessible documentation or thorough. It can be minimal, with numerous details left out, and only for the current ODS. That would be a great starting point.
PS: For reference, here's the Microsoft announcement of their intention to release the PST format specification.
Lotusscript provides a GetFirstItem method to obtain the first Field in a document with a given name. With RichText items there can be more than one field with the same name. At present there is no simple way to get the 2nd (and subsequent) items of the same name. One solution would be to provide a NotesDocument.GetNextItem(NotesItem) method that return the next item with the same name as the Notesitem provided as the parameter. i.e. it is very similar to how GetNextDocument works.
The DAOS catalog cannot stay synchronized. The output from "tell daosmgr databases" may list the same database multiple times and each entry will not be synchronized.
When viewing the server console, you will continue to see the following messages: iCalendar: Logging conversion of request from non-Notes source. Product ID: Microsoft CDO for Microsoft Exchange Router: Unable to deliver message XXXXXXXX, to UserA from UserB Field is too large (32K) or View's column & selection formulas are too large
Domino group member names do not resolve correctly from Directory Assistance when using a Smarthost. The mail does not route and a Non Delivery Report is sent to the sender of the message.