Wednesday, August 6, 2025

To align controls in horizontal in form

 Scenario:- To align controls in horizontal in form 

To do this Please take a group control and add all controls and change property  for group as Arrangement to Horizontal left

>> And if you still want to adjust one control up and other control down then use Heightmode property to "SizeToAvailable" and for other use "SizeToContent"

Tuesday, August 5, 2025

Get Hyper link on form control

 Scenario:- Need a form control Hyperlink, Upon clicking on that link it should navigate to website.

These can be done in two steps

1)Take a command button and in properties change  style from none to Link and give text what ever should be visible on hyperlink 

2) Override clicked method and write logic as below:-

Browser br = new Browser();
br.navigate("
https://manidynamics.blogspot.com", true);

Now open form you will get required functionality. 

That all task completed.

Thankyou!!

To align controls in horizontal in form

 Scenario:- To align controls in horizontal in form  To do this Please take a group control and add all controls and change property  for gr...