VB CODE TO MAKE CELLS FLASH IN CC PULSE

Hi

Does anyone have the VB code required to make the cells flash in CC PUlse when thresholds are reached? Would be very grateful if you could let me have a copy ;D

why does it need to flash ??? is bright red not visible enough for when thresholds are breached? ???

1 Like

I thought that bright red would be enough, although this is one of the many strange requests I get? I know it is possible will have to take time away and design something I think. Cheers

1 Like

I made the rookie mistake of mentioning the flashing colours and have been asked to look into it too :-[

If I come up with something i’ll post it, if you come up with something can you?

;D will do ;D

This is not a clean blink and you would need to modify it to suit the selected metric to make sure the 3 seconds works well with your update frequency etc. but, its a rough idea if you are desperate enough for it.

if Threshold.StatValue = StatAction.SDNALoggedOut then
if Second(Now()) Mod 3 > 0 then
Threshold.Result = true
else
Threshold.Result = false
end if
end if

1 Like

cool,

ill have a play with that one today

2 Likes

Cool, thanks for that will have a go later today ;D ;D