Search found 218 matches

by lemodizon
Mon May 19, 2025 1:22 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Bluetooth Printer
Replies: 7
Views: 6871

Re: Bluetooth Printer

Hi brattina01,

I was planning to create an Android app using LiveCode. Please see the sample design.
Image

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.
by lemodizon
Fri Apr 18, 2025 3:42 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Livecode (Andriod) - Bluetooth Printer Connection
Replies: 2
Views: 31751

Re: Livecode (Andriod) - Bluetooth Printer Connection

Hi Klaus,

Thanks for your reply. I hope LiveCode can add this feature in the next release.
by lemodizon
Mon Apr 07, 2025 1:10 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Livecode (Andriod) - Bluetooth Printer Connection
Replies: 2
Views: 31751

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...
by lemodizon
Mon Apr 07, 2025 11:26 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Bluetooth Printer
Replies: 7
Views: 6871

Re: Bluetooth Printer

Klaus wrote:
Fri Sep 20, 2024 9:42 am
Hi lemodizon,

maybe this thread will help you?
viewtopic.php?f=7&t=39185&p=230927&hili ... nt#p230927

Best

Klaus
Thanks Klaus, however I tried to run it android phone it does not run.
by lemodizon
Fri Sep 20, 2024 6:42 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Bluetooth Printer
Replies: 7
Views: 6871

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
by lemodizon
Mon Aug 26, 2024 4:06 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DATE filter using MS Access Database
Replies: 7
Views: 4290

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...
by lemodizon
Sat Aug 24, 2024 10:21 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DATE filter using MS Access Database
Replies: 7
Views: 4290

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...
by lemodizon
Sat Aug 24, 2024 9:42 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DATE filter using MS Access Database
Replies: 7
Views: 4290

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...
by lemodizon
Fri Aug 23, 2024 3:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: DATE filter using MS Access Database
Replies: 7
Views: 4290

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...
by lemodizon
Mon Aug 05, 2024 1:12 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Livecode Community
Replies: 1
Views: 2608

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.
by lemodizon
Sun Jul 28, 2024 5:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Datagrid (FORM)
Replies: 9
Views: 3807

Re: Datagrid (FORM)

Hi everyone,

Thanks everyone for the response.
by lemodizon
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: 6270

Re: How to set the background color in the data grid cell / row/ colum

bobcole wrote:
Fri Jul 12, 2024 8:46 pm
Stam 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
Hi bobcole

Thanks for the link post i will check on and try it.
by lemodizon
Sat Jul 13, 2024 4:54 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Datagrid (FORM)
Replies: 9
Views: 3807

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...
by lemodizon
Fri Jul 12, 2024 6:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Datagrid (FORM)
Replies: 9
Views: 3807

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...
by lemodizon
Thu Jul 11, 2024 1:55 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Number Format (decimal,comma)
Replies: 5
Views: 2521

Re: Number Format (decimal,comma)

Assuming that this is a money thing, the following works: on mouseUp ask "enter a number" with "12324567.89" if it is a number then set the itemDel to "." put item 1 of it into temp put item 2 of it into decimal switch case decimal = "" put ".00" into decimal break case the length of decimal = 1 pu...