dmatulac

February 5, 2018

How do I setup Servoy Application Server to startup automatically on Linux?

Each Linux distribution is slightly different.
February 5, 2018

How do I setup Sybase to startup automatically on a Mac

Download Armadillo to create startup items
February 5, 2018

How do I enable HTTPS on Servoy Webclient for SSL for port 443?

Open the config file at {servoy_install}/server/conf/server.xml
February 5, 2018

How do I enable SSL for my Servoy connections?

Create a Certificate Signing Request (CSR) using keytool.
February 5, 2018

How can I change the session/license timeout on Web Client?

These settings are loced in {servoy_install}/server/conf/web.xml
February 5, 2018

How do I setup Servoy Application Server to startup automatically on Windows?

When you run the Serovy installer, there is an option to check labeld "Service" Make sure that box is checked when you install Serovy on your server.
February 5, 2018

How do I setup Servoy Application Server to startup automatically on a Mac

Download Armadillo to create startup items
February 5, 2018

Are There Any Free Icon / Image Sets Available?

Below is a huge list of Icon / Graphics sets for your applications.
February 5, 2018

How can I connect Servoy to my own database server instead of Sybase?

When you install Servoy, Sybase is installed by default.  If you dont plan to use Sybase, then on the installer, uncheck "database" and Sybase won't be installed.  
February 5, 2018

How does the Servoy Audit Log work?

Audit Log information
February 5, 2018

How do the format options work on input fields?

Each field in Servoy has a "format" property that can be set.
February 5, 2018

What are the best practices for upgrading to Servoy 5?

Servoy has documentation on the general upgrade process at http://wiki.servoy.com/display/SERV5/Upgrade+Notes
February 5, 2018

How can I connect to Microsoft SQL Server?

MS SQL Server ships with a JDBC driver, however, there is a better, faster driver that is available!
February 5, 2018

When a user clicks to launch Servoy Client from the web install page, why does’t Servoy launch?

Is Java installed on the client?  Servoy requires that java is installed prior to installing Servoy Client.
February 5, 2018

How do I clear my Java cache?

Windows and Mac
February 5, 2018

How can I increase the speed of my solution over the WAN in a low bandwidth environment?

The trips back to the Servoy Applicaiton Server
February 5, 2018

How do I link directly to a solution?

You can use a URL with parameters, or by folder directory.
February 5, 2018

Why are my Clients unable to connect to the Servoy Application Server?

Start with the obvious.  Is Servoy running on the server?
February 5, 2018

How do I sign my Servoy plugins and beans?

Servoy has some tutorials on their wiki
February 5, 2018

Customizing the Style of Native Tabs on Web Client

Many people like the default look of the native tabs in Smart Client, but don't like how the tabs style in Web Client.
February 5, 2018

Making Roll-Over Links in Web Client

Source: Bob Cusick, Servoy
February 5, 2018

Play a Movie from a Media Column

Uses the Servoy Blobloader to play a movie (or any file) in the web browser. Set this calculation to display as HTML_AREA.
February 5, 2018

Working with Objects

Create a new Object
February 5, 2018

Dates: Get the day of the week for a specified date/week

Get the day of the week for a specified date/week
February 5, 2018

Save and Restore Foundsets

Source: Sanneke Aleman, Servoy
February 5, 2018

How to access user properties on the Runtime

Using application.getUserProperty and application.setUserProperty don't work with Runtimes, but sometimes you need that type of functionality, so here is how you implement it.
February 5, 2018

Mac: Print a PDF directly to a printer

LPR is the unix based printing built into the Mac.
February 5, 2018

Make a call from Skype

Source: Harjo Kompagnie, Direct ICT
February 5, 2018

Get the File Size of Data Stored in a Media Field

Allows you to get the files size of data stored in a media/blob column without writing to disc.
February 5, 2018

Writing the contents of the media library out to a file

Source: Patrick Ruhsert, Dr. Maison & Partner GmbH
February 5, 2018

Get a Value List of all Servoy Users

Creates a value list where the display value is the User Name, and the store value is the UserUID.
February 5, 2018

Play Media File

Play an audo or movie file in the default play on Windows or Mac.
February 5, 2018

Show a Detail Window Pop-Up from a List View Dynamically

This code allows you to show a Pop-Up Window from a list or table view dynamically...so you don't have to code a method for each "Show Detail Popup" button.
February 5, 2018

Date Parse

Handles parsing of  dates for easier user date entry.
February 5, 2018

URL Encode a String

URL Encode a String
February 5, 2018

Difference between date/time rounded up

Takes in a start and end date and calculates the difference between the time. Them rounds up to a specified interval (15 minutes in this example) and outputs as hours.
February 5, 2018

Strip Time from Date

Removes the time from the date.
February 4, 2018

Stream file via JSP

Allows you to stream a file off the file system on the server to the client via JSP. Â This could be modified to add security.
February 4, 2018

Row Background Color

Example of alternating row background color calculation, also with different selected row color.