Hi guys
I am trying to add some images to my database processing script so when a figure is reached a tick image shows, if the figure is not reached a red cross shows until that figure is reached.
With each data input this bit gets called, it checks the count
If $count > 25 Then
GUICtrlCreatePic("tick.jpg", 130, 170, 13, 13)
Else
GUICtrlCreatePic("cross.jpg", 130, 170, 13, 13)
EndIf
It works perfectly fine but starts to slow down after about 300 entries? is it putting an image on an image each time? should I be doing something else?
I am trying to add some images to my database processing script so when a figure is reached a tick image shows, if the figure is not reached a red cross shows until that figure is reached.
With each data input this bit gets called, it checks the count
If $count > 25 Then
GUICtrlCreatePic("tick.jpg", 130, 170, 13, 13)
Else
GUICtrlCreatePic("cross.jpg", 130, 170, 13, 13)
EndIf
It works perfectly fine but starts to slow down after about 300 entries? is it putting an image on an image each time? should I be doing something else?