Search found 34 matches
- Mon Jun 17, 2013 11:07 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Multiple resolutions, resize stack a solution
- Replies: 38
- Views: 45918
Re: Multiple resolutions, resize stack a solution
G'day, and thank you Simon for the reSizer script. I've written a stack that I wanted to run on 11", 13", & 15" notebooks, at 610 x 800, and also on an iPad at 768 x 800, so I had to re-write the reSizer so it only shrank vertically if on a smaller notebook, but resized horizontally on an iPad. Also...
- Fri Jun 14, 2013 3:06 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: how can I print a card from iPad?
- Replies: 2
- Views: 2542
Re: how can I print a card from iPad?
G'day I've found the mergExt site, and purchased the mergDoc extension. However, I have some questions about it. I can't yet test it's output, as I'm only running on the simulator, but... 1. How can I change the output PDF's from the name 'test.pdf'. 2. Is my code below correct? (the included exampl...
- Thu Jun 13, 2013 7:12 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: how can I print a card from iPad?
- Replies: 2
- Views: 2542
how can I print a card from iPad?
G'day coders I've got a project that's working fine on mac OS, but am trying to get it to work on iOS (iPad). Everything's OK except for printing on the simulator. Before I pay to enable it to be run on an actual iPad, I have two questions. 1. Can a PDF be created of a given card, and sent by email?...
- Sun Jun 09, 2013 3:52 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
Thanks Klaus, now I understand. I had been reading the SQLite site blurb that said you could use a data base name, then a full stop, then a table name. My final code is this... #set up variables etc, then, put true into transferFlag put empty into errormessage # GET THE MATCHING DATA get revDataFrom...
- Sat Jun 08, 2013 6:55 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
Note: if I leave the single quotes off the DataBase name, i get an 'Error near "." ' With the quotes, the error is 'No such table: runrevPDQuoteTemp.sqlite.Jobs_Calculations' I've checked, and the database and table definitely exist. The tSQL code for my efforts is... INSERT INTO 'runrevPDQuoteTemp....
- Sat Jun 08, 2013 4:11 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
Well, I've worked out that I need to address the data bases by name, but struck a further problem. Because the database names end in .sqlite then the code throws a 'no table of that name' error. I've tried enclosing the name in single and double quotes, without success. Anyone able to advise me of t...
- Sat Jun 08, 2013 1:34 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
Thanks Klaus, but darn, this is difficult! I cannot get the Id of the database to work. I get a syntax error near 87. Heres the tSQL code INSERT INTO 87 Jobs_Calculations ( jobcard, word3ofcard, word4ofcard, jobdescription, jobdate, squares, meterssquared, cost1, cost2, cost3, cost4, squaresrate, su...
- Fri Jun 07, 2013 3:29 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
To elaborate. I have a series of data bases, based on years. runRevPDQuote2013, runRevPDQuote2014, runRevPDQuote2015, etc I need to copy records from any one of these that's currently in use, and copy those records to any of the other data bases. They all have the same tables, and column headers, bu...
- Fri Jun 07, 2013 2:52 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
G'day Klaus That partly worked, but it added the records into the same data base. I need it to point to a different data base, that's why I added the paths. Something like ... put "INSERT INTO" && "runrevPDQuote" & label of button "Transfer List" &".sqlite" &" "& stackName && "(" into tSQL Which doe...
- Fri Jun 07, 2013 2:24 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Re: Requesting help with SQL error
Thanks Klaus. I tried Answer tSQL but with my limited knowledge could not see anything wrong. Here's the tSQL string INSERT INTO /Users/ozsanta/Documents/runrevPDQuote2015.sqlite..Jobs_Calculations ( jobcard, word3ofcard, word4ofcard, jobdescription, jobdate, squares, meterssquared, cost1, cost2, co...
- Fri Jun 07, 2013 1:38 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Requesting help with SQL error
- Replies: 11
- Views: 6811
Requesting help with SQL error
G'day I've got a series of yearly data bases that I'm trying to transfer records between. However, I get a 'near "/": syntax error', which I cannot resolve. My code is below. Any suggestions please? Regards Santa on dbTransferJob if stackName = empty then put "Jobs_Calculations" into stackName end i...
- Tue Jun 04, 2013 11:55 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How do I set up an'About' menu in stand alone?
- Replies: 36
- Views: 20442
Re: How do I set up an'About' menu in stand alone?
G'day all
Thanks for the short version of the menupick handler Klaus, I hadn't realized that multiple cases could be used before each break.
No, I DON'T think my menuStack handler is a problem, it works flawlessly once you use 'About...' with 3 full stops.
Regards
Santa
Thanks for the short version of the menupick handler Klaus, I hadn't realized that multiple cases could be used before each break.
No, I DON'T think my menuStack handler is a problem, it works flawlessly once you use 'About...' with 3 full stops.
Regards
Santa
- Tue Jun 04, 2013 3:26 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Print command not printing correct size with Brother printer
- Replies: 3
- Views: 3437
Re: Print command not printing correct size with Brother pri
It's OK. I had reverted everything back to the LC default font, and it simply refuses to print larger sizes. I've swapped to Time New Roman, to make it compatible with windows, and now it's fine.
Regards
Santa
Regards
Santa
- Tue Jun 04, 2013 1:39 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Print command not printing correct size with Brother printer
- Replies: 3
- Views: 3437
Print command not printing correct size with Brother printer
G'day I've pretty much finished a set of stacks for a painter & decorator friend, and the pages print ok on my Epson inkjet printer and Fuji Xerox laser, but when I tried the stack on my friends new all-in-one Brother commercial inkjet, the large header font only printed very small (about 16 point),...
- Tue Jun 04, 2013 9:29 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How do I set up an'About' menu in stand alone?
- Replies: 36
- Views: 20442
Re: How do I set up an'About' menu in stand alone?
G'day all I believe I've partly solved the problem, Someone, in their infinite wisdom, has replaced the normal Ellipsis with three full stops in LiveCodes 'About…' menu . I tried Klaus's suggestion of putting in an 'answer pItemName' and it trapped 'About...', however on using this... on menuPick pI...