tabbed windows in Mac - as setProp

2018-10-25 Thread Neville Smythe via use-livecode
Well it seems the feature is “tabbed” windows. It is a feature of High Sierra. However for non-Apple apps it has to be implemented by the third party, and in this case I think the LC implementation is faulty. I can add windows to the tabs, but not remove the last tab.There is supposed to be a m

Re: Finding common words and phrases in a large block of text?

2018-10-25 Thread Tom Glod via use-livecode
Hi Terry, I see, thanks for sharing your handler. I'm going to run it on some text and see the output. LC is sooo good with chunks.I find it really fast as well. All the best, Tom On Thu, Oct 25, 2018 at 5:07 PM, Terry Judd via use-livecode < use-livecode@lists.runrev.com> wrote: > On 26

setProp question - stacked windows

2018-10-25 Thread Neville Smythe via use-livecode
Aha. My first thought was that it must be a Mac system “feature” since the iconised version looked Mac-ish rather than LC-ish. But I hadn’t updated to Mojave, and I had just updated to LC9.0.1 and it didn’t affect LC8, so I deduced it was down to LC. Thanks Brian, you have given me a place to lo

Re: RE setProp question

2018-10-25 Thread Brian Milby via use-livecode
I believe this is an OS feature and not LiveCode. Mac added the ability to “stack” windows which displays as a second title bar (which is tabs when multiple are stacked). I don’t have one of the new versions that have this feature, so I am not sure how to disable it. Thanks, Brian On Oct 25, 20

RE setProp question

2018-10-25 Thread Neville Smythe via use-livecode
Thanks for the replies about may setProp question a little while back. But no-one game me any info about the annoying problem I raised concerning windows under LC9 and it’s driving me nuts. To recap: new stacks (but not old stacks) and some engine windows such as for scripts and the dictionary

fdfToArray function

2018-10-25 Thread Bob Sneidar via use-livecode
Hi all. Anyone interested in getting data from, or putting data into an Acrobat Fillable Form will appreciate this. It parses an FDF file into an LC array. I have a companion function that takes an array (formatted properly of course) and creates an fdf file that a PDF form can use to populate

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-25 Thread Matthias Rebbe via use-livecode
As the same ODBC driver (Windows 10 SQL Server) works w/o a problem when using a user or system DSN connection, the driver should not be the problem. Regards, Matthias Rebbe free tools for Livecoders: https://instamaker.dermattes.de https://winsignhelper.dermattes.de > Am 26.10.2018 um 00:21

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-25 Thread Bob Sneidar via use-livecode
Re: [resolved] Microsoft - Driver Manager ODBC - Invalid string or buffer length Hi, Are you using 64 bit sql server 2014? Please take a look at an article about:http://stackoverflow.com/questions/26745417/invalid-string-or-buffer-length. Best regards Sabrina -- Don't forget to give kudos when

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-25 Thread Matthias Rebbe via use-livecode
Thanks Mark, isn´t the DBQ parameter used when you want to access a file based Database like Access .mdb files? I tried it anyway, but added a "e before tAccessDBFilename, as it seems that was missing in your example. Still getting the buffer error [Microsoft][ODBC Driver Manager] Ungültige Ze

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-25 Thread Bob Sneidar via use-livecode
That cannot be right. The result would be something like, DBQ=myFileName;" Eh? Bob S > On Oct 25, 2018, at 12:47 , Mark Wieder via use-livecode > wrote: > > put "DBQ=" & tAccessDBFilename & ";" & quote into tAccessPathname ___ use-livecode mail

Re: Finding common words and phrases in a large block of text?

2018-10-25 Thread Terry Judd via use-livecode
On 26/10/2018 4:27 am, "use-livecode on behalf of Tom Glod via use-livecode" wrote: Hi Terry, glad you found a solution. I have a similar challenge. I did a word count, but would love to recognize the same phrases. Did you just compare chunks? ... hash them? (proba

Re: is anyone able to use fileDSN for ODBC connections in LC?

2018-10-25 Thread Mark Wieder via use-livecode
On 10/24/2018 11:09 AM, Matthias Rebbe via use-livecode wrote: Hi, i am not able to use fileDSN for ODBC connections to a SQL server in LC Windows. Under Mac i did not test it already. With fileDSN you define all the odbc settings/parameters in a file with the suffix .dsn. When connecting usin

RE: starting the Project Browser

2018-10-25 Thread J. Landman Gay via use-livecode
You may also need to implement the workaround that accounts for a recent change in the standalone builder. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.h

Re: Finding common words and phrases in a large block of text?

2018-10-25 Thread Tom Glod via use-livecode
Hi Terry, glad you found a solution. I have a similar challenge. I did a word count, but would love to recognize the same phrases. Did you just compare chunks? ... hash them? (probably redundant?) Are there any more hints you can drop about this? Thanks, Tom On Thu, Oct 25, 2018 at 4:27

Re: starting the Project Browser

2018-10-25 Thread Douglas Ruisaard via use-livecode
Brilliant!!! ... works perfectly when combined with a "set loc" and "set rect" call. Doesn't touch the standalone settings! Thanks so much! Douglas Ruisaard Trilogy Software (250) 573-3935 > > Hi, > > does this help? > > revIDETogglePalette "Project Browser" > > you can test if the Project

RE: starting the Project Browser

2018-10-25 Thread Douglas Ruisaard via use-livecode
thanks for the reply... as I mentioned, the location/sizing thing was the less important issue. I didn't explain the standalone issue well enough. I had the call to the rev-stack within a "if environment is development" condition, so a standalone compile would have ignored the goto ... it was

Re: Sorting search results - solution needed

2018-10-25 Thread Scott Seward via use-livecode
Hey guys, thanks for all the possible solutions. I'm sure somewhere in here I'll get it to do what I need. Special thanks to those that wrote code. Much appreciate it! Scott On 10/24/18, 1:28 PM, "use-livecode on behalf of Niggemann, Bernd via use-livecode" wrote: here is my take, clums

Re: Finding common words and phrases in a large block of text?

2018-10-25 Thread Terry Judd via use-livecode
OK - was easier than I thought. I have something that works fast enough by iterating through runs of words in each sentence in a block of text, incrementing counts into an array and then sorting the contents of that array by phrase length and frequency. Terry... On 25/10/2018 4:56 pm, "use-li