Patrick
Search found 6 matches
- Fri Feb 17, 2012 1:17 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tasklist sample
- Replies: 8
- Views: 5636
Re: Tasklist sample
Hi Mark - awesome! Worked like a charm! Thanks again to you and Jacque 
Patrick
Patrick
- Thu Feb 16, 2012 7:33 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tasklist sample
- Replies: 8
- Views: 5636
Re: Tasklist sample
Hi Jacque,
Thanks for that - really appreciate your responses
I'll go fish around a few places to see if I can find something.
Thanks again,
Patrick
Thanks for that - really appreciate your responses
Thanks again,
Patrick
- Wed Feb 15, 2012 3:58 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tasklist sample
- Replies: 8
- Views: 5636
Re: Tasklist sample
Hi Jacque,
Thanks for the response :) This is the update handler in the stack:
on updateTask pTaskID, pTitle, pDescription, pCompleted
## Build the SQL update statement
## Execute it
put "UPDATE tasks SET " into tSQL
if pTitle <> empty then put "title='" & pTitle & "'," after tSQL
if ...
Thanks for the response :) This is the update handler in the stack:
on updateTask pTaskID, pTitle, pDescription, pCompleted
## Build the SQL update statement
## Execute it
put "UPDATE tasks SET " into tSQL
if pTitle <> empty then put "title='" & pTitle & "'," after tSQL
if ...
- Mon Feb 13, 2012 6:25 am
- Forum: Databases
- Topic: Modifying the database from the training sample
- Replies: 0
- Views: 2005
Modifying the database from the training sample
Hi all,
I am trying to modify the database set up used in the tutorials, but have hit a small problem (I've no idea if it's small really). This is what I am trying to achieve:
1. User selects from three different categories.
2. I each category are 20 'essays' they can read.
3. Once they have read ...
I am trying to modify the database set up used in the tutorials, but have hit a small problem (I've no idea if it's small really). This is what I am trying to achieve:
1. User selects from three different categories.
2. I each category are 20 'essays' they can read.
3. Once they have read ...
- Sun Feb 12, 2012 10:09 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tasklist sample
- Replies: 8
- Views: 5636
Re: Tasklist sample
Hi Jacque,
Thanks for the response, and apologies in advance if this isn't the right info, but I think this is it (it's taken directly from the lesson 6 files in the beginners course )
on mouseUp
## Check which task we want to delete
## using the custom property set on this card when we ...
Thanks for the response, and apologies in advance if this isn't the right info, but I think this is it (it's taken directly from the lesson 6 files in the beginners course )
on mouseUp
## Check which task we want to delete
## using the custom property set on this card when we ...
- Sun Feb 12, 2012 5:17 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tasklist sample
- Replies: 8
- Views: 5636
Tasklist sample
Hi,
I have been looking through the videos for creating the tasklist app (very good btw), and am trying to modify it for my purposes. Hit a bit of a speed bump though - if the user enters an apostrophe in the description field, the change isn't recorded. If it's escaped as a double apostrophe, it ...
I have been looking through the videos for creating the tasklist app (very good btw), and am trying to modify it for my purposes. Hit a bit of a speed bump though - if the user enters an apostrophe in the description field, the change isn't recorded. If it's escaped as a double apostrophe, it ...