Search found 32 matches

by hoburne
Wed May 18, 2016 3:13 pm
Forum: Using Externals
Topic: Anybody using LC8 and NativeGeometry?
Replies: 1
Views: 15943

Re: Anybody using LC8 and NativeGeometry?

UPDATE: Confirmed bug #17441
by hoburne
Wed May 18, 2016 11:31 am
Forum: Using Externals
Topic: Anybody using LC8 and NativeGeometry?
Replies: 1
Views: 15943

Anybody using LC8 and NativeGeometry?

Hi all,

Is anyone using LC8 (Windows or Mac) and NativeGeometry?
Since upgrading to LC8, NativeGeometry doesn't seem to work, the plugin loads and opens up fine but the 'Set Object Geometry' (top link) doesn't do anything.
Just curious if anyone else has come across this and found a fix?

Thanks.
by hoburne
Mon Jun 08, 2015 5:44 pm
Forum: Talking LiveCode
Topic: LC 7 / Skin a stack
Replies: 0
Views: 2690

LC 7 / Skin a stack

Hi all, I've battled this problem for a day or two now and I'm needing some guidance about where to look next.. The story so far.. I'm creating a little 'widget' type of application that will sit in the bottom rhs of the screen just above the time. It will run on Windows environments only and simply...
by hoburne
Mon May 19, 2014 7:44 am
Forum: Databases
Topic: MySQL - get Alias names from a SELECT ?
Replies: 5
Views: 6211

Re: MySQL - get Alias names from a SELECT ?

hahaha - great example. In a way this is kind of what I want to achieve. Part of this application is designed to allow users to break the db in a controlled manor. MySQL users are configured not to allow some commands and always resets after 60 minutes aways, returning the content to normal. Its kin...
by hoburne
Fri May 16, 2014 4:54 pm
Forum: Databases
Topic: MySQL - get Alias names from a SELECT ?
Replies: 5
Views: 6211

Re: MySQL - get Alias names from a SELECT ?

Hi SparkOut - Thanks for your reply. The issue is the query works fine, returns the results expected but I need the query results to include the name of the alias. In the example query above the result would be three columns of data [x, y, z]. When the result comes back from MySQL I simply output it...
by hoburne
Fri May 16, 2014 3:33 pm
Forum: Databases
Topic: MySQL - get Alias names from a SELECT ?
Replies: 5
Views: 6211

MySQL - get Alias names from a SELECT ?

Hi all, Can anyone offer some advice above how to get the column names or more specifically, alias names from a query? e.g.. SELECT x, y, concat(x,"_",y) as z FROM MyTable I am looking the get the names of the columns used and the alias returned to LC so that the column names are accurate when the r...
by hoburne
Thu Apr 25, 2013 6:32 am
Forum: iOS Deployment
Topic: FTP an image from iOS
Replies: 3
Views: 4787

Re: FTP an image from iOS

Morning!

So a good night's sleep and I have a clear head and thanks to Neil, a working app. Thanks Neil.

Interestingly, I used the "the last image" part of your put command in place of the image name I had assigned and it now works.

Thanks again.

:)
by hoburne
Wed Apr 24, 2013 1:18 pm
Forum: iOS Deployment
Topic: FTP an image from iOS
Replies: 3
Views: 4787

FTP an image from iOS

Hi all, I have looked through the forums and dictionary and thought I had what I was looking for, however, I still need some pointers or clarification. I am writing an iOS app (which is driving me crazy!!) which simply takes a picture with the camera, displays to the screen then at the press of a bu...
by hoburne
Tue Mar 19, 2013 11:04 am
Forum: iOS Deployment
Topic: Using passwords and Encryption
Replies: 2
Views: 3235

Re: Using passwords and Encryption

No worries - I got it. Thanks anyway.
by hoburne
Tue Mar 19, 2013 10:01 am
Forum: iOS Deployment
Topic: Using passwords and Encryption
Replies: 2
Views: 3235

Using passwords and Encryption

Hi all, I need a couple of pointers (and probably a better understanding of LC in general!). I have been asked to write a basic iOS app that uploads a picture taken on the phone. Very simple. However, the app must use a pre-existing username and password to login. They are stored in a mySQL DB table...
by hoburne
Mon Feb 11, 2013 2:54 pm
Forum: Android Deployment
Topic: Barcode scanner (USB) on tablet
Replies: 11
Views: 22002

Re: Barcode scanner (USB) on tablet

Thanks... @ Marek - yeah the stack is simply a proof of concept so I have a button the looks like this: on mouseUp focus on fld "fldInput" end mouseUp 'fldInput' being a text field that is waiting for a barcode number to be entered. @ Gfw - thanks for the pointer. So the tablet assumes the barcode s...
by hoburne
Mon Feb 11, 2013 10:52 am
Forum: Android Deployment
Topic: Barcode scanner (USB) on tablet
Replies: 11
Views: 22002

Re: Barcode scanner (USB) on tablet

Hi all, Sorry for thread hijacking! I am also trying to use an android tablet with a USB barcode scanner. The tablet http://www.novatech.co.uk/products/tabletpcs/tabletpcs/nov-v97.html is just a generic mid-spec unit with micro-usb. it came with an adapter to USB so all seems good. I plugged my scan...
by hoburne
Tue May 29, 2012 4:49 pm
Forum: Databases
Topic: MySQL - Handling LARGE tables
Replies: 7
Views: 7066

Re: MySQL - Handling LARGE tables

@Everyone - Great, thank-you for the explanations.
by hoburne
Tue May 29, 2012 9:58 am
Forum: Databases
Topic: MySQL - Handling LARGE tables
Replies: 7
Views: 7066

Re: MySQL - Handling LARGE tables

Thank you both for your help. @Mark - My LC code initially analyses the applied filters and constructs seeminly huge SQL SELECT statements to try and target as specific data as possible. However, after the data is retrieved and placed into a dg the user has the option to further filter this data and...
by hoburne
Mon May 28, 2012 7:48 pm
Forum: Databases
Topic: MySQL - Handling LARGE tables
Replies: 7
Views: 7066

MySQL - Handling LARGE tables

Hi, This may be obvious to most so I apologise if this seems like a basic question! I have been working on a data analysis application for a while - the application is in 2 parts, the first collects the data in real time and the second processes it and generates reports from a 'client' interface. It...