RE: QR Code Recognition

2013-03-12 Thread Chris Davis
Hi Dave, Did you find anytime for this one :-) ? Thanks Chris. -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Chris Davis Sent: 04 March 2013 06:46 To: profoxt...@leafe.com Subject: RE: QR Code Recognition Thanks Dave, no rush just thought I'd

RE: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Kurt
Hey Mike - not sure if this will help. But, someone on this list here a while back mentioned a book that helped you transition between VFP C#/.net! I did download it on my work computer - but, that was at my last job - and I don't have it nor the link to the book anymore. You may find the link on

[NF] Streaming Videos via YouTube...

2013-03-12 Thread Kurt
I was curious to know if anyone on this list has had any experience with this. I know it exists. And, a while ago - I stumbled on a concert happening in South America - but, was streamed to the world via YouTube. On Sun. March 24th I will be giving a presentation on Rapid Prototyping and also

RE: Screen Res. Design Monitor Sizes...

2013-03-12 Thread Kurt
Jean - I didn't hear back from you. Are you saying that I actually CAN use the MwResizer to let it Resize the Fonts of the Drop-Down menu system??? -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Jean MAURICE Sent: Monday, March 11, 2013

FW: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Kurt
Stephen - I know you replied directly to ME - but, it was actually MIKE who was looking for a response - as he's the one looking to make the change. I'm still now working Strictly w/VFP - and, when not VFP - I'm now a TOTAL Rapid Prototyping guy - as I did the MAJOR JUMP into more Hi-End RP

Re: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Stephen Russell
woops. I sent it to him then. On Tue, Mar 12, 2013 at 8:26 AM, Kurt k...@isssusa.com wrote: Hey Mike - not sure if this will help. But, someone on this list here a while back mentioned a book that helped you transition between VFP C#/.net! I did download it on my work computer - but, that

Re: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Michael Savage
I guess I'm looking at just about anything, but I would like to create an app for a handheld device. In C, the data and code are separated. Thus, I hope to get over that hump soon. Right nowe though, it is the visual studio interface is confusing me. ie. When I create any kind of application,

RE: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Kurt
Hey - NP Stephen - it happens... -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Stephen Russell Sent: Tuesday, March 12, 2013 9:58 AM woops. I sent it to him then. On Tue, Mar 12, 2013 at 8:26 AM, Kurt k...@isssusa.com wrote: Hey Mike -

Re: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Alan Bourke
On Tue, Mar 12, 2013, at 02:09 PM, Michael Savage wrote: In C, the data and code are separated. Thus, I hope to get over that hump soon. Right nowe though, it is the visual studio interface is confusing me. ie. When I create any kind of application, it creates a whole whack of files.

Re: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Alan Bourke
Look at the .NET section listed here. http://stackoverflow.com/questions/194812/list-of-freely-available-programming-books ___ Post Messages to: ProFox@leafe.com Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of

Re: [NF] Streaming Videos via YouTube...

2013-03-12 Thread M Jarvis
On Tue, Mar 12, 2013 at 6:30 AM, Kurt k...@isssusa.com wrote: it would also be cool if I could take some questions from viewers from around the world who might be watching it - and answer some of their questions. So, it would be nice to know if there is some kinda Text Chat that can also be

RE: [NF] Streaming Videos via YouTube...

2013-03-12 Thread Kurt
Hey Matt - thanks for following up on this. Sure - definitely send me the link - I shall try and check it out! I may actually connect up with this guy - whose a big proponent within the 3D Printer industry (he has his own website promoting 3D Printers at 3DHacker.com) - and maybe I can work with

[NF] How I spent my weekend

2013-03-12 Thread Ed Leafe
I didn't get to go to any of the talks or sessions at SxSW, but I did get to spend the weekend talking tech with a whole bunch of people. Rackspace rented out the sports bar across the street from the Austin Convention Center, and hung a 5-story banner (see http://j.mp/12M5baU).

Re: [NF] Inexpensive, (read free) book etc. to get me started with C# or Javascript in Visual Studio 2012

2013-03-12 Thread Stephen Russell
just saw this blog Free book from M$ http://blogs.msdn.com/b/microsoft_press/archive/2012/10/29/free-ebook-programming-windows-8-apps-with-html-css-and-javascript.aspx On Mon, Mar 11, 2013 at 4:21 PM, Michael Savage msav...@golden.net wrote: How to get me started with C# or Javascript in

The Google ego trip

2013-03-12 Thread AndyHC
Just tried the usual Google ego trip by typing in my name and got http://osdir.com/ml/db.foxpro.profox/2006-06/msg02317.html Good ole archives - apart from the unnecessary ; it still works (oh OK it's less than 7 years old - still!) ___ Post

SQL statement formation

2013-03-12 Thread Mike Copeland
Here's a question that I should know the answer to, but I'll admit it confuses me. When forming an SQL statement in VFP to pass through to MYSQL (or MariaDB), I use a combination of and ' delimiters. For example sqlStatement = select Fname, Lname from customer where Fname like '%Bob%'

RE: SQL statement formation

2013-03-12 Thread Tracy Pearson
Mike Copeland wrote on 2013-03-12: Here's a question that I should know the answer to, but I'll admit it confuses me. When forming an SQL statement in VFP to pass through to MYSQL (or MariaDB), I use a combination of and ' delimiters. For example sqlStatement = select Fname,

