Search found 735 matches

by mrcoollion
Wed Apr 22, 2026 8:41 pm
Forum: Talking LiveCode
Topic: customKeys and recalling the data in a key
Replies: 6
Views: 518

Re: customKeys and recalling the data in a key

I got it working.Added the following two menu items to a pulldown button No clue why i did not get it working before. I added a new button and a new target field "TestTekst" and added the menu items below to the button . 1st Text 2nd Text With the below code it worked on menuPick itemPicked switch i...
by mrcoollion
Tue Apr 21, 2026 2:45 pm
Forum: Talking LiveCode
Topic: customKeys and recalling the data in a key
Replies: 6
Views: 518

Re: customKeys and recalling the data in a key

Sorry Klaus, still does not work.
by mrcoollion
Tue Apr 21, 2026 2:09 pm
Forum: Talking LiveCode
Topic: customKeys and recalling the data in a key
Replies: 6
Views: 518

Re: customKeys and recalling the data in a key

Never would have thought of this.

Dankjewel (Thank you) Klaus.
by mrcoollion
Tue Apr 21, 2026 11:12 am
Forum: Talking LiveCode
Topic: customKeys and recalling the data in a key
Replies: 6
Views: 518

customKeys and recalling the data in a key

It has been a while that i have been on this forum, so hello to you all LiveCoder's :-). I do come here for the following reason. I thought it was a good idea to save fixed data within a menupick button using customKeys. However i cannot seem to get it working . The code does not give me errors but ...
by mrcoollion
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: 14211

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 ...
by mrcoollion
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: 14211

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...
by mrcoollion
Thu Mar 13, 2025 7:35 am
Forum: Talking LiveCode
Topic: Simple CSV to DataGrid Command
Replies: 15
Views: 72052

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
by mrcoollion
Wed Mar 12, 2025 6:32 pm
Forum: Talking LiveCode
Topic: Simple CSV to DataGrid Command
Replies: 15
Views: 72052

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...
by mrcoollion
Thu Jan 30, 2025 3:02 pm
Forum: Talking LiveCode
Topic: Windows copy paste does not work as it should (bug?)
Replies: 4
Views: 28066

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...
by mrcoollion
Wed Jan 29, 2025 10:20 am
Forum: Talking LiveCode
Topic: Windows copy paste does not work as it should (bug?)
Replies: 4
Views: 28066

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 ...
by mrcoollion
Sun Jan 26, 2025 4:31 pm
Forum: Talking LiveCode
Topic: Take Screenshot on other monitor (Solved)
Replies: 11
Views: 27105

Re: Take Screenshot on other monitor

Found the issue :D
U should have left out 'effective working' from the following statement

Code: Select all

put the effective working screenRects into tAllScreens
This does work.

Code: Select all

put the screenRects into tAllScreens
by mrcoollion
Sun Jan 26, 2025 4:03 pm
Forum: Talking LiveCode
Topic: Take Screenshot on other monitor (Solved)
Replies: 11
Views: 27105

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...
by mrcoollion
Sun Jan 26, 2025 2:57 pm
Forum: Talking LiveCode
Topic: Take Screenshot on other monitor (Solved)
Replies: 11
Views: 27105

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...
by mrcoollion
Sat Jan 25, 2025 4:40 pm
Forum: Talking LiveCode
Topic: Take Screenshot on other monitor (Solved)
Replies: 11
Views: 27105

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...
by mrcoollion
Sat Jan 25, 2025 3:28 pm
Forum: Talking LiveCode
Topic: Take Screenshot on other monitor (Solved)
Replies: 11
Views: 27105

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...