If InStr(HVACReadGrid.getValue(0,1),"GreyBox") > 0 Then
HVACReadGrid.setValue(0,1,"<img width=35 height=35 src='GreenTick.png' id='HVACReadGrid_0_1'>")
Else
HVACReadGrid.setValue(0,1,"<img width=35 height=35 src='GreyBox.png' id='HVACReadGrid_0_1'>")
End If
This may be unrelated, but I have found that after a full deploy to my server, some image files will pause a short second or two before appearing on a form. I’ve thought this could be because Chrome might not have it downloaded, and says “oops” better get that pronto. After this happens there is no short time blank image area again until I do another full deploy.
If you open the chrome inspector and go to the network tab, clear it, then open your app, you’ll see exactly what is downloaded when. That may answer your curiosity. If this delay is not acceptable, then you may want to consider predownloading the images before going to this form, for example, during the time you are showing the initial logo screen at startup.