Results 1 to 5 of 5

Thread: Problem with Screen Flash

  1. #1
    Member
    Join Date
    Apr 07
    Location
    North Texas
    Posts
    56

    Problem with Screen Flash

    I have built a page dynamically using JavaScript and some OEM ActiveX controls.

    Basically, it is several tables that display numeric values as text. In one of the tables, I have need to display the date and time of the PC, so I added the DIV tag and assigned it a name. So every second I call a routine that builds the date time string that I then write to the DIV tag using innerhtml.

    That all works great!

    The problem is, I would say 70% of the time (7 of 10 seconds), the whole screen kind of flashes like the whole screen is being redrawn. I think this is a result of updating the time because I can disable that code and the flashing stops. However, if you watch it say for 3 of 10 seconds the pc date and time update but the screen didn't flash.

    I am at a loss here, don't have a clue what is causing this.

    Any help would be appreciated!
    Thanks,
    David

    How much deeper would the ocean be if sponges didn't grow there?

  2. #2
    Web developer Nightwalker83's Avatar
    Join Date
    Dec 01
    Location
    Adelaide, Australia
    Posts
    9,731

    Re: Problem with Screen Flash

    Would using php to retrieved the time/date help?
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    Please consider giving me some rep points if I help you a lot.
    DON'T BUMP YOUR POSTS!!! Links to my code examples can now be found on my website: My websites
    Please rate my post if you find it helpful!
    Technology is a dangerous thing in the hands of an idiot! I am that idiot.

  3. #3
    Frenzied Member tr333's Avatar
    Join Date
    Nov 04
    Location
    /dev/st0
    Posts
    1,426

    Re: Problem with Screen Flash

    Quote Originally Posted by Nightwalker83 View Post
    Would using php to retrieved the time/date help?
    Not if you want the time/date of the "client", and not the "server".
    Don't forget about rep points if you think a post has benefited you in any way.
    Just another Perl hacker,

  4. #4
    Web developer Nightwalker83's Avatar
    Join Date
    Dec 01
    Location
    Adelaide, Australia
    Posts
    9,731

    Re: Problem with Screen Flash

    What are you doing that would required the time to be updated every second?
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    Please consider giving me some rep points if I help you a lot.
    DON'T BUMP YOUR POSTS!!! Links to my code examples can now be found on my website: My websites
    Please rate my post if you find it helpful!
    Technology is a dangerous thing in the hands of an idiot! I am that idiot.

  5. #5
    Member
    Join Date
    Apr 07
    Location
    North Texas
    Posts
    56

    Re: Problem with Screen Flash

    This is a page that is part of an interface between a pc (laptop) and a PLC or Programmable Logic Controller. The purpose of the interface is to allow the user to monitor whatever process the PLC is controlling and allow the user to make modifications to the configuration and the like.

    In this case, I am displaying the date & time retrieved from the PLC and comparing it to the date & time of the PC. The date & time from the PLC is being retrieved by an OEM activeX control that communicates serially with the PLC. I am building a string that represents the data & time in javascript and then displaying it within a cell of a table.

    This allows the user to see if the date & times of each device match, or are close ... Since the PLC date & time updates every second, I need to update the PC time every second.
    Thanks,
    David

    How much deeper would the ocean be if sponges didn't grow there?

Posting Permissions

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