Search found 24 matches

by WebiWan
Wed Apr 24, 2024 10:37 pm
Forum: Databases
Topic: DataGrid column truncating string
Replies: 2
Views: 39922

Re: DataGrid column truncating string

It's set to Table
by WebiWan
Wed Apr 24, 2024 7:24 pm
Forum: Databases
Topic: DataGrid column truncating string
Replies: 2
Views: 39922

DataGrid column truncating string

Anyone know why this is happening? There certainly seems to be enough space to display the entire string the Db sends to it. The link is to a zip file with a screencap in it.

https://www.dropbox.com/scl/fi/bgzgh98v60p2j08gij7zn/truncatedString.zip?rlkey=ulyh7tpjslsasjzlsutm5c2ek&st=dnlnsmql&dl=1
by WebiWan
Sat Jul 23, 2022 8:22 pm
Forum: Talking LiveCode
Topic: Windows 11 Help
Replies: 51
Views: 45847

Re: Windows 11 Help

It's now happening with Windows 10. The Windows log registers every event as follows:

Faulting application name: TekProtect.exe, version: 6.4.2.0, time stamp: 0x6102893c
Faulting module name: Print.PrintSupport.Source.dll, version: 10.0.19041.1806, time stamp: 0x02b082be
Exception code: 0xc0000005 ...
by WebiWan
Thu Jan 02, 2020 7:53 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays



The only thing I can think of is the subkeys are not numbered, they are named.

Bingo. A name may include alphabetic characters or numerals or punctuation or any combination of those. But it only has one name.


I just looked back through the other programs I've produced with Livecode and I ...
by WebiWan
Thu Jan 02, 2020 7:36 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays

bogs wrote: Wed Jan 01, 2020 7:56 pm I know you had a lot of responses and sent a lot of replies, but did you see this response from Axwald, which might be the one that explains your dilemma?
I did, thanks. But it's going to take me a little while to comprehend it all. :oops:
by WebiWan
Thu Jan 02, 2020 7:32 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays


...I got the routine cmdCursor2Array from these pages but here it is too:
command cmdCursor2Array pCursor, @pOutArrayA
## Get the names of all the columns in the database cursor
put revDatabaseColumnNames(pCursor) into theFields
if theFields begins with "revdberr," then
put item 2 to -1 of ...
by WebiWan
Wed Jan 01, 2020 7:48 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays

Someone suggested it would be good to know how the array is created.


on mouseUp mouseButt
if mouseButt = 1 then
if gvConnectID is not a number or gvConnectLite is not a number then
cmdConnect
end if

// Go get the last run time
put the prFile of this stack into tvFile
put the effective ...
by WebiWan
Wed Jan 01, 2020 7:34 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays


Maybe then you can see if there is anything different to the array then you expected that could explain the outcome of your script? This has helped me working with array's.
Regards,

Paul


The only thing I can think of is the subkeys are not numbered, they are named. But I assumed indexing them ...
by WebiWan
Wed Jan 01, 2020 7:30 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays


Well, we are at least getting somewhere. When you do step through, does the very first line:
put myArray[x][1] into tvMake
put anything into tvMake?

...

Craig


No. However, after reading everyone's comments I think we may be circling the problem. Could the "indexing" problem be due to having ...
by WebiWan
Wed Jan 01, 2020 7:19 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays



I just tried bogs' statement below and it returns "true."

Not to take undue credit, the statement actually was modified directly from the dictionary example :wink:

Fortunately, it appears you are at least starting with a real array. Did you also check it before you start running that loop ...
by WebiWan
Tue Dec 31, 2019 9:14 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays


Would this work?



repeat for each key tKey in myArray
put myArray[tKey] into tLineData
put tLineData[1] into tvMake
put tLineData[2] into tvModel
put tLineData[3] into tvCompName
put tLineData[4] into tvProdNum
put tLineData[5] into tvSerial
put tLineData[6] into tvOSName
put ...
by WebiWan
Tue Dec 31, 2019 9:04 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays


The symptoms described for both cases would be met if the variable myArray is not actually an array.

How is that variable populated?


It's populated through a query to the database. When I step through each line myArray shows up in the variables section as an array. In other words it has 71 ...
by WebiWan
Tue Dec 31, 2019 8:57 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Re: Parsing arrays

I agree, both seem fine for an array. And yet one will not run at all and the other assigns no data to the variables. Do you have any thoughts on that?

It seems Livecode is really buggy. I had a problem a while back that every "answer" statement would cause the stack and the IDE crash and no one ...
by WebiWan
Tue Dec 31, 2019 12:51 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parsing arrays
Replies: 29
Views: 47595

Parsing arrays

Hi all...

As usual, I'm hoping this is some quirk of Livecode that has a simple fix. I'm writing a routine that updates our company database with data from the SQLite db file associated with our remote support software. The database calls are working fine and the result (using test parameters) is ...
by WebiWan
Fri Mar 01, 2019 2:24 am
Forum: Talking LiveCode
Topic: how to get all selected items of datagrid
Replies: 6
Views: 7752

Re: how to get all selected items of datagrid

Once again, Klaus to the rescue. Although my data source was much different from this example I was able to get it to work by making logical assumptions to restructure the code. Thanks so much!