Yes, part of the group, but out of sight (beyond the bounds of the group).
No idea about memory usage.
Search found 162 matches
- Wed Nov 23, 2011 4:13 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: which control to use ?
- Replies: 3
- Views: 5067
- Wed Nov 23, 2011 3:44 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: which control to use ?
- Replies: 3
- Views: 5067
Re: which control to use ?
You could do a couple of things:
1. a chart/graph - I do something similar where the chart is a set width and I provide buttons to scroll the dates. When the user advances the date I query the data again (a db backend), and redraw the graph with new start and end dates.
2. a group that has locked ...
1. a chart/graph - I do something similar where the chart is a set width and I provide buttons to scroll the dates. When the user advances the date I query the data again (a db backend), and redraw the graph with new start and end dates.
2. a group that has locked ...
- Wed Oct 26, 2011 3:29 am
- Forum: Databases
- Topic: Sqlite encyption
- Replies: 79
- Views: 122370
Re: Sqlite encyption
What RunRev needs to do is license the encryption extension. Real Software did it for Real Studio/Real BASIC so licensing for an IDE, and its users, by the developer of the IDE is not unprecedented.
http://www.hwaci.com/sw/sqlite/see.html
http://www.hwaci.com/sw/sqlite/see.html
- Wed Oct 19, 2011 8:15 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Advanced Database usage questions
- Replies: 4
- Views: 6463
Re: Advanced Database usage questions
I'm not clear on your table structure.
- Wed Oct 12, 2011 4:07 am
- Forum: Off-Topic
- Topic: LiveCode 5: Trial Download
- Replies: 14
- Views: 19534
Re: LiveCode 5: Trial Download
Not sure how things could be worse than no mention at all in the release notes.
- Wed Oct 12, 2011 4:03 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: hilighting text
- Replies: 8
- Views: 9470
Re: hilighting text
select character 5 to 10 of field 1
- Wed Oct 12, 2011 2:23 am
- Forum: Off-Topic
- Topic: LiveCode 5: Trial Download
- Replies: 14
- Views: 19534
Re: LiveCode 5: Trial Download
I want to see how well it really is and if you finally fixed the long standing major issue of lacking versioning support / versioning usability with LiveCode 5 or if its still an closed little world on its own not meant for 2+ developers at all
At least according to the Release Notes nothing has ...
- Fri Oct 07, 2011 1:38 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How do I read table field names?
- Replies: 8
- Views: 14208
Re: How do I read table field names?
My mistake. revDatabaseColumnNames returns a comma-delimited string not a return-delimited one so put the following after your revDatabaseColumnNames call...
That will make it work with the repeat loop you've already constructed.
Code: Select all
replace comma with return in pptext- Thu Oct 06, 2011 1:58 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How do I read table field names?
- Replies: 8
- Views: 14208
Re: How do I read table field names?
put "INSERT INTO Mood (" into sqlQuery
put empty into tFieldNames
--add this bit
put empty into tFieldValues
put revDatabaseColumnNames(conID, "control") into pptext
repeat for each line linColumn in pptext
put tFieldNames & linColumn & "," into tFieldNames
--put "'"& tFieldNames ...
- Mon Oct 03, 2011 3:25 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How do I read table field names?
- Replies: 8
- Views: 14208
Re: How do I read table field names?
Off the top of my head....
put "INSERT INTO Mood (" into sqlQuery
put empty into tFieldNames
put revDatabaseColumnNames(conID, "control") into pptext
repeat for each line linColumn in pptext
put tFieldNames & linColumn & "," into tFieldNames
end repeat
repeat while the last character of ...
put "INSERT INTO Mood (" into sqlQuery
put empty into tFieldNames
put revDatabaseColumnNames(conID, "control") into pptext
repeat for each line linColumn in pptext
put tFieldNames & linColumn & "," into tFieldNames
end repeat
repeat while the last character of ...
- Mon Oct 03, 2011 1:24 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: How do I read table field names?
- Replies: 8
- Views: 14208
Re: How do I read table field names?
revDatabaseColumnNames will give you the names of the columns in a recordset.
- Sat Oct 01, 2011 4:14 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Script Editor features
- Replies: 35
- Views: 42333
Re: Script Editor features
Also, it can be a bit confusing because the menu names don't change much, but if you go to the 'LiveCode' menu it will be populated with GLX2 stuff instead.
Of particular note will be the GLX2 preferences.
Of particular note will be the GLX2 preferences.
- Sat Oct 01, 2011 4:10 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Script Editor features
- Replies: 35
- Views: 42333
Re: Script Editor features
If you hover the cursor over it, there's probably a message like "Using LiveCode Script Editor..."
There should also be a "GLX2" all the way to the right. Hover over that, and there should be a "Click to start using..." message.
Click the GLX2 'button' and it will be the script editor when you ...
There should also be a "GLX2" all the way to the right. Hover over that, and there should be a "Click to start using..." message.
Click the GLX2 'button' and it will be the script editor when you ...
- Sat Oct 01, 2011 1:40 am
- Forum: Off-Topic
- Topic: Anyone using ScreenSteps
- Replies: 3
- Views: 6569
Re: Anyone using ScreenSteps
I'm using, but so far the documentation is small.
It will grow, of course, but I fully expect the tags, statuses, and manuals to keep it organized enough to keep me no more insane than I currently am.
It will grow, of course, but I fully expect the tags, statuses, and manuals to keep it organized enough to keep me no more insane than I currently am.
- Mon Sep 26, 2011 8:04 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How to view individual card in a stack?
- Replies: 5
- Views: 6392
Re: How to view individual card in a stack?
The usual metaphor, although it is extremely dated, is one of a rolodex/card file, where the stack is the rolodex/card holder, and each card is an individual...well, card. I suppose one of a website as the stack with cards as pages might work as well, and be more current. Hadn't thought of it that ...