Results 1 to 24 of 24

Thread: Irritating VBF focus issue

  1. #1

    Thread Starter
    Frenzied Member zaza's Avatar
    Join Date
    Apr 2001
    Location
    Borneo Rainforest Habits: Scratching
    Posts
    1,486

    Irritating VBF focus issue

    It's starting to irritate me that every time I reply to a thread and start typing, three seconds later the focus is set to that large ad at the bottom of the screen and my sentence remains incomplete.

    Somebody sort it out!
    I use VB 6, VB.Net 2003 and Office 2010



    Code:
    Excel Graphing | Excel Timer | Excel Tips and Tricks | Add controls in Office | Data tables in Excel | Gaussian random number distribution (VB6/VBA,VB.Net) | Coordinates, Vectors and 3D volumes

  2. #2
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    Weird, what browser do you use?
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Irritating VBF focus issue

    Microsoft Excel, obviously. It's in his signature.

  4. #4

    Thread Starter
    Frenzied Member zaza's Avatar
    Join Date
    Apr 2001
    Location
    Borneo Rainforest Habits: Scratching
    Posts
    1,486

    Re: Irritating VBF focus issue

    This focus issue is really starting to annoy me. Particularly when I realise I have typed a mistake, push backspace and then look at the screen to find that due to the focus problem it has sent me back to the previous webpage.



    Somebody Sort It Out!!!!!!!!

    I use VB 6, VB.Net 2003 and Office 2010



    Code:
    Excel Graphing | Excel Timer | Excel Tips and Tricks | Add controls in Office | Data tables in Excel | Gaussian random number distribution (VB6/VBA,VB.Net) | Coordinates, Vectors and 3D volumes

  5. #5
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: Irritating VBF focus issue

    Ohh good, it's not just me. I'm going through the same thing, but I just assumed someone put a crappy key logger on my computer.

  6. #6

  7. #7

  8. #8

  9. #9

  10. #10
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Irritating VBF focus issue

    Can't say I've ever had it. Either with or without IE.

  11. #11
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    Quote Originally Posted by RhinoBull
    How is it relevant??? It happends to me as well and I'm using IE, IE the only IE and nothing else but IE.
    because "IE the only IE and nothing else but IE." is the only browser that gives focus to flash objects and asks you to click on them to activate them. I thought it might be a flash ad... so it's relevant

    I'll take this opportunity to ask you all to start using FireFox
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  12. #12
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Re: Irritating VBF focus issue

    Is this an IE only issue?

    When you have trouble with an ad, it really helps me if you can do two things -- capture the screen - or the image of the ad so we know which one it is, and two capture the source code for the page. If you can post both of these, it really points the finger at the specific ad that is causing a problem.

    I'll assume based on the posts that the ad causing the focus issue is a Palm Trio ad that appears at the bottom of the page. There is also one that appears at the top, so I'm not sure if it is causing issues too...?

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

  13. #13

  14. #14
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: Irritating VBF focus issue

    in IE6: Right click the page, click view source and a text file will pop up like this:
    Attached Files Attached Files

  15. #15
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    in FF: right click the page, click "View Page Source" and a new window with the source code will popup
    Attached Files Attached Files
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  16. #16
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: Irritating VBF focus issue

    I just had it happen. it was during the IBM advertisement.
    Attached Files Attached Files

  17. #17
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390

    Re: Irritating VBF focus issue

    Same here.. its the IBM add at the bottom..
    as soon as i lost focus.. I check by shift-tab. the "TOP" link was highlighted.

    the source i am attaching is that link and everything below it.
    the ad appears to be a flash ad. (IBM)

    im using..my own webbrowser - webbrowser control.. so IE
    Attached Files Attached Files
    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

  18. #18
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    If something is wrong in the code
    it would be here:
    Code:
    var prplgin=(navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"])?(navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin):(0);
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  19. #19

  20. #20
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    I was looking and I found this:
    to make your code pure javascript you have to use this:
    Code:
    // IE flash detection.
    	for(var i=7; i>0; i--){
    		flashVersion = 0;
    		try{
    			var flash = new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + i);
    			flashVersion = i;
    			return;
    		}
    		catch(e){
    		}
    	}
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  21. #21
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: Irritating VBF focus issue

    Quote Originally Posted by RhinoBull
    Not a chance.
    You can't blame a man for trying
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

  22. #22
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: Irritating VBF focus issue

    Never had this happen. Now I'll watch out for it.
    My usual boring signature: Nothing

  23. #23

    Thread Starter
    Frenzied Member zaza's Avatar
    Join Date
    Apr 2001
    Location
    Borneo Rainforest Habits: Scratching
    Posts
    1,486

    Re: Irritating VBF focus issue

    Has the IBM ad been taken down? It frequently seems now that no ads appear at the bottom when replying to a thread, including this reply. The "Bottom ad" section refers to a Blank.gif instead.

    When there is no ad, there is no focus issue.

    Cheers,

    zaza
    I use VB 6, VB.Net 2003 and Office 2010



    Code:
    Excel Graphing | Excel Timer | Excel Tips and Tricks | Add controls in Office | Data tables in Excel | Gaussian random number distribution (VB6/VBA,VB.Net) | Coordinates, Vectors and 3D volumes

  24. #24
    Fanatic Member Valleysboy1978's Avatar
    Join Date
    Nov 2004
    Location
    Planet Xeoroaniar CC Posts:1,928,453,459,361
    Posts
    770

    Re: Irritating VBF focus issue

    Never had a problem, but then I use Fx
    Life is one big rock tune

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width