To set hyperlink on form by code in axapta You can use urlLookup method of infolog class. You can put code in any button click of form following way.
str urlStr="Your Url path" ;
infolog.urlLookup(urlStr );
You can call url by above method.
str urlStr="Your Url path" ;
infolog.urlLookup(urlStr );
You can call url by above method.