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
Search found 729 matches
- Thu Mar 13, 2025 7:35 am
- Forum: Talking LiveCode
- Topic: Simple CSV to DataGrid Command
- Replies: 15
- Views: 35465
- Wed Mar 12, 2025 6:32 pm
- Forum: Talking LiveCode
- Topic: Simple CSV to DataGrid Command
- Replies: 15
- Views: 35465
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: 9083
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: 9083
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: 8474
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: 8474
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: 8474
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: 8474
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: 8474
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: 16382
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: 7899
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: 16382
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: 7899
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...
- Mon Jan 20, 2025 5:53 pm
- Forum: Talking LiveCode
- Topic: No tsNetDeleteSync function how to delete ? (Solved with shell)
- Replies: 2
- Views: 7899
No tsNetDeleteSync function how to delete ? (Solved with shell)
Hello LC friends and specialists, I have the following problem with tsNet function. There does not seem to be a tsNetDeleteSync function :shock: . I need to send a delete file message with tsNet.... to an url , how do i do this? Below is the curl code. curl -X 'DELETE' \ 'http://localhost:3001/api/v...
- Fri Jan 17, 2025 4:24 pm
- Forum: Internet
- Topic: tsNetPostSync issues with AnythingLLM server document upload. (SOLVED)
- Replies: 0
- Views: 16310
tsNetPostSync issues with AnythingLLM server document upload. (SOLVED)
Hello all LC friends. Mayby somebody can help me with the following issue I have been working on for hours and hours... :-( >>> (SOLVED :-) ) I have the following code to communicate with AnythingLLM for uploading data for use by an AI in a specific workplace. Moving the uploaded file to a workspace...