Search found 23 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: 3128

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: 3128

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: 8408

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: 5983

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: 8408

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: 8408

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
Thu Sep 12, 2013 11:38 am
Forum: Summer School 2013
Topic: Combo Box Filter Example
Replies: 1
Views: 6438

Re: Combo Box Filter Example

Thanks Elanor that helped me a lot. I tried using a local variable put that was very slow when filtering. With the custom property it works like a charm now.
by dbcbos
Fri Aug 16, 2013 8:11 am
Forum: Summer School 2013
Topic: Lesson 2 - App Perception Experiment
Replies: 6
Views: 5531

Re: Lesson 2 - App Perception Experiment

And my answers using the Marc Method (only one week in the course) and you already got a method called after you ^^ App 1 1) Intermediate 2) Kids game learning about bugs and the abc 3) kids 4) adequate 5) If I had kids, download if free. For myself ignore App 2 (my vision is a bit off to the others...
by dbcbos
Fri Aug 16, 2013 7:49 am
Forum: Summer School 2013
Topic: Suggestions for Icon Editors?
Replies: 8
Views: 6613

Re: Suggestions for Icon Editors?

I use Icon Maker downloadable from the Apple Store. Since I don't really have the creativity too make my own icons or patience using Gimp or Photoshop Elements.
by dbcbos
Wed Aug 14, 2013 8:17 pm
Forum: Summer School 2013
Topic: Problems resizing buttons
Replies: 3
Views: 3240

Re: Problems resizing buttons

The things you do only work on a normal object, not on a group object control. (Since you resize the group not the controls within the group control) The simplest way I saw fit was by just dragging them like Elanor did. Then check in the Inspector if there all the same height. For instance the first...
by dbcbos
Wed Aug 14, 2013 7:45 pm
Forum: Summer School 2013
Topic: iOS Simulator
Replies: 9
Views: 6896

Re: iOS Simulator

1) You press "Test" in the top menu in Livecode 2) IOS Simulator starts with error 3) Go to the top menu in IOS Simulator change Hardware --> Device --> Ipad (or Ipad Retina) (whichever is not selected) 4) The IOS Simulator now shows an IOS environment 5) If you select the second page in IOS (so nor...
by dbcbos
Wed Aug 14, 2013 7:26 pm
Forum: Summer School 2013
Topic: iOS Simulator
Replies: 9
Views: 6896

Re: iOS Simulator

I also get this message, but when you change the device settings by going to Hardware --> Device --> Ipad Retina (or whatever device your building for) then go into the second tab and click summerschool app it does start. Just not when clicking on "test" straight away. I do not know if it is a bug o...
by dbcbos
Wed Aug 14, 2013 7:19 pm
Forum: Summer School 2013
Topic: Transfering a Decktop App to an iPad App
Replies: 4
Views: 4297

Re: Transfering a Decktop App to an iPad App

Hello Ed, That sounds like a great application. I wonder if it could also be used abroad. In theory you are correct, probably the app might even work in the simulator. Most functions if working on a desktop will also work on mobile. You can check the dictionary in livecode for functions you use that...
by dbcbos
Wed Aug 14, 2013 2:38 pm
Forum: Summer School 2013
Topic: iOS Simulator
Replies: 3
Views: 3514

Re: iOS Simulator

Some more tips: Make sure in your <b>standalone application settings</b> that you have Universal and 3.1.3 or later selected. Also if you're tab buttons work in livecode, but not in the simulator, you probably forgot too add the preopencard code. In MobGui there is a button that says "Add preopencar...
by dbcbos
Wed Aug 14, 2013 2:13 pm
Forum: Summer School 2013
Topic: is Livecode an OOP language?
Replies: 3
Views: 4333

Re: is Livecode an OOP language?

On first thought I was thinking not too highly about Livecode, but since I delved in more. I haven't found much I couldn't do with Livecode that I can do in Java or Visual Basic. Still you need a different thinking cap on then with a language like Java. Also on a first look I thought of Livecode to ...

Go to advanced search