
servoyguy.com
Servoy Consulting, Training, Resources, Tips & TricksServoy consulting and resources for documentation, hosting, plugins, tutorials, and tips and tricks.
http://www.servoyguy.com/
Servoy consulting and resources for documentation, hosting, plugins, tutorials, and tips and tricks.
http://www.servoyguy.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Thursday
LOAD TIME
1.7 seconds
iTech Professionals, Inc.
Scott Butler
PO ●●●211
Tr●●on , Ohio, 45067
United States
View this contact
iTech Professionals, Inc.
Scott Butler
PO ●●●211
Tr●●on , Ohio, 45067
United States
View this contact
iTech Professionals, Inc.
Scott Butler
PO ●●●211
Tr●●on , Ohio, 45067
United States
View this contact
17
YEARS
3
MONTHS
20
DAYS
GODADDY.COM, LLC
WHOIS : whois.godaddy.com
REFERRED : http://registrar.godaddy.com
PAGES IN
THIS WEBSITE
20
SSL
EXTERNAL LINKS
25
SITE IP
64.90.58.130
LOAD TIME
1.687 sec
SCORE
6.2
Servoy Consulting, Training, Resources, Tips & Tricks | servoyguy.com Reviews
https://servoyguy.com
Servoy consulting and resources for documentation, hosting, plugins, tutorials, and tips and tricks.
Specialty | Servoy Guy
http://www.servoyguy.com/code_repository/specialty
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more. Play an audo or movie file in the default play on Windows or Mac. 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.
Knowledge Base - Installation | Servoy Guy
http://www.servoyguy.com/knowledge_base/installation
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more. Knowledge Base - Installation. How can I connect Servoy to my own database server instead of Sybase?
Knowledge Base | Servoy Guy
http://www.servoyguy.com/knowledge_base
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more. How do I sign my Servoy plugins and beans? Why are my Clients unable to connect to the Servoy Application Server? How do I link directly to a solution? How do I clear my Java cache? How does the Servoy Audit Log work?
directory | Servoy Guy
http://www.servoyguy.com/code_repository
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more.
JSP | Servoy Guy
http://www.servoyguy.com/code_repository/jsp
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more. 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.
TOTAL PAGES IN THIS WEBSITE
20
Servoy University: Servoy TIP: Changing A Form's Style On-The-Fly!
http://servoyuniversity.blogspot.com/2011/09/servoy-tip-changing-forms-style-on-fly.html
Monday, September 12, 2011. Servoy TIP: Changing A Form's Style On-The-Fly! I had a need the other day to change the style that was displaying on a form. My first thought was to just change all the object properties via scripting (a HUGE pain! But, with the help of the SolutionModel (and controller.recreateUI(). In version 5.2 ) - it was a snap. Let's say you have two styles: "defaultStyle" and "fancyStyle" defined in your resources. If you use this code:. MyForm.styleClass = "fancyForm";.
Servoy University: Servoy TIP: How and Why To Implement UUIDs As Your Primary Key
http://servoyuniversity.blogspot.com/2011/07/servoy-tip-how-and-why-to-implement.html
Friday, July 29, 2011. Servoy TIP: How and Why To Implement UUIDs As Your Primary Key. When setting up your database tables (if you create them in Servoy) - you know that Servoy automatically creates an integer unique record id that you can use when you relate data to/from another table. It's called a primary key. That auto-increments when a new record is created. In most cases, an auto-incrementing integer primary key will be just fine. Here's the Wikipedia definition. In its canonical form, a UUID cons...
Servoy University: July 2011
http://servoyuniversity.blogspot.com/2011_07_01_archive.html
Friday, July 29, 2011. Servoy TIP: How and Why To Implement UUIDs As Your Primary Key. When setting up your database tables (if you create them in Servoy) - you know that Servoy automatically creates an integer unique record id that you can use when you relate data to/from another table. It's called a primary key. That auto-increments when a new record is created. In most cases, an auto-incrementing integer primary key will be just fine. Here's the Wikipedia definition. In its canonical form, a UUID cons...
Servoy University: September 2011
http://servoyuniversity.blogspot.com/2011_09_01_archive.html
Monday, September 19, 2011. Servoy TIP: Getting The Current Quarter Date Range. I do a lot of applications where users want reports or lists that take a date in the current record and filter or find all the records "In This Quarter". The calculation isn't all that difficult - but it's a cool time saver. Below, I've actually created 3 functions - so you can use the quarter start date, end date, or date range. Return the starting quarter date for a given date. InputDate) { return null; }. Else if (mo 6) {.
Servoy University: Servoy TIP: How To Reference A Relation in Code
http://servoyuniversity.blogspot.com/2011/06/servoy-tip-how-to-reference-relation-in.html
Monday, June 27, 2011. Servoy TIP: How To Reference A Relation in Code. OK - here's the first Servoy QuickTip - and it has to do with relations. When you're using relations in a conditional statement - and especially. When you're using them in calculations - make sure you test for the existence of the relation first. First - the wrong. If(myRelation.getSize() 0) {. And make sure the relation is valid before you try to access any of the functions on a relation. If(myRelation & myRelation.getSize() 0) {.
Servoy University: Servoy TIP: How To Efficiently Create Records
http://servoyuniversity.blogspot.com/2011/07/servoy-tip-how-to-efficiently-create.html
Friday, July 1, 2011. Servoy TIP: How To Efficiently Create Records. This will create a new record as the first row. And will update the user interface. In most cases this is OK - however, there may be times when you want to add records and not. Update the user interface. In this case you want to use the foundset object:. Foundset.myField = "value";. Now that's all find and good - the record will be created and the user interface won't immediately change (until you call databaseManager.saveData().
Servoy University: Servoy TIP: Calculating Age
http://servoyuniversity.blogspot.com/2011/08/servoy-tip-calculating-age.html
Friday, August 26, 2011. Servoy TIP: Calculating Age. Calculating the age of something (or someone) is a task that I come across a lot. Here's a simple function that will help get you the basics:. Var now = new Date();. Var yr = now.getFullYear() - myDate.getFullYear();. Var mo = now.getMonth() - myDate.getMonth();. Mo = myDate.getMonth() - now.getMonth();. Var days = now.getDate() - myDate.getDate();. Days = myDate.getDate - now.getDate();. Var agestr = yr " years, " mo " months, " days " days";.
Servoy University: June 2011
http://servoyuniversity.blogspot.com/2011_06_01_archive.html
Monday, June 27, 2011. Servoy TIP: How To Reference A Relation in Code. OK - heres the first Servoy QuickTip - and it has to do with relations. When youre using relations in a conditional statement - and especially. When youre using them in calculations - make sure you test for the existence of the relation first. Subscribe to: Posts (Atom). Servoy TIP: How To Reference A Relation in Code.
Servoy University: Servoy TIP: Getting The Current Quarter Date Range
http://servoyuniversity.blogspot.com/2011/09/servoy-tip-getting-current-quarter-date.html
Monday, September 19, 2011. Servoy TIP: Getting The Current Quarter Date Range. I do a lot of applications where users want reports or lists that take a date in the current record and filter or find all the records "In This Quarter". The calculation isn't all that difficult - but it's a cool time saver. Below, I've actually created 3 functions - so you can use the quarter start date, end date, or date range. Return the starting quarter date for a given date. InputDate) { return null; }. Else if (mo 6) {.
Servoy University: Servoy TIP: How To Trap For Modifier Keys
http://servoyuniversity.blogspot.com/2011/08/servoy-tip-how-to-trap-for-modifier.html
Friday, August 19, 2011. Servoy TIP: How To Trap For Modifier Keys. When you're developing your solution - there are times where you want to know if the user had any modifier keys pressed when they performed the action (drag and drop, right click, shift key down, etc.). Servoy returns a number for each key that is held down and, if you add up the numbers, you can tell which keys are down. Luckily, there's a really straightforward to accomplish this - and it's all held in the event. There are other even t...
TOTAL LINKS TO THIS WEBSITE
25
Welcome at ServoyCamp - ServoyCamp Community
When you already have an ServoyCamp account you can login here. If not you will have to register. More impressions: ServoyCamp 2011. ServoyCamp 2009 Part 1. Its a while ago since ServoyCamp 3 was held in Assen, the Netherlands. But now all the presentations which where held are available to download for. We're very proud to announce the ServoyCamp 3 program with the current available speakers and content! ServoyCamp 3 is going to be a very educating. ServoyCamp Conference 3 Promo. At De Bonte Wever.
ServoyCamp 3: Schedule
Schedorg Conference Mobile Apps. This event has ended. View the official site. Or create your own event mobile app → Check it out. This event has ended. Create your own. Or browse by date venue. Arrival and hotel check-in De Bonte Wever, Assen. Opening ServoyCamp Conference Room. Servoy Keynote Conference Room. Latest Servoy product update and newest features Conference Room. Using WAR file deployment Conference Room. Using automated importing pre- posthook modules Conference Room. Sort schedule by Venue.
Servoy Components | IT2BE Plug-ins and Beans for Servoy
Servoy Plug-ins and Beans. Hmmm, working on a Saturday? Anyway, we just want to say. Thank you for visiting. If there is anything we can do for you please create a ticket in our. Hmmm, working on a Sunday? Anyway, we just want to say. Thank you for visiting. If there is anything we can do for you please create a ticket in our. Hello, we just want to let you know that we. Your visit on this first workday of the week. If there is anything we can do for you please create a ticket in our. Hi, we just want to...
ServoyForge
We have been working hard to offer you a brand new collaboration platform for everything. Feel free to dig into the projects, exchange and collaborate, remember that this is also your platform! Your contribution will be valued and will help creating a better development environment for all. Quick links to get started: ¶. How to register an account. How to create a project. Post your ideas here for others to pick up as a new project. This website has it's own project page. Follow us on Twitter. New Google...
Servoy Consulting, Training, Resources, Tips & Tricks
Need some help with your Project or Training to get up to speed with Servoy? We offer hourly consulting, or special bundle packages. We can also help you with optimizing your solution, Servoy hosting, or upgrading your solution with SaaS model, i18n / multi-lingual capability, and much more. Servoy resources, consulting, tips and tricks. Welcome to the NEW Servoy Guy site! I'm still working on some areas, but feel free to browse around my new site:. Categorized code snippets for use in Servoy.
Kabootit
Enter your email address below to subscribe to Servoy Magazine. Subscribe to this blog's feed. On I Love You Wakandabut I'm Breaking Up. On I Love You Wakandabut I'm Breaking Up. On I Love You Wakandabut I'm Breaking Up. On Divide and conquer with Servoy headless client plugin. On Divide and conquer with Servoy headless client plugin. On Hacking Servoy's Calendar Picker. On Data Sutra 4.0 Released. On Data Sutra 4.0 Released. On Hacking Servoy's Calendar Picker. On Hacking Servoy's Calendar Picker. A sim...
Power Cables Manufacturer,Power Cables Supplier,Power Cables Manufacturer India,Delhi
Offering high quality Power Cables i.e Multicore Power Cables and Power Cords that are known for their flame retardancy, good tensile strength and ability to bear fluctuations of voltage. Purchase supreme quality 6 AMP Power Cord online at a very competitive price. Offering Power Extension Cord online in various length according to requirements of clients. Purchase best Extension Cords online according to requirements. Offering supreme quality CCTV Cables online according to customers requirement. Such s...
Servoy Components | IT2BE Plug-ins and Beans for Servoy
Servoy Plug-ins and Beans. Hmmm, working on a Saturday? Anyway, we just want to say. Thank you for visiting. If there is anything we can do for you please create a ticket in our. Hmmm, working on a Sunday? Anyway, we just want to say. Thank you for visiting. If there is anything we can do for you please create a ticket in our. Hello, we just want to let you know that we. Your visit on this first workday of the week. If there is anything we can do for you please create a ticket in our. Hi, we just want to...
cPanel®
Apache is working on your cPanel. And WHM™ Server. If you can see this page, then the people who manage this server have installed cPanel and WebHost Manager (WHM). Which use the Apache Web server. Software and the Apache Interface to OpenSSL (mod ssl). Successfully. They now have to add content to this directory and replace this placeholder page, or else point the server at their real content. Try sending an email to. About Apache HTTP Server:.
Servoy University
Monday, September 19, 2011. Servoy TIP: Getting The Current Quarter Date Range. I do a lot of applications where users want reports or lists that take a date in the current record and filter or find all the records "In This Quarter". The calculation isn't all that difficult - but it's a cool time saver. Below, I've actually created 3 functions - so you can use the quarter start date, end date, or date range. Return the starting quarter date for a given date. InputDate) { return null; }. Else if (mo 6) {.