Search:

Type: Posts; User: scrapersNbots.com

Search: Search took 0.05 seconds.

  1. Replies
    13
    Views
    12,296

    Re: MSFlexGrid All Rows Deleting

    HOW ABOUT flexGrid.rows = 1 (assuming you have a fixed row at the top you don't want to be deleted)
  2. Re: Change Proxy Without Having to Restart Internet Explorer

    Thats because the proxy is not working or is slow. The web browser control sucks on top of that. A better option than the web browser control is to launch IE, set the parent to be your form, and its...
  3. Re: using API, how to send message to click menu item programmatically..

    Here is what to do.

    [1] Make a shortcut key for the menu item
    [2] to open the menu run this code changing the "%f" to whatever the appropriate sendkeys is.


    Sub subSendAltF()

    Dim...
  4. Re: [RESOLVED] [VB6] Combo Box: Can I drop down the list programmatically (without us

    Its not the same. set WshShell = nothing was missing along with the if's that makes a difference. Why do you have nothing better to do than nag people.
  5. Re: [RESOLVED] [VB6] Combo Box: Can I drop down the list programmatically (without us

    Dim WshShell As Object
    Set WshShell = CreateObject("WScript.Shell")

    if (WshShell is nothing) then
    'whatever you want to do on failure of setting object reference
    else ...
  6. Replies
    20
    Views
    20,130

    Re: [RESOLVED] Text Box Uppercase Only

    Dig up old thread?? I did a search on the internet and the page came up. Take the page down then.
  7. Replies
    20
    Views
    20,130

    Re: Text Box Uppercase Only

    Dim i As Integer: i = Text1.SelStart 'save the current cursor position
    Text1 = UCase(Text1) 'upper case it
    Text1.SelStart = i ' prevent cursor from drifting somewhere...
  8. Replies
    10
    Views
    20,562

    Re: How to "sendkeys" with "alt" button?

    dim wshShell: Set wshShell= CreateObject("WScript.Shell")
    if not(wshShell is nothing) then
    wshShell.sendkeys "%(F6)"
    doevents
    set wshShell = nothing
    end...
  9. Re: using API, how to send message to click menu item programmatically..

    You could do PopUp Menu for the menu item which will cause it to show near your mouse instead of at the menu bar, can probably mess with x and y to fix that. Scrapers〘N〙Bots
  10. Re: Webbrowser - Run-time error '70' permission denied - how to prevent?

    Instead of objClicked.Style.background

    try WebBrowser.document.style.background or
    WebBrowser.document.style.backgroundcolor
  11. Re: [RESOLVED] Get the root domain from a url?

    yes that works IF a web browser is being used.
  12. Re: Get the root domain from a url?

    The planet source code solution has been removed for some reason.
  13. Re: [RESOLVED] Get the root domain from a url?

    Found a Good Simple Solution at http://vb6.info/internet/extract-root-url-url-string/
    Overall pretty reliable and pretty short compared to other solutions.

    at top of module:


    Private Const...
  14. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    I actually won programmer of the month twice on planet source code back around 2002 - 2003. I started learning it in 2000 and love it to death. I think it is the most rewarding and fun thing to do.
  15. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    ABSOLUTELY limited touching and ruining by mankind. How long do you think that will last?
  16. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    VT NH and Maine are all awesome. Killer car drives. I lived in North Adams MA from 2011 - 2013. I should not have left.
  17. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    How do I find the more recent posts?
  18. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    Hey thanks for that. I am responding to old posts but they are getting a ton of visitors because they are on the first page of google when I searched. This makes the information relevant and...
  19. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    what are you the forum police? How about you go about your own business LOL.
  20. Replies
    26
    Views
    103,943

    Re: Remove Item from an array

    We never liked arrays at Scrapers〘N〙Bots simply because they are too messy to deal with and you can't 'see' them.

    Instead use a listbox. If you want columns simply separate each 'column' with...
  21. Re: [RESOLVED] UserControl hWnd Property

    Public Property Get hWnd() As Long
    hWnd = UserControl.hWnd
    End Property
  22. Replies
    11
    Views
    18,315

    Re: Webbrowser Document Complete

    What I have done is created a control that I named BrowserMonitor which has a timer set at interval of 200

    Private Sub Tmr_Timer()
    On Error GoTo err:
    Static sText As String

    'the document...
  23. Replies
    11
    Views
    18,315

    Re: Webbrowser Document Complete

    While Not WebBrowser1.ReadyState = WebBrowserReadyState.Complete IS NOT RELIABLE.
    There are many website today that NEVER fire a complete event.
  24. Re: Classic VB - How do I check if array has been initialized?

    I know this won't apply to all situations but how about
    just setting a boolean flag such as bInitialize, which is declared at
    the beginning of the routine.


    ...
  25. Re: [RESOLVED] How to ignore WebBrowser script errors ? ก้้้้้้้้้้้้้้้้้้้้

    Very Easy Fix - ก้้้้้้้้้้้้้้้้้้้้


    Private Sub mWB_BeforeNavigate2(ByVal pDisp As Object, URL As Variant, Flags As Variant, TargetFrameName As Variant, PostData As Variant, Headers As...
Results 1 to 25 of 25



Click Here to Expand Forum to Full Width