ET has been busy, and the results have been yummy:
a small plate of short bread, and xmas biscotti, almond crescent, Amoretti cookies, & hazelnut button cookies
sugar cookies
gingerbread men
more gingerbread folk
Happy Newtonmas!
ET has been busy, and the results have been yummy:
a small plate of short bread, and xmas biscotti, almond crescent, Amoretti cookies, & hazelnut button cookies
sugar cookies
gingerbread men
more gingerbread folk
Happy Newtonmas!
Back in February I posted Structured DBlookup’s in Lotus Notes. Very popular. Implicit in that was that the same could be applied to DbColumn’s, but the web (and Google) is all about being explicit, so here we go :
12345678class := "Notes";
Cache := "NoCache";
server := @Subset(@DbName; 1);
database := @Subset(@DbName; -1);
view := "In Progress";
columnNumber :=1;
value [...]
As an update to Export any Lotus Notes View to CSV or Excel, automagically, and as an answer to a being asked how you would do this, here is some similar code to export a view from the web brower to Excel :
WebExcelPrint.txt
Import it into a Lotus Script Agent, and call it with a url [...]
Here is a some very generic code which will work on any Lotus Notes View to print out the contents to a Comma Separated Value (CSV) file, or as an Excel File, with minimum formating, as a general export routines.
Restaurants and Cafes devoted to “costume play,” or cosplay as the Japanese call it, first appeared in Akihabara, Tokyo’s discount electronics store district, in the late 90’s.
Well during the summer, iMaid Cafe opened in Toronto’s east end at 1883 McNicoll Ave. (at Kennedy Rd close to Pacific Mall.), to provide the french maid variation of [...]
Wonderful news: (Via Rob Hyndman) that people are looking at bring a Startup Camp, The Unconference for the Startup Community, to Toronto (in the winter/spring 2007), inspired by the first Startup Camp recently held in California land.
Many details still to be decided (okay almost all the details are TBD: like the the When , Where [...]
I needed to display for “regular” users information that was maintained database wide (preferable via a profile form). Although the usual “@Command( [EditProfileDocument] ; formname; uniqueKey )” worked fine for the db admin people to edit/maintain the information, there was no corresponding “OpenProfileDocument” or such. I wasn’t having much luck [...]
A good size crowd of 100+ of Toronto greekry (want is a word for horde of geeks?) made it out for the 10th DemoCamp monthly show and tell’s return to the auditorium at MaRs.
A quick and dirty way for doing this. No error checking, big assumptions about the input to the prompt being right.
12345nd := @Prompt([OKCANCELEDIT]; "Enter the New Date"; "YYYY/MM/DD."; @Today);
@If (nd ="";@Return("");"");
y := @Left (nd;"/");
m := @Left(@Right (nd;"/");"/");
d:= @right(@Right (nd;"/");"/");
12FIELD DateFieldOnForm := @Date(@TextToNumber (y) ;@TextToNumber ( m)
;@TextToNumber ( d) )
the Key is parsing the string [...]
Why should you use Role names to define functionality? Because : it’s easier to check if someone belongs to a role than a group, and I can’t control what a client (or the Notes Administrator) is going to call a given group.
ACL settings for a pseudo Role-Group need to be documented perhaps in the [...]