Search results

  1. R

    PSTimer

    I'm fairly new to Progress myself, so I'm no expert, but I would say no to using the PSTimer for such a specific time...unless the window you have the OCX in is always running, but it will get complicated with setting the interval, especially since it is in milliseconds. The PSTimer OCX Trigger...
  2. R

    Docking windows in Progress

    Nope. I need the whole window showing. An example of a docked application would be the Microsoft Office Tool Bar, which you can dock to the top, bottom, left, or right side of the screen. That's what I'm trying to do with one Progress window, which is a marquee that scrolls information. I want...
  3. R

    Docking windows in Progress

    By dock, I mean attaching a Progress window somewhere on the windows desktop (maybe to the task bar or at the top of the screen) so it is visible, but nothing can be overlayed on top of it.
  4. R

    Docking windows in Progress

    I need to dock a Progress window to the Windows desktop, preferably to the windows task bar at the bottom. Does anyone know how this can be done in Progress, or know of any dll or ocx that would allow this to be done in Progress. Thanks, Randy
  5. R

    PSTimer

    It has been awhile since I worked on this, and I just got back at it again. If I have an empty tick procedure, it still freezes when there are two dialog boxes open. It seems like it is freezing just when the tick procedure is called, or just when the interval is up, which should mean the...
  6. R

    PSTimer

    It doesn't , so far anyway, freeze with normal windows. It seems to be a dialog box thing, but not all dialogs, so I can't quite pinpoint why it's happening. Maybe its a problem with nested dialogs, and by that I mean a dialog box open from another dialog box. It seems to be okay with a single...
  7. R

    PSTimer

    I tried checking for a transaction and returning no-apply, but it didn't work. Everything ends up freezing when the tick procedure gets called, but only when particular windows are open. For example, I tried a CTRL-ALT-D, clicked on Persistent Procedures, and waited while this dialog was open...
  8. R

    PSTimer

    Thanks, I'll try it.
  9. R

    PSTimer

    What I'm doing in the tick procedure Here's the code: PROCEDURE AlertTimer.PSTimer.Tick: DO WITH FRAME {&frame-name}: chAlertTimer:PSTimer:interval = 0. ASSIGN fillStatus = "Status Display" fillAlert = dayofWeek(WEEKDAY(TODAY)) + " " +...
  10. R

    PSTimer

    I got the PSTimer to work, but it is affecting other windows in the application. It doesn't appear to take focus away when you're in another window, yet the application is freezing up from time to time. When I took the PSTimer out, the application had no more problems with freezing up. Is...
Top