Options

Infamous Blinking Field

SavatageSavatage Member Posts: 7,142
edited 2007-11-11 in General Chat
Blink type Boolean

OnTimer()
Blink := NOT Blink;
CurrForm."NavField".VISIBLE(Blink OR ("NavField"=''));

Now set the TimerInterval of the form (250 or lower is fun)
:whistle:

Comments

  • Options
    ssinglassingla Member Posts: 2,973
    That is cool.... :whistle: :whistle:
    CA Sandeep Singla
    http://ssdynamics.co.in
  • Options
    David_SingletonDavid_Singleton Member Posts: 5,479
    Savatage wrote:
    Blink type Boolean

    OnTimer()
    Blink := NOT Blink;
    CurrForm."NavField".VISIBLE(Blink OR ("NavField"=''));

    Now set the TimerInterval of the form (250 or lower is fun)
    :whistle:

    PPPlllllleeeeaaaasssseee NNnnnnnnnnoooooooooo!
    David Singleton
  • Options
    DenSterDenSter Member Posts: 8,304
  • Options
    ara3nara3n Member Posts: 9,255
    LS-Retail POS form has timer and it's not fun debugging that form.

    It was even worse when we didn't have breakpoints.
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • Options
    SavatageSavatage Member Posts: 7,142
    blinking fields are possible but totally - not recommended.
    It came to mind after that post about setting the timerinterval with code.

    :evil:

    never use it on an editable field.

    I think I got this from Nelson Alberto from msbonline back in 2003 or so. :-k
  • Options
    David_SingletonDavid_Singleton Member Posts: 5,479
    Savatage wrote:
    blinking fields are possible but totally - not recommended.
    It came to mind after that post about setting the timerinterval with code.

    :evil:

    never use it on an editable field.

    I think I got this from Nelson Alberto from msbonline back in 2003 or so. :-k

    Yes I remember it back then, and it got the same reactions. If you like I can dig it up, and I am sure Erik will gladly donate that post to Luc.

    :mrgreen:
    David Singleton
  • Options
    ssinglassingla Member Posts: 2,973
    Never Mind...... It is still something to generate interest in the features of Navision which makes it stand so special in the crowd of other ERP's.
    CA Sandeep Singla
    http://ssdynamics.co.in
  • Options
    DenSterDenSter Member Posts: 8,304
    Generally, companies that are interested in purchasing an ERP system are not looking for blinking field functionality. I really don't think that the capability to have a blinking field will make NAV stand out in comparison to other ERP systems.... :-k
  • Options
    SavatageSavatage Member Posts: 7,142
    The only place I thought It might be useful was on the old Pre 4.0 versions.

    There were many posts about telling the difference between real & test companies. I thought A blinking field on the main menu saying "TEST" would be useful.

    But that's about it.
  • Options
    DenSterDenSter Member Posts: 8,304
    Right or if you want snowflakes to fall down on a christmas themed main menu for instance :mrgreen:
  • Options
    Miklos_HollenderMiklos_Hollender Member Posts: 1,598
    Way cool! Retro website compo :)

    What about a marquee?

    (TimerInterval: 50)

    IF CurrForm.TxtField.XPOS+CurrForm.TxtField.WIDTH<0 THEN BEGIN
    CurrForm.TxtField.XPOS:=CurrForm.WIDTH;
    END;
    CurrForm.TxtField.XPOS:=CurrForm.TxtField.XPOS-100;
Sign In or Register to comment.