J
Jacinda
Hi, I would like to set up a ticker on the footer of a form for my production
team.
The data would be updated from the front office, and viewed on their screen...
It's just a blank form, with orders that are due on the top, I wanted to
have a unbound scrolling ticker in the footer for special notes/
announcements etc.
I found the code below, but I think I'm missing something because it is not
"scrolling"
So from the ground up, can someone explain what I need to have on the back
end and on the front end...
thanks
if pos < len(allbidstextbox) then
pos = pos +1
if pos > 1 then
frontEnd = mid(allbidstextbox, pos-1)
else
frontEnd = vbNUllString
end if
else
pos = 1
frontEnd = vbNUllString
end if
tickertextbox = Mid(allbidstextbox, pos) & frontEnd
team.
The data would be updated from the front office, and viewed on their screen...
It's just a blank form, with orders that are due on the top, I wanted to
have a unbound scrolling ticker in the footer for special notes/
announcements etc.
I found the code below, but I think I'm missing something because it is not
"scrolling"
So from the ground up, can someone explain what I need to have on the back
end and on the front end...
thanks
if pos < len(allbidstextbox) then
pos = pos +1
if pos > 1 then
frontEnd = mid(allbidstextbox, pos-1)
else
frontEnd = vbNUllString
end if
else
pos = 1
frontEnd = vbNUllString
end if
tickertextbox = Mid(allbidstextbox, pos) & frontEnd