Search found 6 matches

by Yukiko Ikeo
Fri Jul 28, 2017 5:05 pm
Forum: Questions & Answers - RPG and RDMLX
Topic: [RPG] get the image from Googlechart and encode it base64
Replies: 2
Views: 3502

Re: [RPG] get the image from Googlechart and encode it base64

Hi Jason,

Thank you for your reply.
I'll tell the customer that it's hard to achieve what he want...

Thanks
Yukiko Ikeo
by Yukiko Ikeo
Mon Jul 24, 2017 12:05 pm
Forum: Questions & Answers - RPG and RDMLX
Topic: [RPG] get the image from Googlechart and encode it base64
Replies: 2
Views: 3502

[RPG] get the image from Googlechart and encode it base64

Hi All,

The customer wants to get the image from Googlechart and encode it base64.
I think it needs 3 steps.

Step1. show Googlechart.

It's possible as there is a sample in LongRange demonstration.

Step2. get image of Googlechart

I have no idea for this.
Is there any ways to achieve this?

Step3 ...
by Yukiko Ikeo
Tue Apr 07, 2015 1:16 pm
Forum: Questions & Answers - RPG and RDMLX
Topic: (RDMLX) set element's value for Paramvalue of Set_EventParameter.
Replies: 2
Views: 2568

Re: (RDMLX) set element's value for Paramvalue of Set_EventParameter.

Hi Mark,

Thank you for your reply.
The coding below worked as expected.

---------------------------
* set event parameter
#COM_OWNER.Using Element('/Form.Fields.TEXT') Alwaysrememberlast(True)
#COM_OWNER.Get Property(Value) Into(#STD_TEXT)
#COM_OWNER.EndUsing
#COM_OWNER.Set_EventParameter Event ...
by Yukiko Ikeo
Sat Apr 04, 2015 10:15 am
Forum: Questions & Answers - RPG and RDMLX
Topic: (RDMLX) set element's value for Paramvalue of Set_EventParameter.
Replies: 2
Views: 2568

(RDMLX) set element's value for Paramvalue of Set_EventParameter.

Hi,

I'd like to set element's value for Paramvalue of Set_EventParameter.
(ex. the value of the textbox, the text of the label)
The coding below doesn't work as expected.

---------------------------
* elements
#COM_OWNER.Set_TextBox Name(TEXT) Value('ABCDE') Layout_Col(1) Layout_Row(1) Maxlength ...
by Yukiko Ikeo
Fri Jul 04, 2014 11:09 am
Forum: Questions & Answers - RPG and RDMLX
Topic: (RDMLX) refresh the screen automatically
Replies: 3
Views: 2895

Re: (RDMLX) refresh the screen automatically

Thanks. It's enough to reply to the customer.
by Yukiko Ikeo
Thu Jul 03, 2014 11:54 am
Forum: Questions & Answers - RPG and RDMLX
Topic: (RDMLX) refresh the screen automatically
Replies: 3
Views: 2895

(RDMLX) refresh the screen automatically

When the file data on server is updated, I'd like to update the data on client screen.
(It's like performing F5=refresh automatically on IE)

An event can't be sent from server to client.
So I'd like to send the event from client to server automatically at regular intervals.
without any user actions ...