Search found 731 matches
- Mon Sep 15, 2025 1:35 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Why this message between end preOpenCard and start on OpenCard?
- Replies: 4
- Views: 610
Re: Why this message between end preOpenCard and start on OpenCard?
Yep I am Nederlands. Of coarse i also asked AI the same question and it came with the following answer. So I will be investigating this. I seems that the used DataGrid could be a reazon for my issues. Looking at your LiveCode error message, this appears to be debug or trace output from the LiveCode ...
- Mon Sep 15, 2025 10:57 am
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Why this message between end preOpenCard and start on OpenCard?
- Replies: 4
- Views: 610
Why this message between end preOpenCard and start on OpenCard?
Hello fellow LC developers. I am investing a lot of time in finishing an application but now i get the following information in the Message box and ik have no idea where it is coming from. The message is invoked between the end of the preOpenCard and the beginning of the on OpenCard. Does any of you...
- Thu Mar 13, 2025 7:35 am
- Forum: Talking LiveCode
- Topic: Simple CSV to DataGrid Command
- Replies: 15
- Views: 43583
Re: Simple CSV to DataGrid Command
LOL, love it.
So yes you are all correct.
CSV is not the best way to go but i needed it, and I wanted an easy way to populate an manipulate a DataGrid.
Maybe some one can make a better and more versitile and especially easy to use version ?!
If you do, please post it here?
Regards,
Paul
So yes you are all correct.
CSV is not the best way to go but i needed it, and I wanted an easy way to populate an manipulate a DataGrid.
Maybe some one can make a better and more versitile and especially easy to use version ?!
If you do, please post it here?
Regards,
Paul
- Wed Mar 12, 2025 6:32 pm
- Forum: Talking LiveCode
- Topic: Simple CSV to DataGrid Command
- Replies: 15
- Views: 43583
Simple CSV to DataGrid Command
Hello LC friends, For those who are interested and want to have a simple way to add CSV file data to a datagrid you can use this code. I was in need of a very simple way to create a datagrid and add, change and remove data So i made the below routine for this. I can probably be improved a lot but it...
- Thu Jan 30, 2025 3:02 pm
- Forum: Talking LiveCode
- Topic: Windows copy paste does not work as it should (bug?)
- Replies: 4
- Views: 13968
Re: Windows copy paste does not work as it should (bug?)
Hi bogs, It does work, however after a while I cannot copy paste between Windows environment and LC Application and vice versa. It seems like there is a memory buffer getting full and if that happens I cannot copy paste between Windows environment and LC Application and vice versa. Your suggestion i...
- Wed Jan 29, 2025 10:20 am
- Forum: Talking LiveCode
- Topic: Windows copy paste does not work as it should (bug?)
- Replies: 4
- Views: 13968
Windows copy paste does not work as it should (bug?)
Hi everyone, I have the issue on Windows with LiveCode 10.0.1 (rc 2) that Copy and Paste (CTRL-C and CTRL-V) does not work if I want to copy something e.g. code from the LiveCode environment into e.g. Windows Notepad and vice versa. Is there a setting that prohibits this? Or is it a bug? Also, Copy ...
- Sun Jan 26, 2025 4:31 pm
- Forum: Talking LiveCode
- Topic: Take Screenshot on other monitor (Solved)
- Replies: 11
- Views: 14349
Re: Take Screenshot on other monitor
Found the issue
U should have left out 'effective working' from the following statement
This does work.

U should have left out 'effective working' from the following statement
Code: Select all
put the effective working screenRects into tAllScreens
Code: Select all
put the screenRects into tAllScreens
- Sun Jan 26, 2025 4:03 pm
- Forum: Talking LiveCode
- Topic: Take Screenshot on other monitor (Solved)
- Replies: 11
- Views: 14349
Re: Take Screenshot on other monitor
Ooops, Cheered to soon.. :o Even with the same code I get a different line for my main monitor that that I get when I move the app around over different monitors. :shock: The First line in the pulldownmenu should be the same as the shown monitor information the App is on. ScreeenshotApp_v1.jpg on pr...
- Sun Jan 26, 2025 2:57 pm
- Forum: Talking LiveCode
- Topic: Take Screenshot on other monitor (Solved)
- Replies: 11
- Views: 14349
Re: Take Screenshot on other monitor
Thanks guy's ! Got it working as intended. The intension was: 1) Enable the user to select a monitor to take a snapshot from and identify that monitor 2) If the app is runninig on that same monitor make it invisible for taking the snapshot and after 1 second make it visible again so the app is not i...
- Sat Jan 25, 2025 4:40 pm
- Forum: Talking LiveCode
- Topic: Take Screenshot on other monitor (Solved)
- Replies: 11
- Views: 14349
Re: Take Screenshot on other monitor
Thank (dankjewel) Klaus, Almost there, Now I need to know at which of the three lines my stack is at because i have three monitors (including the laptop monitor) effective working screenRect allways gives me the screenrect of the main monitor (laptop) and not he screenrect of the monitor the stack i...
- Sat Jan 25, 2025 3:28 pm
- Forum: Talking LiveCode
- Topic: Take Screenshot on other monitor (Solved)
- Replies: 11
- Views: 14349
Take Screenshot on other monitor (Solved)
Hello LC specialist. For me it is afternoon so good afternoon :D . Does anybody know how to make a snapshot of a screen on another monitor than my main monitor. My application is placed on a second monitor and I want to make a snaphot of the screen of that monitor, however it keeps taking a snapshot...
- Sat Jan 25, 2025 3:15 pm
- Forum: Internet
- Topic: Delete URL with data (and Patch)
- Replies: 3
- Views: 21636
Re: Delete URL with data (and Patch)
I solved it with a shell command so I could use the original curl command.
See my post. https://www.forums.livecode.com/viewtop ... =9&t=39560
Regards,
Paul
See my post. https://www.forums.livecode.com/viewtop ... =9&t=39560
Regards,
Paul
- Wed Jan 22, 2025 9:15 am
- Forum: Talking LiveCode
- Topic: No tsNetDeleteSync function how to delete ? (Solved with shell)
- Replies: 2
- Views: 12787
Re: No tsNetDeleteSync function how to delete ? Solved
For those who are interested. I got it solved an running but without tsNet functionality. What I did is make use of the shell functionality in livecode to run a PowerShell script. This makes it so much easier because I can run the script as a curl script (which Windows, Linux and Mac support with sl...
- Tue Jan 21, 2025 2:13 pm
- Forum: Internet
- Topic: Delete URL with data (and Patch)
- Replies: 3
- Views: 21636
Re: Delete URL with data (and Patch)
Hi pink, I could not get the DELETE request via tsNetCustomSync working , however mayby in your case it works because I get a server error which could not be a code issue. For more information on the tsNet functionality see: https://www.techstrategies.com.au/tsnet-command-list/ I have the following ...
- Tue Jan 21, 2025 11:40 am
- Forum: Talking LiveCode
- Topic: No tsNetDeleteSync function how to delete ? (Solved with shell)
- Replies: 2
- Views: 12787
Re: No tsNetDeleteSync function how to delete ?
No answers yet from any of the LiveCode experts ? Here is some additional information and a piece of script. I get the following debug information, The server does not seem to be able to cope with the additional information I send in the tSettings variable. But tsNetCustomSync needs to have those se...