mscomm un
InputLen = 0
RThreshold = 1
property leri yukarıdaki gibi olsun..
dim buffer as string 'bu global veya static değişken olacak
alttaki kodlar mscomm un oncomm eventine yazılacak.
Kendine göre düzenlersin..
private sub comm_oncomm
dim i as string
dim stmp as string
do
buffer = buffer & uart.Input
i = instr (buffer, vbcrlf)
if i > 0 then
stmp = left(buffer, i-2)
buffer = mid(buffer , i+2)
i = instr(stmp , "(")
if i > 0 then
vsgrid.additem left(stmp, i-1) & vbtab &mid(stmp ,i)
else
vsgrid.additem stmp
end if
else
exit do
end if
loop until buffer = ""
end sub
InputLen = 0
RThreshold = 1
property leri yukarıdaki gibi olsun..
dim buffer as string 'bu global veya static değişken olacak
alttaki kodlar mscomm un oncomm eventine yazılacak.
Kendine göre düzenlersin..
private sub comm_oncomm
dim i as string
dim stmp as string
do
buffer = buffer & uart.Input
i = instr (buffer, vbcrlf)
if i > 0 then
stmp = left(buffer, i-2)
buffer = mid(buffer , i+2)
i = instr(stmp , "(")
if i > 0 then
vsgrid.additem left(stmp, i-1) & vbtab &mid(stmp ,i)
else
vsgrid.additem stmp
end if
else
exit do
end if
loop until buffer = ""
end sub
Son düzenleme: