Still adding data to table fields

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
Glenn Boyce
Posts: 137
Joined: Thu Jul 24, 2008 11:22 pm

Still adding data to table fields

Post by Glenn Boyce » Wed May 06, 2009 5:23 am

See my previous topic

Now I want to put information into column 4 of the same table and am using the code below. The time in column 1 ends up after the reason in column 4. Why doesn't it understand the set itemdelimiter. Incidentally the ist issue I had has resolved itself although I'm not sure why. I remembered eventually to change the time to seconds to perform the subtraction but I still don't know why the second time suddenly started going into the correct column. i hadn't changed the code?

Code: Select all

on mouseup
  set itemdelimiter to tab
  put the label of me into item 4 of line glineNo of fld "Log"
  hide grp "downtime"
end mouseup

Post Reply