Expand my Community achievements bar.

change coordinate X and Y by select DropDownList value

Avatar

Level 5

Hi All.

How to change coordinate X and Yof Subform by select DropDownList value?

Thnaks.

1 Reply

Avatar

Level 2

I have written the following code on the Exit function of the dropdown to move the subform:

if(this.rawValue=="Move")

{

           form1.Page1.Subform.x="2.0in";     //X coordinate of the subform

           form1.Page1.Subform.y="4.0in";     //Y coordinate of the subform

}