Hi, my problem is that i'm using an aplication to read the data in the TCP/IP port and send it to excel using DDE(Dynamic Data Exchange) . The aplication is "TWedge",
So what i need is a macro to keep seeing the data on the screen when new data is placed in a row because the program does not simulate keystrokes. Thanks .
So far i've tried this code, but it only works when i execute it.
Sub Scroll()
Dim i As Long: i = 1
Do While Len(Cells(i, "A").Value2) > 0
ActiveWindow.ScrollRow = i
i = i + 1
Loop
So what i need is a macro to keep seeing the data on the screen when new data is placed in a row because the program does not simulate keystrokes. Thanks .
So far i've tried this code, but it only works when i execute it.
Sub Scroll()
Dim i As Long: i = 1
Do While Len(Cells(i, "A").Value2) > 0
ActiveWindow.ScrollRow = i
i = i + 1
Loop