OpenDCL Forums

OpenDCL => Studio/Dialog Editor => Topic started by: velasquez on April 01, 2009, 10:51:26 AM

Title: HtmlControl
Post by: velasquez on April 01, 2009, 10:51:26 AM
Hi Owen 
It is possible to include the property DisableNoScroll in HtmlControl. 
The appearance is better for small files.
Title: Re: HtmlControl
Post by: BazzaCAD on April 01, 2009, 11:51:49 AM
Try adding this to the head of your HTML file:



<head>
<style type="text/css">
Html, body {
Overflow:auto;
}
</style>
</head>

Title: Re: HtmlControl
Post by: velasquez on April 01, 2009, 12:21:54 PM
Thank you once again Bazz, 
Your code worked well.

Velasquez