Re: SQL statement formation

2013-03-12 Thread Mike Copeland
That's what I was afraid of... So, is it an option to escape the ' and with \? Like this: [select Lname from customer where Fname like 'O\'Mally'] Mike Original Message Subject: Re: SQL statement formation From: Tracy Pearson tr...@powerchurch.com To:

RE: SQL statement formation

2013-03-12 Thread Richard Kaye
You could also try doubling up the embedded delimiter like this when building your SQL statement: [select Lname from customer where Fname like 'O''Mally'] I know this will work with VFP and MSSQL ODBC but don't know about the MYSQL ODBC connector. It's also possible there's some flag in the

Re: SQL statement formation

2013-03-12 Thread Frank Cazabon
Mike, if you use parameters, then you won't have to worry about extra double or single quotes. cName = %Bob% sqlStatement = select Fname, Lname from customer where Fname like ?cName Frank. Frank Cazabon On 12/03/2013 02:10 PM, Mike Copeland wrote: Here's a question that I should know the

Re: Screen Res. Design Monitor Sizes...

2013-03-12 Thread Jean MAURICE
Hi Kurt, I was away from home ... you can't use mwresize as it is to modify the size of the menu. But you can 'easily' modify it as I have done to add my own calculations ... Best Regards The Foxil ___ Post Messages to: ProFox@leafe.com

RE: SQL statement formation

2013-03-12 Thread Richard Kaye
I formally withdraw my suggestion that you double up embedded delimiters. (I have Johnny Drop Tables on my tatabletop display of comics...) -- rk -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ted Roche Sent: Tuesday, March 12, 2013 3:31 PM To:

Re: SQL statement formation

2013-03-12 Thread MB Software Solutions, LLC
On 3/12/2013 3:22 PM, Frank Cazabon wrote: Mike, if you use parameters, then you won't have to worry about extra double or single quotes. cName = %Bob% sqlStatement = select Fname, Lname from customer where Fname like ?cName Frank. Frank Cazabon Just remember to make sure the variable is

RE: Screen Res. Design Monitor Sizes...

2013-03-12 Thread Kurt
Hey Jean - I've been buried this afternoon with a Stumper of an EDI data conversion problem for a client. So - go ahead, any pointers on how to do what you are saying? Thanks, -K- -Original Message- From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Jean MAURICE Sent:

Re: SQL statement formation

2013-03-12 Thread Mike Copeland
Got it, thanks Frank! Original Message Subject: Re: SQL statement formation From: MB Software Solutions, LLC mbsoftwaresoluti...@mbsoftwaresolutions.com To: profoxt...@leafe.com Date: 3/12/2013 3:04 PM On 3/12/2013 3:22 PM, Frank Cazabon wrote: Mike, if you use parameters,

Re: SQL statement formation

2013-03-12 Thread Mike Copeland
Okay, I have no problem with using parameters...I'll test it and see if it solves my problem. Mike Original Message Subject: Re: SQL statement formation From: Frank Cazabon frank.caza...@gmail.com To: profoxt...@leafe.com Date: 3/12/2013 2:22 PM Mike, if you use parameters,

Calculating differences between rows.

2013-03-12 Thread Michael Savage
I have a totals query that gives me annual totals. Each row is a different year. Is there an easy way of comparing year to year? (Easier than using scan endscan) TIA, Mike ___ Post Messages to: ProFox@leafe.com Subscription Maintenance:

Re: [NF] iPad/Apple vs Android

2013-03-12 Thread Mike Copeland
Two thoughts... 1. Quantity does not indicate quality 2. Development of apps seems to follow either innovation or $s. Mike Original Message Subject: [NF] iPad/Apple vs Android From: Lew Schwartz lew1...@gmail.com To: profoxt...@leafe.com Date: 3/12/2013 5:35 PM It seems to me

Re: Calculating differences between rows.

2013-03-12 Thread Frank Cazabon
When you say comparing year to year what exactly do you mean? You want something like this: Year Total Last Year 2000 25 null 2001 32 25 2002 65 32 or this: Year Total % increase 2000 25 null 2001 32 (32-25)/25 2002 65 (65-32)/65 I would probably

Re: Calculating differences between rows.

2013-03-12 Thread Michael Savage
If I understand you correctly, both would work. Example 1 would be the actual total, example 2 would be the % change, correct? If so both would be useful. Mike On 12/03/2013 8:54 PM, Frank Cazabon wrote: When you say comparing year to year what exactly do you mean? You want something like

Re: Calculating differences between rows.

2013-03-12 Thread Frank Cazabon
Can you give the code you use to build up the Totals? Frank. Frank Cazabon On 12/03/2013 09:24 PM, Michael Savage wrote: If I understand you correctly, both would work. Example 1 would be the actual total, example 2 would be the % change, correct? If so both would be useful. Mike On

Re: [NF] iPad/Apple vs Android

2013-03-12 Thread Dan Covill
I believe that's because Apple was first, so the apps have had more time to grow. iPhone was the first comprehensive 'smart phone', and iPad in 2010 was the first Tablet, so they had a head start. Establishing the Apple Stores didn't hurt, either. I think there are more actual Android