Hi keliko,
thanks for the information.
I'll try the standalone web livecode
Search found 219 matches
- Thu Aug 07, 2025 7:41 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Bluetooth Printer
- Replies: 8
- Views: 9781
- Mon May 19, 2025 1:22 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Bluetooth Printer
- Replies: 8
- Views: 9781
Re: Bluetooth Printer
Hi brattina01,
I was planning to create an Android app using LiveCode. Please see the sample design.

The app will search for a device, connect to my Bluetooth printer, and then test a print sample.
However, I cannot find a tutorial or forum for this to guide me.
I was planning to create an Android app using LiveCode. Please see the sample design.

The app will search for a device, connect to my Bluetooth printer, and then test a print sample.
However, I cannot find a tutorial or forum for this to guide me.
- Fri Apr 18, 2025 3:42 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Livecode (Andriod) - Bluetooth Printer Connection
- Replies: 2
- Views: 33938
Re: Livecode (Andriod) - Bluetooth Printer Connection
Hi Klaus,
Thanks for your reply. I hope LiveCode can add this feature in the next release.
Thanks for your reply. I hope LiveCode can add this feature in the next release.
- Mon Apr 07, 2025 1:10 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Livecode (Andriod) - Bluetooth Printer Connection
- Replies: 2
- Views: 33938
Livecode (Andriod) - Bluetooth Printer Connection
Dear All, Good day. I am currently exploring tutorials or resources on establishing a Bluetooth connection between an Android phone and a portable printer using LiveCode. Specifically, I would like to test whether LiveCode can successfully print to my portable printer (please refer to the attached i...
- Mon Apr 07, 2025 11:26 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Bluetooth Printer
- Replies: 8
- Views: 9781
Re: Bluetooth Printer
Thanks Klaus, however I tried to run it android phone it does not run.Klaus wrote: ↑Fri Sep 20, 2024 9:42 amHi lemodizon,
maybe this thread will help you?
viewtopic.php?f=7&t=39185&p=230927&hili ... nt#p230927
Best
Klaus
- Fri Sep 20, 2024 6:42 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Bluetooth Printer
- Replies: 8
- Views: 9781
Bluetooth Printer
Hello everyone, Good day. I just bought portable Bluetooth printer and I want it to try in livecode platform. I'm planning to test this printer via android phone using livecode does anyone here tried a Bluetooth printer via android using livecode? hope you can help or guide me. thanks in advance
- Mon Aug 26, 2024 4:06 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DATE filter using MS Access Database
- Replies: 7
- Views: 4449
Re: DATE filter using MS Access Database
Hi Klaus, Your code works and I removed the the single quote in tSQL coz MS access will read the single quote. thank you very much Command SearchDates put getDatabaseID() into tDatabaseID put Field "Start Date" into tStart set itemdel to "/" put "#" & tStart & "#" into tStartdateForMCAccess // MS ac...
- Sat Aug 24, 2024 10:21 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DATE filter using MS Access Database
- Replies: 7
- Views: 4449
Re: DATE filter using MS Access Database
Hm, I have no idea about MS Access, do you have a MS Access management app, where you could try the SQL command? Know what I mean? Yes, I saw some old post here but I don't if it works https://forums.livecode.com/viewtopic.php?t=6173 i'm not sure if this is the cause of the problem http://msdn.micr...
- Sat Aug 24, 2024 9:42 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DATE filter using MS Access Database
- Replies: 7
- Views: 4449
Re: DATE filter using MS Access Database
Hi Lemon, do you get any error dialog or just an empty datagrid? Just chcked the internet for the date format of MS Access: ------------------------------------------------------------------------------------ ... Access automatically displays the date and time in the General Date and Long Time form...
- Fri Aug 23, 2024 3:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: DATE filter using MS Access Database
- Replies: 7
- Views: 4449
DATE filter using MS Access Database
Hi Everyone, I'm trying to create an application that will display the records by entering the two DATES but i'm having an error and it won't display the records. I don't know if the DATE format is the problem or my code. DateFilter.png on mouseUp DBConn SearchDates end mouseUp local tDatabaseID,sDa...
- Mon Aug 05, 2024 1:12 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Livecode Community
- Replies: 1
- Views: 2705
Livecode Community
Hello everyone
I just want to ask what is the last version of livecode community released?
and where i can download it. hope you can give me a link to download it.
thanks.
I just want to ask what is the last version of livecode community released?
and where i can download it. hope you can give me a link to download it.
thanks.
- Sun Jul 28, 2024 5:01 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Datagrid (FORM)
- Replies: 9
- Views: 3981
Re: Datagrid (FORM)
Hi everyone,
Thanks everyone for the response.
Thanks everyone for the response.
- Sat Jul 13, 2024 4:58 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: How to set the background color in the data grid cell / row/ colum
- Replies: 14
- Views: 6543
Re: How to set the background color in the data grid cell / row/ colum
Hi bobcolebobcole wrote: ↑Fri Jul 12, 2024 8:46 pmStam once post a stack that may contain an answer to the question.
See this post:
viewtopic.php?f=7&t=37222&p=217243&hili ... ed#p217233
Bob
Thanks for the link post i will check on and try it.
- Sat Jul 13, 2024 4:54 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Datagrid (FORM)
- Replies: 9
- Views: 3981
Re: Datagrid (FORM)
I think the problem is with your repeat loop. repeat for each line tLine in tlist if item 1 of tlist is a number then put item 2 of tlist into theDataA[1]["FirstName"] put item 3 of tlist into theDataA[1]["Title"] put theImageFolder & "close_window_48px.png" into theDataA[1]["Image URL"] end if end...
- Fri Jul 12, 2024 6:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Datagrid (FORM)
- Replies: 9
- Views: 3981
Datagrid (FORM)
Hi everyone, Good day. I'm practicing the datagrid (FORM) I'm trying to display all the data from my database using datagrid form but it display only the 1st record. i tried using repeat i think there is wrong in my code. hope you can help me thanks in advance here is my code command uiPopulatePeopl...