Wednesday, September 05, 2007

Starcraft 2

Just looked on second version of my favorite game... "starcraft:broodwar" .
It looks great ! You can see it too :)



and one more

Lotus Notes 8 in youTube

Lotus Notes 8: on Linux desktop



Lotus Notes 8: New features demonstration

Monday, September 03, 2007

fun logos for Lotus Notes

especially I like logo with Kenny. But you will need to see some movies about South Park (this is my favorite animation.

"They killed Kenny... bastard !"

Like Kenny, Notes has been pronounced dead many times. Like Kenny, Notes is always around in the next episode.

all logos you will see here

Enable or Disable agent without Lotus Notes Designer

You can hide/show button with this formula for [Role] which you want

agentName := "AgentName";
@if( @IsAgentEnabled(agentName) = "0"; @Command([AgentEnableDisable]; agentName; "1");
""

This code will enable anget.

You could do this in lotusscript but why would you if there are @functions available?

If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.

originally from http://www.notesninjas.com/

Enable agent

When creating templates for users, they need to sign the agents. This is the easiest way of getting the agent enabled.

In the [Admin] read only set up area put in a button with code:

agentName:="AgentName";
@if( @IsAgentEnabled(ag)="0"; @Command( [AgentEnableDisable] ; ag ; "1");
""

This will enable it, you can even have a form with saveoptions="0" which displays the status of each relevant agent in computed for display fields when composed.

You could do this in lotusscript but why would you if there are @functions available?

If you add buttons that also display the agent's lastrun time this could be used to view a status of all relevant agents.