Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

left hand side scrollbars - possible? how?

Status
Not open for further replies.

hithere

Programmer
Jul 12, 2001
214
US
since I can't kill the close window "x" button, I'm thinking of moving that edge of a window off screen but...there's the potential a user might have enough data that they'd need to scroll. anyone know of a way to make the scroll bar appear on the left instead of the right? preferably in vbs...is this even possible?
thanks!

"Where's the Ka-Boom? There's supposed to be an Earth-shattering Ka-Boom!"
Marvin the Martian
 
I've read that HTML4 will have support for left scrollbars so i assume that means currently your answer is "NO"
[hammer]

-pete

 
You mean like this:
Code:
<html>
<body dir=&quot;rtl&quot; style=&quot;text-align:left;&quot;>
test
</body>
</html>

This may cause some issues with your later alignments.

-Tarwn

01010100 01101001 01100101 01110010 01101110 01101111 01101011 00101110 01100011 01101111 01101101
29 3K 10 3D 3L 3J 3K 10 32 35 10 3E 39 33 35 10 3K 3F 10 38 31 3M 35 10 36 3I 35 35 10 3K 39 3D 35 10 1Q 19
Get better results for your questions: faq333-2924
Frequently Asked ASP Questions: faq333-3048
 
try this

<html>
<body dir=&quot;rtl&quot; div dir=&quot;ltr&quot;>

This is a left scroll bar example
</body>
</html>


 
I think what you meant was this:
Code:
<html>
<body dir=&quot;rtl&quot;>
<div dir=&quot;ltr&quot;>

</div>
</body>
</html>

Though the only difference here is how you are re-aligning things to the left, both methods should work, and there are several more for re-alignment as well.

-Tarwn

01010100 01101001 01100101 01110010 01101110 01101111 01101011 00101110 01100011 01101111 01101101
29 3K 10 3D 3L 3J 3K 10 32 35 10 3E 39 33 35 10 3K 3F 10 38 31 3M 35 10 36 3I 35 35 10 3K 39 3D 35 10 1Q 19
Get better results for your questions: faq333-2924
Frequently Asked ASP Questions: faq333-3048
 
...somehow I get the feeling you are creating a pop-up window with the sole perpose of driving people nuts. Honestly, let your users close the window.
 
I'm just following orders ;-) The boss wants as little opportunity for the user to mess up the process as possible.

&quot;Where's the Ka-Boom? There's supposed to be an Earth-shattering Ka-Boom!&quot;
Marvin the Martian
 
Tell him it will work much better if you just have the users hands removed before they have an opportunity to even look at the computer ;)

-Tarwn

01010100 01101001 01100101 01110010 01101110 01101111 01101011 00101110 01100011 01101111 01101101
29 3K 10 3D 3L 3J 3K 10 32 35 10 3E 39 33 35 10 3K 3F 10 38 31 3M 35 10 36 3I 35 35 10 3K 39 3D 35 10 1Q 19
Get better results for your questions: faq333-2924
Frequently Asked ASP Questions: faq333-3048
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top