Search found 4 matches

by tcremieux
Sat Sep 22, 2012 6:51 am
Forum: Tips & Techniques - RPG and RDMLX
Topic: Open native maps app from URL, iOS6
Replies: 0
Views: 3035

Open native maps app from URL, iOS6

Prior to iOS 6, opening a URL from an iOS device pointing to maps.google.com would launch the native Google maps application. However, since Apple has replaced the Google maps app with their own, you need to change the URL to maps.apple.com to open the new native maps app. If you are still using iOS ...
by tcremieux
Fri May 11, 2012 1:23 pm
Forum: Questions & Answers - RPG and RDMLX
Topic: Sending Email (RDMLX)
Replies: 1
Views: 4029

Sending Email (RDMLX)

Is there a way initiate an email from an event such as OnClick of a button? I had a thought to create a mailto link and use the Set_OpenUrl method to open the URL, however it appends the server details to the URL (i.e. http://xxx.xxx.com/) which causes an issue. The example is below:

#Com_Owner ...
by tcremieux
Fri May 11, 2012 2:16 am
Forum: Questions & Answers - RPG and RDMLX
Topic: Clearing contents of a table (RDMLX)
Replies: 4
Views: 4263

Re: Clearing contents of a table (RDMLX)

Thanks Paul. I used the Set method to set the ROW property to *NULL since there is no Set_Null. Works perfect.

Code: Select all

#COM_OWNER.Set Property('/Form.Fields.Table1.ROW') To(*NULL)
by tcremieux
Thu May 10, 2012 6:56 am
Forum: Questions & Answers - RPG and RDMLX
Topic: Clearing contents of a table (RDMLX)
Replies: 4
Views: 4263

Clearing contents of a table (RDMLX)

Is there a way to clear the contents of a table without having to refresh the entire form? I was thinking that calling #COM_OWNER.SetTable again would rebuild the table. Ideally this would be something like #COM_OWNER.ClearTable Name('Table').

Currently, the only way I can achieve this is to ...