Search found 6 matches

by chris0879
Tue Jun 02, 2015 1:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: SQLite insert data from variables: error unrecognized token
Replies: 4
Views: 5662

Re: SQLite insert data from variables: error unrecognized to

I solved:
after comma
VALUES (' " & Nome& " ',
omit
'
thanks anyway!
by chris0879
Tue Jun 02, 2015 1:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: SQLite insert data from variables: error unrecognized token
Replies: 4
Views: 5662

Re: SQLite insert data from variables: error unrecognized to

I can not see where it blocks the code!
This is a screenshot of the error!
thanks!
by chris0879
Tue Jun 02, 2015 12:20 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: SQLite insert data from variables: error unrecognized token
Replies: 4
Views: 5662

SQLite insert data from variables: error unrecognized token

this bis my code:




on mouseUp

databaseConnect

local tFname
put "myname" into Nome
put "myemail" into Mail

put getDatabaseID() into tDatabaseID


put "INSERT into contact_details (nome, email) VALUES (' " & Nome& " '," & Mail& "');" into tSQL




revExecuteSQL tDatabaseID, tSQL ...
by chris0879
Thu May 28, 2015 3:35 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: revBrowserOpenCef (close or exit from this browser)
Replies: 4
Views: 2758

Re: revBrowserOpenCef (close or exit from this browser)

on mouseUp

revbrowserclose tBrowserID
end mouseUp


//this error display

Type unknown browser id
Object Answer
Line revbrowserclose tBrowserID
Hint unknown browser id

thanks!
by chris0879
Thu May 28, 2015 3:15 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: revBrowserOpenCef (close or exit from this browser)
Replies: 4
Views: 2758

revBrowserOpenCef (close or exit from this browser)

how close the following browser?
on mouseUp

put revBrowserOpenCef(the windowId of this stack, "http ecc.ecc.") into tBrowserID

revBrowserSet tBrowserID, "rect", the rect of graphic "browserPlaceholder"

end mouseUp

which method to exit only the browser (revBrowserOpenCef) ?
Thanks in advance!!!