| View previous topic :: View next topic |
| Author |
Message |
jwfv Valued Contributor

Joined: 19 Mar 2002 Posts: 422 Location: Beaufort, SC
|
Posted: Tue Nov 16, 2004 6:45 pm Post subject: Browser element without border? |
|
|
Is there a way to display the browser element without the sunken border around it? Either with a flat, no-border style, or with a thin line border? _________________ Joe Floyd |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Tue Nov 16, 2004 11:40 pm Post subject: |
|
|
i think that vdsgui.dll has that option - did you have a look at vdsworld to see if one the dll or dsu there has that feature? i know one of them does
serge |
|
| Back to top |
|
 |
jwfv Valued Contributor

Joined: 19 Mar 2002 Posts: 422 Location: Beaufort, SC
|
Posted: Wed Nov 17, 2004 12:24 am Post subject: |
|
|
I have checked out those extensions but I don't think they have that capability.
I was just wondering if there was some IE setting or API tweak for making the outline of the internet explorer element not sunken. _________________ Joe Floyd |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Thu Nov 18, 2004 4:42 am Post subject: |
|
|
I don't know of any API call or anything else, but if you're writing a HTML
document you can use the following:
| Code: |
<style type="text/css">
body{
border-width: 0px;
border-color: #FFFFFF;
}
</style>
|
This should be placed inside of your <head></head> tags .
Happy coding... _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
jwfv Valued Contributor

Joined: 19 Mar 2002 Posts: 422 Location: Beaufort, SC
|
Posted: Thu Nov 18, 2004 8:04 pm Post subject: |
|
|
That worked out very well - thanks! I'm more and more interested in using the browser element for various tasks in my programs.
For instance, I am using it currently for image display. I have a browser element set to NONAVIGATE, I create an HTML document on the fly with the images and links that call appropriate subroutines. Then when the user clicks on them, I can intercept it and branch to that part of my program. It opens up lots of interesting possibilities.
I need to learn more about the available styles for HTML. Thanks again. _________________ Joe Floyd |
|
| Back to top |
|
 |
ShinobiSoft Professional Member


Joined: 06 Nov 2002 Posts: 790 Location: Knoxville, Tn
|
Posted: Thu Nov 18, 2004 8:07 pm Post subject: |
|
|
I'm glad I was able to help.
I'd look into references for HTML as well as Cascading Style Sheets(css).
The latter is what was used to set the styles for your HTML document.
BTW, the 'background-color:' property is not required if you simply want
to remove the sunken border .
Happy coding... _________________ Bill Weckel
ShinobiSoft Software
"The way is known to all, but not all know it." |
|
| Back to top |
|
 |
|