Search found 13 matches

by dbcbos
Mon Oct 16, 2017 12:59 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Drag and Drop in Datagrid not working anymore in livecode 8
Replies: 3
Views: 4136

Re: Drag and Drop in Datagrid not working anymore in livecode 8

Ah thanx Klaus that helped! It was a long time ago I probably used it yes, always worked just suddenly when I went to 8.1 no more. Thank you for your help
by dbcbos
Mon Oct 16, 2017 10:44 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Drag and Drop in Datagrid not working anymore in livecode 8
Replies: 3
Views: 4136

Drag and Drop in Datagrid not working anymore in livecode 8

I have included a stack that works in reordering the data in a datagrid in livecode 7.1.4 and 8.0.2

And stopped working in Livecode 8 (tested on 8.1.2, 8.1.5 and 8.1.6) The drag line appears and stops and nothing happens.

Anyone know what I missed since the version change?

Or is this a bug?
by dbcbos
Mon Oct 16, 2017 10:25 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How can I make a PUT request to an API framework
Replies: 12
Views: 10655

Re: How can I make a PUT request to an API framework

Thank you all for your input.

I have not tested your new solutions. I gave up using the cursor api and thus using PUT, I used normal post requests to get the data by adding a limit/steps implementation to a query. Which worked out great for the solution I was working on.
by dbcbos
Thu Aug 24, 2017 11:35 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: CLI Standalone App does not quit (Windows)
Replies: 9
Views: 7220

CLI Standalone App does not quit (Windows)

I have build a standalone App that does not quit after I output something to stdout

It does quit if I do not write to stdout

Any ideas, might be a Windows setting i'm thinking. I did use:

Code: Select all

quit

or

quit 0
As stated in the dictionary
by dbcbos
Thu Aug 24, 2017 11:27 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How can I make a PUT request to an API framework
Replies: 12
Views: 10655

Re: How can I make a PUT request to an API framework

Hello Richard, Sorry to get with you back so late. Thank you for your answer. I have used another API call that does not require PUT to solve this issue. POST also did not work and setting the headers or customheaders did also not work. I wonder if this is a bug, it does work in the Chrome App Postm...
by dbcbos
Thu Aug 17, 2017 10:13 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: How can I make a PUT request to an API framework
Replies: 12
Views: 10655

How can I make a PUT request to an API framework

Question: How can I make a PUT request to an URL? I have done the following: put "Authorization: Basic " & tUsr & tPwd & cr &\ "Content-Type: application/json" & cr &\ "PUT /_db/key2publish/_api/cursor/13499179 HTTP/1.1" & cr &\ "Host: localhost:8529" into tHeaders set the httpHeaders to tHeaders pu...
by dbcbos
Fri Apr 19, 2013 9:33 am
Forum: Mac OS
Topic: revBrowser in modal Dialog
Replies: 0
Views: 2319

revBrowser in modal Dialog

Is there a way to get the revBrowser working in a modal Dialog Box? It seems to work fine on Windows, but Mac OSX message path seems different, at least its not loading the revBrowser probably cause the modal Dialog is blocking it, code works fine when using toplevel. Anyone has any ideas to solve t...
by dbcbos
Thu Dec 20, 2012 11:55 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: get unique values from text
Replies: 10
Views: 6419

Re: get unique values from text

Oh joy. That's a sly hack. Thanks.
by dbcbos
Thu Dec 20, 2012 11:12 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: get unique values from text
Replies: 10
Views: 6419

get unique values from text

Hi all, is there a way to get unique values from text eg: I have the following text in a field product product product service item item item item and I like the following outcome product service item I know I could loop over all lines save all unknown words/items in a Dictionary/Array and skip if i...
by dbcbos
Sun Jul 01, 2012 9:47 am
Forum: Android Deployment
Topic: native scroller on datagrid
Replies: 1
Views: 3389

Re: native scroller on datagrid

Fixed it! I need to make a group first, put it into position and don't forget to lock the position. Then edit the group. Place a DataGrid into the group, make it as large as you want it or do it programmatically when data is inserted to calculate the height (& width) if necessary. Grouping is a powe...
by dbcbos
Fri Jun 29, 2012 8:35 pm
Forum: Android Deployment
Topic: native scroller on datagrid
Replies: 1
Views: 3389

native scroller on datagrid

I got a native scroller on a datagrid form style. The scrolling works, but it only shows 5 out of 9 records. Any idea how I can resolve this, if I use the livecode scroller on the datagrid it shows all 9 records. Though the livecode scroller is mostly useless on mobile devices since its to tiny. Any...
by dbcbos
Fri Jun 29, 2012 8:24 pm
Forum: Android Deployment
Topic: keyboard shows over text field
Replies: 2
Views: 3064

Re: keyboard shows over text field

Thanks Mark. I went with a native text field so it does it automatic now, but your solution works to. Just with a livecode text field you need to use openfield and exitfield. Only problem I had with that was if someone pulled down the keyboard it staid in that position. There probably is a workaroun...
by dbcbos
Sun Jun 24, 2012 10:05 am
Forum: Android Deployment
Topic: keyboard shows over text field
Replies: 2
Views: 3064

keyboard shows over text field

Hello, I'm relatively new to Livecode and new to mobile programming though not new to programming. I've done some nice test projects like google maps, data grid, geometry, notifications etc. all work. So I thought most of the hard part of learning has been done and got on with building my actual app...