|
-
Aug 31st, 2013, 02:06 AM
#41
Frenzied Member
Re: VB6 -- Disable Scroll Bars in Webbrowser
I tried this but still the scrollbars are there. any update on this?
-
Aug 31st, 2013, 02:07 AM
#42
Frenzied Member
Re: VB6 -- Disable Scroll Bars in Webbrowser
I tried this but still the scrollbars are there. any update on this?
-
May 9th, 2014, 08:49 AM
#43
Member
Re: VB6 -- Disable Scroll Bars in Webbrowser
how can i have a webbrowser like post : #25
i need help to make a browser if len characters of line is bigest as browser width , remaning of characters writing in next line and horizontal Scrollbar not activate
-
May 9th, 2014, 07:23 PM
#44
Re: VB6 -- Disable Scroll Bars in Webbrowser
 Originally Posted by r0om13
how can i have a webbrowser like post : #25
That is not a web browser not it seems to be a chat program.
i need help to make a browser if len characters of line is bigest as browser width , remaning of characters writing in next line and horizontal Scrollbar not activate
You should really ask this question in its own this.
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
May 9th, 2014, 08:36 PM
#45
Re: VB6 -- Disable Scroll Bars in Webbrowser
Code:
Option Explicit
Private Const READYSTATE_COMPLETE As Long = 4
Private Sub Form_Load()
WebBrowser1.Navigate "www.google.com"
Do While WebBrowser1.Busy: DoEvents: Loop
Do While WebBrowser1.ReadyState <> READYSTATE_COMPLETE: DoEvents: Loop
End Sub
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
WebBrowser1.Document.body.Scroll = "no"
WebBrowser1.Document.body.Style.overflow = "hidden"
End Sub
Anything I post is an example only and is not intended to be the only solution, the total solution nor the final solution to your request nor do I claim that it is. If you find it useful then it is entirely up to you to make whatever changes necessary you feel are adequate for your purposes.
-
May 9th, 2014, 09:37 PM
#46
Re: VB6 -- Disable Scroll Bars in Webbrowser
 Originally Posted by r0om13
how can i have a webbrowser like post : #25
i need help to make a browser if len characters of line is bigest as browser width , remaning of characters writing in next line and horizontal Scrollbar not activate
As NightWalker pointed out, you should start a new thread.
You could use a label (Stretched = True) and add word per word, whenever the label.width > webbrowser.width then you add a vbNewLine before the word that made it bigger, and set label back to label.width = webbrowser.width.
There is many solutions, this one was probably the cheapest one tho.
-
May 10th, 2014, 02:59 AM
#47
Re: VB6 -- Disable Scroll Bars in Webbrowser
Note to posters, this thread is over 4 years old.
Started by wiz...., Apr 2nd, 2010 07:05 PM
when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
https://get.cryptobrowser.site/30/4111672
-
May 10th, 2014, 11:05 AM
#48
Member
Re: VB6 -- Disable Scroll Bars in Webbrowser
 Originally Posted by Max187Boucher
As NightWalker pointed out, you should start a new thread.
You could use a label (Stretched = True) and add word per word, whenever the label.width > webbrowser.width then you add a vbNewLine before the word that made it bigger, and set label back to label.width = webbrowser.width.
There is many solutions, this one was probably the cheapest one tho.
thanks dear for replay , can you make a example source for me ?
-
May 10th, 2014, 06:54 PM
#49
Re: VB6 -- Disable Scroll Bars in Webbrowser
 Originally Posted by r0om13
thanks dear for replay , can you make a example source for me ?
If you follow these steps, we will help you, but not write everything for you.
1. Start a new thread (leave this one alone).
2. Make sure you put a decent thread title, not just Help me??
3. Give us a description of what you are looking for, and all the code you have now (screenshot if possible).
4. No I can not make example source for you, if you don't listen to anything I'm saying 
I'm sure many of us will try to help, only if you help your self at the same time. (actually learn)
-
May 11th, 2014, 12:36 PM
#50
Member
Re: VB6 -- Disable Scroll Bars in Webbrowser

Help me please
Sorry for my bad english
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|