Category: NiceForm

Password Protected Forms – A Warning

As I already mentioned in one of the previous posts, you can protect your forms so nobody can modify them or even view details of actions. You have to be careful though that you do not forget the password, because

Posted in NiceForm Tagged with: , , ,

Formatting numbers and date/time using current locale in NiceForm and NiceLabel Portal

Locale is a set of parameters that defines the user’s language, country and any special variant preferences that the user wants to see in their user interface. Usually a locale identifier consists of at least a language identifier and a

Posted in NiceForm, NiceLabel Portal Tagged with: , , , , ,

Actions in NiceForm and NiceLabel Portal

One of the main strengths of NiceForm and NiceLabel Portal are actions that let you build workflows that accomplish manual chores quickly, efficiently and effortlessly. You don’t have to know any scripting languages or write any code (unless you want

Posted in NiceForm, NiceLabel Portal Tagged with: , , , , ,

Manipulating date and time using Python in NiceForm and NiceLabel Portal

Time values are represented with the time class. Times have attributes for hour, minute, second, and microsecond. They can also include time zone information. A time instance only holds values of time, and not a date associated with the time.

Posted in NiceForm, NiceLabel Portal Tagged with: , , ,

How can I show a message box using Python script in NiceForm or NiceLabel Portal?

import sys if sys.platform == ‘silverlight’: from System.Windows import * result = MessageBox.Show("Would you like to see the simple version?", "MessageBox Example", MessageBoxButton.OKCancel); if result == MessageBoxResult.OK: MessageBox.Show("No caption, one button."); else: import win32gui import win32con result = win32gui.MessageBox(0, "Would

Posted in NiceForm, NiceLabel Portal Tagged with: , , , ,