Search found 83 matches
- Sat Jul 12, 2014 4:12 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Check for newer file/replace old
- Replies: 2
- Views: 2836
Re: Check for newer file/replace old
Here is how I am doing this on my application. My splash application calls a web service on the applications website that I use and tests the value of the returned value from the web service to the custom property of the application. If they do not match then the splash screen will: If the custom pr...
- Sat Jul 12, 2014 4:02 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: matching 2 variables in repeat loop
- Replies: 2
- Views: 2734
matching 2 variables in repeat loop
In previous version of livecode up to 6.6.1 the following code used to work in my project but now that I updated to 6.6.2 it does not. repeat for each line L in tFiles if L contains gMainProgramArchiveName then put true into tMainAppDownload end if end repeat The value of tFiles is a directory listi...
- Sat May 10, 2014 1:33 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Error Message Received
- Replies: 3
- Views: 3621
Re: Error Message Received
I have not used any handler by the name of either cRevGeneral or revProvile within the application. I do have some loops and will have to check them to make sure they are complete. Manily I am using loops to pull populate information into my datagrid and combo boxes so users can just select from the...
- Sat May 10, 2014 12:16 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Error Message Received
- Replies: 3
- Views: 3621
Error Message Received
In the application I have started to get an error message when in development mode that I am unable to figure out.
The error message is:
The handler: cRevGeneral has reached the recursion limit of: 400000. Execution will be terminated to prevent hung.
Any insight on this?
The error message is:
The handler: cRevGeneral has reached the recursion limit of: 400000. Execution will be terminated to prevent hung.
Any insight on this?
- Mon Apr 21, 2014 2:34 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
Terry, Where did you acquire this "LiveCode Data Grid pdf" from? In my development of creating applications, I use the Dictionary, Tutorials, Resources from the IDE. Once I added this Data Grid Template Decoy to my Splash Screen Application, built a new application and ran it, the Data Grid on the O...
- Mon Apr 21, 2014 2:21 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
Simon, This is very interesting as on the line 508 it should have already downloaded the stack from the internet and extracted it. I guess it is time to go back to the drawing board. I will try and understand the next post and see where I get. As with every new thing I try and do, I will overcome at...
- Fri Apr 18, 2014 1:03 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
Hi Graham, Can you post your stack here. Much easier for us to debug. Simon Simon, I sent you a PM with the information. The settings are for my machine which is tied to GitHub for Repository and allows me to delete directories easy as I go through a 3 stage application development procedure to mak...
- Thu Apr 17, 2014 9:10 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
No at this time this is a Desktop Application but once I get it working for the Desktop, I am wanting to create an iPad/Tablet Application. The application will not work on an iPhone due to the screen size.
- Thu Apr 17, 2014 3:28 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
Well after working on this for the past 2 days, I am about to give up. At this point, I have deleted the DataGrid from the card and also removed the associated card within the Data Grid Templates stack. I have added a new DataGrid to the card of the stack and named it the same name as before so all ...
- Wed Apr 16, 2014 6:39 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
Re: DataGrid Inquiry
Thanks for the reply and sorry it took awhile as I just finished up with Tax Day here in the States. When I posted the inquiry, I had the code on the group of the DataGrid with the mouseDown section and noticed that when I created the standalone the code within the mouseDown did not work so I starte...
- Sun Apr 13, 2014 8:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DataGrid Inquiry
- Replies: 12
- Views: 9948
DataGrid Inquiry
I am working with the Data Grid and trying to understand why when the application has been created as a standalone the datagrid does not work. When the application is ran in development mode, and I click on a record in the datagrid the answer will display the row of the record. Now when I compile th...
- Fri Apr 04, 2014 1:44 am
- Forum: Databases
- Topic: revQueryDatabase inquiry
- Replies: 2
- Views: 3746
Re: revQueryDatabase inquiry
I figured it out. The command returns a recordSetID then I use another Database Command to get the results from the record set. I ma not used to these extra steps. But it was a good learning experience.
- Fri Apr 04, 2014 1:28 am
- Forum: Databases
- Topic: revQueryDatabase inquiry
- Replies: 2
- Views: 3746
revQueryDatabase inquiry
I am trying to use this in my application but when I issue revQueryDatabase(gDatabaseID, tSQL) I get an error message that says: stack "ApplicationName": execution error at line 214 (Handler: can't find handler) near "revQueryDatabase", char 1 gDatabaseID has a value of 6 tSQL has a value of Select ...
- Thu Mar 27, 2014 6:33 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Centering Card ontop of another card
- Replies: 2
- Views: 2615
Centering Card ontop of another card
I have a primary stack that is 562W x 732H and has 3 card within it. I have a substack of this primary stack that has a size of 400W x 400H. My question is when I click a button to show the substack, how can I center it on the primary stack? The idea is to allow the user to click a button and have a...
- Thu Mar 20, 2014 9:47 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Functions - Trying to wrap brain around this
- Replies: 5
- Views: 4185
Functions - Trying to wrap brain around this
In my application development, I use functions with actionscript but having issues with a function in Livecode. To save me time in creating a custom popup box in my application, I am wanting to do with with a function so I can pass string parameters to the function but at this time it is not working...