RE: DBF Synchronization

2012-05-07 Thread José Enrique Llopis

I have on a project a Journal table where i write the modifications

Just send the journal to another system and recover it to replicate all the
changes made on the first computer.




I have on every table to sync a field named  SYNCTAG C(12) with the
DefaultValue  versynccode(TABLENAME)  The default value is SYS(2015)



The table, on the description field has the following text:

TITLE=TABLENAME
SHARED=YES/NO
KEYFIELD=KEYFIELDS


And on the triggers field:

Insert trigger:   jrn(tablename,1)
Update trigger: jrn(tablename,2)
Delete trigger: jrn(tablename,3)


Code to write the changes on the journal table and to recover it on a
different machine:



***
*** Writes modifications en the journal table
***
FUNCTION JRN
LPARAMETER lctabla, lnaccion

lcTabla = UPPER(ALLTRIM( lcTabla ))

*** Global flag to stop writing journal table while recovering data

IF VARTYPE(glstopjournal)=L
IF glstopjournal=.T.
RETURN .T.
ENDIF
ENDIF

LOCAL vcttxsdata(1, 1)
LOCAL lcoldalias, lnOficina

IF EMPTY(lcTabla)
RETURN
ENDIF


IF !USED(lctabla)
RETURN
ENDIF

lcoldalias = ALIAS()

lcTabla = UPPER(ALLTRIM(lcTabla))
SELECT (lctabla)


*** Number of fields on the table
lnnumfields = AFIELDS(vctfields, lctabla)
DIMENSION vcttxsdata(lnnumfields, 2)
FOR i = 1 TO lnnumfields
vcttxsdata(i, 1) = vctfields(i,1)field name
vcttxsdata(i, 2) = EVALUATE(vctfields(i,1))  field value
ENDFOR

IF !USED(Journal)
USE journal ALIAS journal IN 0
ENDIF

lcmachinename = ALLTRIM(MachineName())
lcusername = ALLTRIM(UserName())
*** Writes on the journal
INSERT INTO journal (fechahora, machine, USER, tabla, accion,
pasado) VALUES (DATETIME(), lcmachinename, lcusername, lctabla, lnaccion,
.F.)
*** Writes on the memo field the vector
SELECT journal
SAVE TO MEMO txsdata ALL LIKE vcttxsdata
*** saves modifications
IF CURSORGETPROP(Buffering)=3
TABLEUPDATE(.T.,.T.)
ENDIF

*** HouseKeeping
RELEASE vcttxsdata
RELEASE vctfields
*** Restaura la tabla en que estaba, por si acaso
IF !EMPTY(lcoldalias)
SELECT (lcoldalias)
ENDIF
ENDFUNC

***
*** Recover data from the journal file
***
PROCEDURE RecoverJournal
LPARAMETER lcSyncDataFile
PUBLIC glStopJournal
glStopJournal = .T.
IF !USED(lcSyncDataFile)
USE lcSyncDataFile IN 0 ALIAS SyncDataFile
ENDIF
SELECT SyncDataFile
SCAN
SELECT SyncDataFile
=
mergetx(UPPER(ALLTRIM(SyncDataFile.tabla)),SyncDataFile.accion,SyncDataFile
)
SELECT SyncDataFile
ENDSCAN
RELEASE glStopJournal
ENDPROC
*


**
*** Add, delete and modify data 

**
PROCEDURE MergeTx
LPARAMETER lcTabla, lnAccion, lcAliasJournal
EXTERNAL ARRAY vcttxsdata

LOCAL lnReturnValue
LOCAL vctCampos(1)


IF !USED(lcTabla)
lcAlias = JUSTSTEM(lcTabla)
USE (lcTabla) IN 0 ALIAS lcAlias
ELSE
lcAlias = JUSTSTEM(lcTabla)
ENDIF

AFIELDS( vctCampos, lcalias )

DO CASE
CASE lnAccion=1  INSERT   *** New record
SELECT (lcAliasJournal)
RESTORE FROM MEMO txsdata ADDITIVE
IF VARTYPE(vcttxsdata)=U
RETURN
ENDIF
lnVctLen = ALEN(vcttxsdata, 1)
SELECT (lcAlias)
IF lookforrecord(lcTabla,@vcttxsdata)  0  
Record not found
APPEND BLANK
FOR i = 1 TO lnVctLen
lcFieldName =
UPPER(ALLTRIM(vcttxsdata(i,1)))
IF ASCAN( vctCampos, lcFieldName ) 
0
   

RE: DBF Synchronization

2012-05-07 Thread José Enrique Llopis

Thanks

Pepe Llopis



-Mensaje original-
De: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] En nombre de
Eurico Chagas Filho
Enviado el: lunes, 07 de mayo de 2012 19:15
Para: ProFox Email List
Asunto: Re: DBF Synchronization

Nice, thanks for the code.

E.

--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/8E14E67B91D54023971CDA31B7B3C587@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: DBF Synchronization

2012-05-08 Thread José Enrique Llopis
I agree with in the first 4 points

¿Why you cannot sync more than one client at the same time?

Yes, it's very complex

Pepe Llopis


-Mensaje original-
De: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] En nombre de
Paul McNett
Enviado el: martes, 08 de mayo de 2012 20:26
Para: profox@leafe.com
Asunto: Re: DBF Synchronization

On 5/7/12 2:39 PM, MB Software Solutions, LLC wrote:
 Good points, but begs the question:  is this a 1-way synch or 2-way?  In
 other words, are changes on the laptop only going to the server, or is
 it possible for server changes to be newer than the laptop and thus you
 go that direction (from server to laptop db)?  If you have the date/time
 stamping like Stephen said, it helps make this possible.

I have five things to offer as requirements for true 2-way synchronization
between 
any number of clients:

1) all timestamps stored in UTC (duh).
2) all clients sync with ntp server regularly to avoid time drift
3) UUID primary keys generated on the client side
4) transaction log kept on server and on client for use in the 2-way sync
5) syncing a client to a server should block other clients from syncing at
the same time

Paul

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/2940CAD843CD42E9ADE3ED7F1F6B040C@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] - GoDaddy is down

2012-09-10 Thread José Enrique Llopis
Yes!!!

Pepe Llopis - alicante - Spain


-Mensaje original-
De: profox-boun...@leafe.com [mailto:profox-boun...@leafe.com] En nombre de
Kent Belan
Enviado el: lunes, 10 de septiembre de 2012 21:51
Para: 'ProFox Email List'
Asunto: [NF] - GoDaddy is down

Godaddy is being hit with a DDOS attach and currently all websites and
emails are down.

What a bunch of idiots !!!

This is hurting a lot of businesses ...



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/C42189638A74401F9EA31F38F950F252@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Recommendations for Windows 8 laptop (or MacBook Air?)

2013-08-23 Thread José Enrique Llopis
All the Mac guys install Windows but nobody installs OSx on Windows... 

Pepe Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Thierry Nivelet
Enviado el: viernes, 23 de agosto de 2013 11:21
Para: profox@leafe.com
Asunto: Re: [NF] Recommendations for Windows 8 laptop (or MacBook Air?)

+1
Love my MacBook Air + virtual box

Thierry Nivelet
http://foxincloud.com/
Give your VFP app a second life in the cloud

Le 23 août 2013 à 11:14, Dave Crozier da...@flexipol.co.uk a écrit :

 I don't like Mercedes or BMW's either but they are undeniably good.
 
 You gets what you pay for...
 
 
 
 -Original Message-
 From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Allen
 Sent: 23 August 2013 10:14
 To: profox@leafe.com
 Subject: RE: [NF] Recommendations for Windows 8 laptop (or MacBook Air?)
 
 Just don't like apple's attitude. Or the price.
 Al
 
 -Original Message-
 
 I'm not just the only one who likes the touchpad:
 

http://www.zdnet.com/macbook-air-and-pro-no-touch-screen-required-unlike-win
 dows-8-716865/
 
 Dave
 
 
 
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/D3CBF02A9B5A4953B6608AA4FF326419@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: JPG as General Fields in FRX

2014-08-10 Thread José Enrique Llopis
You can embed the image in a rtf and show it centered on a general field.


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Andrew MacNeill
Enviado el: miércoles, 30 de julio de 2014 11:07
Para: profoxt...@leafe.com
Asunto: JPG as General Fields in FRX

Hey all,
I have a handful of logos that are all different sizes. I want to show 
them on a report but when I use the actual physical files, I can't 
control the centering properly.
I've got a large image field on the report - but if my image is tiny, it 
immediately aligns to the left. When an image is larger, it fills nicely.
(I hope that explains the problem well)

I've suggested adding white space to the client  (I believe they are 
still laughing)

So, my thinking went to General Fields.
First, I know general fields are a bad way to go on this but this is the 
only way to support proper centering.
So now the real issue is that when I take a JPG file, it wants to use 
the Windows Photo Viewer, which doesn't support native viewing.
If I convert the JPG to a BMP, it works properly (because it's using MS 
Paint) BUT the quality is terrible.
I tried to explicitly note the JPG as a Paint.Picture, but it still 
wants to use the Windows Photo Viewer.

Has anyone found a good solution to this (either a better General 
OLEClass for JPG) or a better overall solution?

Thanks

Andrew

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/BD6F250C21C04703BBFD59801536FB08@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Windows 10

2014-10-18 Thread José Enrique Llopis
I have a pack of Windows 1.3 operating environment, complete with
diskettes, opened but never installed.

Pepe Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Mike Copeland
Enviado el: sábado, 18 de octubre de 2014 19:49
Para: profox@leafe.com
Asunto: Re: Windows 10

I swear I had a copy of Win 1.0
I may have been smoking something (it was a different time then), and 
from what I recall it was pretty much click and look...no apps, no 
functionality.

I even kept the diskettes for a while along with my Lotus 123 and 
Frogger disks.

Mike

Ted Roche wrote:
 There was a Windows 2.0 -- I remember getting the runtime bundled with
 Adobe Pagemaker when my company started Desktop Publishing. But I'm pretty
 sure Windows New Technology launched at the 3.0 version. I was working at
a
 Microsoft consultancy in Waltham, MA, and we bought PowerPC and MIPS
 machines to test out the cross-platform servers on new CPUs. Perhaps I'm
 misremembering, as that was a long, long, long time ago.

 On Sat, Oct 18, 2014 at 12:22 PM, jeff j...@san-dc.com wrote:

 Wasn't there an NT 2.0?


 Sent from my T-Mobile 4G LTE Device

  Original message 
 From: Ed Leafe e...@leafe.com
 Date:10/18/2014  07:02  (GMT-07:00)
 To: profoxt...@leafe.com
 Subject: Re: Windows 10

 On Oct 17, 2014, at 7:39 PM, Ted Roche tedro...@gmail.com wrote:

 This
 is the company that made:

 Windows 3
 Windows 3.11
 Windows 95
 Windows NT
 Windows NT 3.51
 WIndows 98
 Windows NT 4
 Windows Me
 Windows 2000
 Windows Vista
 Windows 7
 Windows 8
 You left out Windows XP. How is that possible, when it fits so nicely
into
 the above pattern?

 ;-)

 -- Ed Leafe







 --- StripMime Report -- processed MIME parts ---
 multipart/signed
text/plain (text body -- kept)
application/pgp-signature
 ---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/653FE2BB6D83465B91658988CABFC25D@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Appointment tracker

2015-08-11 Thread José Enrique Llopis
I use a com object, a dll, and Kevin Ragsdale desktop alerts, works very
well and do not slows the main program.

Pepe Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Allen
Enviado el: martes, 11 de agosto de 2015 10:02
Para: profox@leafe.com
Asunto: RE: Appointment tracker

What about a dll? That doesn't have a UI
Al

-Original Message-

I would agree with Ted. Visual FoxPro is not the best choice for a
service EXE as it is hard to make one that doesn't present any UI, and
you can't build one natively. Also if there is scheduling involved then
you are re-inventing the scheduling wheel too. .NET can create services
easily, however for any sort of complex scheduling you're looking at a
library called Quartz.NET. As Ted says, do a VFP exe that does what you
want once, then exits. Then use the power of the Windows scheduler to
run it as needed. There is no real need for this to be a service, or TSR
as they used to be called in the olden days.


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/0AE0EBEBAC8F4B56901E3E88387B30D9@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: SQL Server 2014

2015-07-14 Thread José Enrique Llopis
I use cursor adapter on my apps, desktop and Web (Web Connection),  and CA's
work very well.


Pepe Llopis
www.multilinkcrm.com


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Rafael Copquin
Enviado el: martes, 14 de julio de 2015 15:04
Para: profox@leafe.com
Asunto: Re: SQL Server 2014

None of you use cursor adapters? I use them all the time and they are 
just great! And do not have any of the drawbacks mentioned about views

Rafael Copquin


El 14/07/2015 a las 5:04, Dave Crozier escribió:
 Remote views are great but with one drawback. If you make them dynamic or
generate them on the fly then the database needs to be locked and this can
really screw up your system (other users). We have a private personal
database that is created per user that you have exclusive access to all the
time. Makes it easy, efficient and fast.

 Dave


 -Original Message-
 From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Claude nikula
 Sent: 13 July 2015 19:54
 To: 'ProFox Email List'
 Subject: RE: SQL Server 2014

 Coding is the easy part. The harder part is making the right decision on
how you want to connect. With VFP you have lots of options, that's one of
the things that makes VFP so powerful.
 Here are some considerations you'll have to account for. On how to connect

 1. Pass-through (ODBC) - with this option, you'll have to consider if you
want to connect to the clients programmatically, or if you wish to set up a
data source name (DSN).   Pro. Very flexible, very fast and powerful. Con.
It can be very labor intensive

 2. Remote views, this will require a DBC. Again, you'll have to decide if
you want to use the programmatically connection string, or a data source
name.   Pro. Very easy to use. It takes care of all of your inserts, updates
for you, which makes it very convenient.Con. In question is very large,
It can become very slow.

 3. ADO, is just another way of connecting to the server, it is very
outdated, but still works.Pro. Very similar to pass-through with much
more restrictions, it returns a data object that you can traverse through to
pull specific data you looking for.Con. Can be difficult to work with,
requires lots of additional work and if you're working with only one
language in this case VFP. It doesn't make sense to use it

 3. SQL Server data provider, I really never worked with this because it
just seems to me, It is a waste of time. When it comes to actually working
with VFP and MS SQL Server. There are some data engines out there where you
have only the choice of using the data provider. It is mostly used in
the.net world,  guessing.

 For my money, when it comes to using VFP. I would much rather prefer
option 1, the pass-through and handling my connections programmatically.
Therefore, do not have to set up any data source names on the client
machines, which is a huge timesaver and gives you much more security. In
fact, all of your connection string information can be stored in a table.

 I genuinely use remote views for quick and dirty stuff. But I have used
the remote view on a project with great success, and I do have to admit it
really was a timesaver.

 There are all kinds of examples online and the VFP help does provide good
health and examples.

 Be careful, VFP can really spoil you and make life easy for you. When
connecting to third-party databases. So if you like me, who jumps back and
forth between .net and Visual FoxPro, you start to realize how  it is using
Visual FoxPro g


 Cheers,
 Claude
 Mesquite Information Technologies, LLC.





 -Original Message-
 From: Laurie Alvey [mailto:trukke...@gmail.com]
 Sent: Monday, July 13, 2015 3:30 AM
 To: ProFox Email List
 Subject: Re: SQL Server 2014

 There's also quite a bit in the VFP9 help file.
 Laurie

 On 11 July 2015 at 13:17, Rafael Copquin rcopq...@yahoo.com.ar wrote:

 I can recommend this book, which you can get at www.hentzenwerke.com
 Client-Server Applications with Visual FoxPro 6.0 and SQL Server 7.0


   Building Client-Server Applications with Visual FoxPro 6.0 and SQL
 Server 7.0

 by Chuck Urwiler and others

 It is a good primer that will teach you the basics on how to use VFP
 with SQL Server. And there are a few white papers in the web that you
 can consult

 Rafael Copquin


 El 11/07/2015 a las 0:56, Geoff Flight escribió:

 I'm. back again.  I have SQL Server 2014 and want to use a basic VFP
 program to access data in it.  Pretty easy except Ive never done it
 and its been a few years since I played around with it.  Can someone
 recommend a good book that could talk me thru the basics?  I had Les
 Pinter's book but I have put it away safely never to be seen again.

 Thanks people!

 Geoff



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: 

RE: VFP Interface to Google Calendar etc..

2015-12-08 Thread José Enrique Llopis
My real estate application has an interface with Google Calendar, written
only with VFP code, no activex.

I can prepare it as a separate product, free of charge, but it would need
time to do so, is a very complex program.


Jose Enrique Llopis
www.multilinkcrm.com




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: martes, 08 de diciembre de 2015 16:26
Para: ProFox Email List
Asunto: VFP Interface to Google Calendar etc..

Gentlemen and Ladies,
Anyone out there have some up to date information on how to interface from
VFP into Google, initially the Calendars.

I know Mike Babcock had a thread about this back in 2012 and there is a lot
of information available but all of it is very out of date.

Requirement here is to interface a local VFP based diary system (My original
Open Source Organizerproject) into the Google calendar and build on this to
incorporate Google Docs with document sharing etc...

Any info welcome...

Dave


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/BF12AB7D07E64D5D86F772F94FD95DF5@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP Interface to Google Calendar etc..

2015-12-08 Thread José Enrique Llopis

I think that is too complex to explain it quickly, I think that it is easier
for my prepare a stand-alone version that explain in detail, the coming week
could have it completed

J.E. Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: martes, 08 de diciembre de 2015 16:57
Para: ProFox Email List
Asunto: RE: VFP Interface to Google Calendar etc..

Jose,
I don't want to put you to any great work but even a pointer in the right
direction would be useful.

Dave

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of José Enrique
Llopis
Sent: 08 December 2015 15:55
To: 'ProFox Email List' <profox@leafe.com>
Subject: RE: VFP Interface to Google Calendar etc..

My real estate application has an interface with Google Calendar, written
only with VFP code, no activex.

I can prepare it as a separate product, free of charge, but it would need
time to do so, is a very complex program.


Jose Enrique Llopis
www.multilinkcrm.com




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: martes, 08 de diciembre de 2015 16:26
Para: ProFox Email List
Asunto: VFP Interface to Google Calendar etc..

Gentlemen and Ladies,
Anyone out there have some up to date information on how to interface from
VFP into Google, initially the Calendars.

I know Mike Babcock had a thread about this back in 2012 and there is a lot
of information available but all of it is very out of date.

Requirement here is to interface a local VFP based diary system (My original
Open Source Organizerproject) into the Google calendar and build on this to
incorporate Google Docs with document sharing etc...

Any info welcome...

Dave


--- StripMime Report -- processed MIME parts --- multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/6B94AD889F0D40D2B3022F52956C59A2@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP Interface to Google Calendar etc..

2015-12-09 Thread José Enrique Llopis
Ok

Next Week :-)


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de
mbsoftwaresoluti...@mbsoftwaresolutions.com
Enviado el: miércoles, 09 de diciembre de 2015 22:10
Para: ProFox Email List
Asunto: RE: VFP Interface to Google Calendar etc..

On 2015-12-08 10:55, José Enrique Llopis wrote:
> My real estate application has an interface with Google Calendar, 
> written
> only with VFP code, no activex.
> 
> I can prepare it as a separate product, free of charge, but it would 
> need
> time to do so, is a very complex program.
> 
> 
> Jose Enrique Llopis
> www.multilinkcrm.com


Hola Jose,

Sounds great.  When you have something to share, please upload it to the 
ProFox downloads page so that it's easily accessible for other folks.  
Site here:  http://leafe.com/dls/vfp

Thanks!
--Mike


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/FD4CFB82BC5F41C8897BCFA1269AADF3@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Generate a report in local language (India)

2016-07-18 Thread José Enrique Llopis
You can find a sample here of how to print a rtf content inside a FoxPro
report

https://support.microsoft.com/en-us/kb/246088

It works for me in Russian language, I use XFRX libs and reports in Russian
are converted to pdf and other formats without problems.

RTF admits languages different than English and Spanish. Sorry I cannot test
it in your language.

Jose Enrique Llopis





-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ajoy Khaund
Enviado el: lunes, 18 de julio de 2016 12:13
Para: profox
Asunto: Re: Generate a report in local language (India)

Thanks all of you.

Ted from google I did read the link you have given. That will be be the
first step I have to cross.


Jose Enrique Llopis: I will try to download your demo and check

Man-wai Chang: Yes I am sure crystal report will be the best to print.
Infact I was checking the price. Lets see if I can download a demo.

Thanks again

On Mon, Jul 18, 2016 at 12:27 AM, José Enrique Llopis <fut...@lobocom.es>
wrote:

>
> My Real Estate CRM prints reports in Russian and chinese, it works
printing
> a RTF with a general field, you can find a lot of samples of how to print
> RTF content in a report in foxite. To save the rtf data I use the richtext
> activeX and content is stored in a general field.
>
> You can download a demo version from my Website: www.multilinkcrm.com and
> test if it works in Indian language.
>
> I'm now translating the interface to English but at this moment is only
> available in Spanish, perhaps in two month or so, sorry.
>
> Jose Enrique Llopis
>
>
>
>
>
>
>
>
> -Mensaje original-
> De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ted Roche
> Enviado el: domingo, 17 de julio de 2016 16:38
> Para: profox@leafe.com
> Asunto: Re: Generate a report in local language (India)
>
> VFP was one of the first MS apps to support internationalization, but
> it was designed to work with the multi-byte character set (MBCS) and
> Code Pages that were the Microsoft solution, instead of the
> then-nascent Unicode efforts. Consequently, Unicode support in VFP is
> difficult and not the native behavior, so your success may depend on
> whether there is good support of Assamese in code pages and MBCS
> fonts.
>
> I've only done internationalization with European languages sharing
> their common character set, so I'm not sure of all the issues you may
> run into.
>
> The reference tool in the VFP world is Intl,
> http://stevenblack.com/intl/. Check out the GOTCHAS link and
> VFP International Issues" also listed on that page for some suggestions.
>
> Good luck!
>
>
> On Sat, Jul 16, 2016 at 11:26 AM, Ajoy Khaund <akha...@gmail.com> wrote:
> > Dear All,
> >
> > I need to know if I can generate the payslip of a worker in my payroll
> > module in
> > Assamese (Local language of Assam in India).
> >
> > We are using English(UnitedStates) languge windows OS.
> >
> > Fonts for this local language are available. Is it possible to change
> > say the Gross Salary from English to another language while printing.
> >
> > Kindly point me in the right direction.
> >
> > Thanks all.
> >
> > --
> > Regards,
> >
> > Ajoy Khaund
> > Neamati Road
> > Bhogdoi Mukh
> > Jorhat 785001
> > Assam, India
> >
> > Tel: 91-376-2351288
> > Cell: 91-94350-92287
> > Mail: akha...@hotmail.com
> > Mail: akha...@gmail.com
> > http://teaanalyst.blogspot.com/
> >
> >
> > "Walking on water and developing software from a specification are easy
> if
> > both are frozen."
> > - Edward  V. Berard, "Life-Cycle Approaches"
> >
> >
> > --- StripMime Report -- processed MIME parts ---
> > multipart/alternative
> >   text/plain (text body -- kept)
> >   text/html
> > ---
> >
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/8DD1892E5637400586B4F9F466D4F260@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Generate a report in local language (India)

2016-07-17 Thread José Enrique Llopis

My Real Estate CRM prints reports in Russian and chinese, it works printing
a RTF with a general field, you can find a lot of samples of how to print
RTF content in a report in foxite. To save the rtf data I use the richtext
activeX and content is stored in a general field.

You can download a demo version from my Website: www.multilinkcrm.com and
test if it works in Indian language.

I'm now translating the interface to English but at this moment is only
available in Spanish, perhaps in two month or so, sorry.

Jose Enrique Llopis








-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ted Roche
Enviado el: domingo, 17 de julio de 2016 16:38
Para: profox@leafe.com
Asunto: Re: Generate a report in local language (India)

VFP was one of the first MS apps to support internationalization, but
it was designed to work with the multi-byte character set (MBCS) and
Code Pages that were the Microsoft solution, instead of the
then-nascent Unicode efforts. Consequently, Unicode support in VFP is
difficult and not the native behavior, so your success may depend on
whether there is good support of Assamese in code pages and MBCS
fonts.

I've only done internationalization with European languages sharing
their common character set, so I'm not sure of all the issues you may
run into.

The reference tool in the VFP world is Intl,
http://stevenblack.com/intl/. Check out the GOTCHAS link and
VFP International Issues" also listed on that page for some suggestions.

Good luck!


On Sat, Jul 16, 2016 at 11:26 AM, Ajoy Khaund  wrote:
> Dear All,
>
> I need to know if I can generate the payslip of a worker in my payroll
> module in
> Assamese (Local language of Assam in India).
>
> We are using English(UnitedStates) languge windows OS.
>
> Fonts for this local language are available. Is it possible to change
> say the Gross Salary from English to another language while printing.
>
> Kindly point me in the right direction.
>
> Thanks all.
>
> --
> Regards,
>
> Ajoy Khaund
> Neamati Road
> Bhogdoi Mukh
> Jorhat 785001
> Assam, India
>
> Tel: 91-376-2351288
> Cell: 91-94350-92287
> Mail: akha...@hotmail.com
> Mail: akha...@gmail.com
> http://teaanalyst.blogspot.com/
>
>
> "Walking on water and developing software from a specification are easy if
> both are frozen."
> - Edward  V. Berard, "Life-Cycle Approaches"
>
>
> --- StripMime Report -- processed MIME parts ---
> multipart/alternative
>   text/plain (text body -- kept)
>   text/html
> ---
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/5541335E87C54539ADE4CA46C41F711D@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: CleverFox Backup

2017-01-30 Thread José Enrique Llopis
+1


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de
mbsoftwaresoluti...@mbsoftwaresolutions.com
Enviado el: domingo, 29 de enero de 2017 5:37
Para: ProFox Email List
Asunto: Re: CleverFox Backup

On 2017-01-27 14:25, Ted Roche wrote:
> Or you could pay someone else to do it for you, mark it up and charge
> it to the customer.


Oh I definitely think they've got what sounds like a great product, and 
I only wish I had lots of Fox databases out there so that I *could* 
become a reseller...but alas, I don't.  I've been using MySQL as my 
preferred backend of choice since 2004.  FabMate Lite Classic, though 
(from 2003) still uses DBFs.  I have 2 clients using that.  I will 
probably recommend Rick's utility to them.

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/AD7742569C7340219E7BA21B61E6582C@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: 3 days no posts....

2017-01-25 Thread José Enrique Llopis
Noches  :-)

23:03pm now here.



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kurt Wendt
Enviado el: miércoles, 25 de enero de 2017 22:58
Para: profox@leafe.com
Asunto: RE: 3 days no posts

Buenas Dias!

Regards,
Kurt Wendt
Senior Systems Analyst 


Tel. +1-212-747-9100
www.GlobeTax.com


-Original Message-
From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of José
Enrique Llopis
Sent: Wednesday, January 25, 2017 4:47 PM
To: profoxt...@leafe.com
Subject: RE: 3 days no posts

Greetings from the other side of the world!

Jose Enrique Llopis
Alicante - Spain


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: miércoles, 25 de enero de 2017 18:50
Para: ProFox Email List
Asunto: 3 days no posts

Just to let the rest of the world know we are still here!

Dave

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/A6E113F7E27C42FEA49D0A94AE5A94E3@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: 3 days no posts....

2017-01-25 Thread José Enrique Llopis
Greetings from the other side of the world!

Jose Enrique Llopis
Alicante - Spain


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: miércoles, 25 de enero de 2017 18:50
Para: ProFox Email List
Asunto: 3 days no posts

Just to let the rest of the world know we are still here!

Dave

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/4C7DE02551B4429B8FC3A0570734A57D@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: 3 days no posts....

2017-01-26 Thread José Enrique Llopis

Cool!!




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Paul Newton
Enviado el: jueves, 26 de enero de 2017 10:10
Para: profox@leafe.com
Asunto: RE: 3 days no posts

It was a boy 

https://drboli.wordpress.com/2009/03/06/the-little-dutch-boy-who-saved-holla
nd/


-Original Message-
From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Kurt at
VR-FX
Sent: 26 January 2017 00:36
To: profoxt...@leafe.com
Subject: Re: 3 days no posts

Ur Dutch?

Does that girl still have her finger in the hole in the Dike??

Hope I spelled that last word right - if NOT - I did NOT Mean it that way!

:-)

-K-

On 1/25/2017 7:22 PM, Koen Piller wrote:
> Hi,
> here are the results from the Dutch jury next!
>
> 2017-01-25 18:49 GMT+01:00 Dave Crozier :
>
>> Just to let the rest of the world know we are still here!
>>
>> Dave
>>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/120B4BF583F84822BB9F36D8ECD284BE@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Anti-Virus Programs

2017-02-20 Thread José Enrique Llopis

Bitdefender here.

Jose Enrique Llopis
www.multilinkcrm.com


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de John Weller
Enviado el: lunes, 20 de febrero de 2017 22:33
Para: profox@leafe.com
Asunto: [NF] Anti-Virus Programs

I have been asked to give a talk to a local pensioner's organisation on
internet security.  One of the points I will make is that you need a good
anti-virus.  I have used M$ Security Essentials and now Windows Defender on
Win 10 for some years without any problems, largely as a result of
recommendations here.  In a recent magazine article in UK they were saying
that Defender is not very good only picking up 75% of viruses in a test.
They were advocating Kaspersky; the fact that they were offering it at a
discount but were undoubtedly getting a cut may have influenced their
decision.  What anti-virus are you using?  Do you still recommend Defender?
Any thoughts or comments?  I will be recommending one to the pensioners so
will be going for one of the free ones.

Thanks

John

John Weller
01380 723235
07976 393631



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/AF301D51DA4B49E1B383A3CCAAAE7DDF@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Friday Poll (while dl'ing MS Flash Patch)

2016-10-28 Thread José Enrique Llopis

__ DBFs   80% clients

__ MS SQL Server   20% clients


Jose Enrique Llopis
www.multilinkcrm.com




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ted Roche
Enviado el: viernes, 28 de octubre de 2016 15:01
Para: profox@leafe.com
Asunto: Friday Poll (while dl'ing MS Flash Patch)

So, where's your data stored today?

__ DBFs

__ MS SQL Server

__ Azure

__ Postgres

__ My/MariaDB

__ Oracle

__ Excel

__ Other (please specify)


(P.S. Microsoft released an out-of-band (i.e., emergency) patch for
Adobe Flash. You likely want to patch NOW. After answering the poll,
of course.)

-- 
Ted Roche
Ted Roche & Associates, LLC
http://www.tedroche.com

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/B3B7F030BB7E49A1BD2A9E10568108A8@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Friday Poll: What framework(s) do you use?

2016-11-07 Thread José Enrique Llopis
++1

-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Jean Laeremans
Enviado el: lunes, 07 de noviembre de 2016 16:57
Para: ProFox Email List
Asunto: Re: Friday Poll: What framework(s) do you use?

+1

On Mon, Nov 7, 2016 at 4:40 PM, Dave Crozier  wrote:

> Frameworks are ok but only when you want to do the things that the
> framework allows.
>
> I also find that a set of classes, well written and tested are the best
> way to generate an application and they are easily updateable/modified
> using either a bae class update or using subclassing.
>
> Dave
>
> -Original Message-
> From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Kurt Wendt
> Sent: 07 November 2016 15:25
> To: profox@leafe.com
> Subject: RE: Friday Poll: What framework(s) do you use?
>
> Hey Ted - I hear ya - as I can also type fast. Learned touch-typing back
> in my Jr. year in high school - and it's a skill I have kept using ever
> since way back then. Also - glad to know I'm within the avg. re:Frameworks
> usage!
>
> Regards,
> Kurt Wendt
> Senior Systems Analyst
>
>
> Tel. +1-212-747-9100
> www.GlobeTax.com
>
>
> -Original Message-
> From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ted
> Roche
> Sent: Friday, November 04, 2016 3:31 PM
> To: profoxt...@leafe.com
> Subject: Re: Friday Poll: What framework(s) do you use?
>
> On Fri, Nov 4, 2016 at 2:37 PM, Kurt Wendt 
> wrote:
>
> > Ted - You must have a Lot of extra time on your hands - what with
> creating all these Polls!
>
> I type fast. And it's not like I haven't thought about this stuff for 25
> years.
>
> And my commute averages around zero minutes.
>
> > Myself - never really worked within Frameworks. They just weren't used
> on the various jobs I worked at. I did work on this one system - where
they
> guy had created Classes - and I used his existing classes to create new
> screens. But, that's about it...
>
> That's the general consensus, it seems.
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/874066D2F17C48ACA477C8B17ECAE17A@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Friday Poll: What framework(s) do you use?

2016-11-07 Thread José Enrique Llopis


Build Your Own Framework with Visual FoxPro
Ken Chazotte
Hentzenwerke Publishing

Fantastic book, helps me a lot


Jose Enrique Llopis
www.multilinkcrm.com



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ajit Abraham
Enviado el: lunes, 07 de noviembre de 2016 18:00
Para: profox@leafe.com
Asunto: Re: Friday Poll: What framework(s) do you use?

Build my own set of custom classes (not worthy of calling a 'framework' 
) but works for all my in-house projects.

Spend lot of time building a Data layer on the premise that I will 
change the backend to mysql or mssql from vfp tables at some time in the 
future.

Sadly, that is not going to happen, as the the 'frontend' for the users 
has changed to browsers and mobile.

Currently experimenting on a free utility build by Dicky Suryadi 
(dotnetify.net) where I can control the frontend browser with C# code 
from the backend - instead of messing with too much of frontend 
javascript or the traditional post/get requests.
This utility cleverly uses SignalR and knockout.js to achieve its 
results and there is no need to know the workings of either technology 
(in most cases) when working with dotnet.

Ajit Abraham



On 07-Nov-16 6:25 PM, Kurt Wendt wrote:
> Hey Ted - I hear ya - as I can also type fast. Learned touch-typing back
in my Jr. year in high school - and it's a skill I have kept using ever
since way back then. Also - glad to know I'm within the avg. re:Frameworks
usage!
>
> Regards,
> Kurt Wendt
> Senior Systems Analyst
>
>
> Tel. +1-212-747-9100
> www.GlobeTax.com
>
>
> -Original Message-
> From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Ted
Roche
> Sent: Friday, November 04, 2016 3:31 PM
> To: profoxt...@leafe.com
> Subject: Re: Friday Poll: What framework(s) do you use?
>
> On Fri, Nov 4, 2016 at 2:37 PM, Kurt Wendt 
wrote:
>
>> Ted - You must have a Lot of extra time on your hands - what with
creating all these Polls!
> I type fast. And it's not like I haven't thought about this stuff for 25
years.
>
> And my commute averages around zero minutes.
>
>> Myself - never really worked within Frameworks. They just weren't used on
the various jobs I worked at. I did work on this one system - where they guy
had created Classes - and I used his existing classes to create new screens.
But, that's about it...
> That's the general consensus, it seems.
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/6344B02B22CF465B824B1FB3CFF82F77@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Chilkat SFTP component.

2016-10-11 Thread José Enrique Llopis


I use FTP and sFTP chilkat activex on my apps www.multilinkcrm.com 

Fantastic product, works very well, worth the Money.


Jose Enrique Llopis




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Alan Bourke
Enviado el: martes, 11 de octubre de 2016 16:42
Para: profoxt...@leafe.com
Asunto: Chilkat SFTP component.

Anyone used this? Good\bad\indifferent?

Or any other SFTP solution?


--
  Alan Bourke
  alanpbourke (at) fastmail (dot) fm



--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/BBF033941AD648B7A04041D7E5A66856@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP 5.0 AND WINDOWS 10

2016-10-13 Thread José Enrique Llopis
+1


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: jueves, 13 de octubre de 2016 12:15
Para: ProFox Email List
Asunto: RE: VFP 5.0 AND WINDOWS 10

William,
Why not upgrade to VFP 9 and remove the source of your problems

Oh and PLEASE DO NOT SHOUT

Dave

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of William Tormey
Sent: 13 October 2016 00:22
To: profox@leafe.com
Subject: VFP 5.0 AND WINDOWS 10

HI ALL.
OUR SUPPORTFORAMLIRELAND @INDIGO.IE EMAIL ACCOUNT IS GONE THANKS TO TELECOM
EIREANN-EIRCOM-EI. THEY HAVE BEEN TAKEN OVER TWICE AND THE NEW OWNERS HAVE
BEEN LIFTING COPPER AND LAYING FIBER. NO TIME TO FIX MY EMAIL NOR RECOVER
ITS DATA.

MEANWHILE VFP5.0 AND WINDOWS 10 HAVE BEEN DAMAGING POOR M$'S REGISTRY LIKE
IT IS A MORTAL ENEMY, CAUSING FREQUENT ENTIRE REBUILDS AND AN EXISTENTIAL
CRISES WAY BEYOND BRITexit.

HAS ANYONE GOT VFP5.0 OR LATER REVS  AND WIN 10 TO LIVE TOGETHER FOR LONG.
OUR APP HAS REACHED THE STAGE WHERE FOUR EXE'S RUN  SIMULTANEOUSLY SOMETIMES
ON ONE ASUS  A55BM-E WITH A VARIETY OF SATA DRIVES (SSD AND HARD)
CONTROLLING A FEED MILL WITH SEVEN  FTDI USB M$ CERTIFIED DRIVERS DEVICES,
USB TO RS232.

THANKS TO ED. HE HAS HELPED ME  WITH  USING  tormeywill...@yahoo.com  WITH
PROFOX, BUT I HAVE A FEELING THERE IS A BETTER WAY. 

WILLIAM



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/E2A5C2C96C0644B29CEE90DCCFC88E50@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] New MBSoftwareSolutions.com website

2016-12-18 Thread José Enrique Llopis
Works VERY well on my Lumia 950

Cool, I love the design, very nice.

Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de
mbsoftwaresoluti...@mbsoftwaresolutions.com
Enviado el: jueves, 15 de diciembre de 2016 22:01
Para: ProFox
Asunto: [NF] New MBSoftwareSolutions.com website

http://mbsoftwaresolutions.com

Check it out...all comments welcome!


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/94B73ADAE8CC4196B56E13D49F627507@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Hardware vs Software Router/Firewall Recommendations

2016-12-22 Thread José Enrique Llopis
+1


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: jueves, 22 de diciembre de 2016 9:34
Para: ProFox Email List
Asunto: RE: [NF] Hardware vs Software Router/Firewall Recommendations

Ken,
We use a pair of Sonicwall Network Security Appliances which are due for
renewal and we are upgrading to the latest ones. They are completely
seamless, fit in with active directory no problem and are very configurable.
Recommended but not cheap!

Dave

-Original Message-
From: ProFox [mailto:profox-boun...@leafe.com] On Behalf Of Ken Dibble
Sent: 21 December 2016 18:22
To: profox@leafe.com
Subject: [NF] Hardware vs Software Router/Firewall Recommendations

Hi folks,

Looks like our "ancient" (2008) CISCO router has died.

I would appreciate the benefit of your experience regarding hardware vs
software routers/firewalls to help me evaluate replacement options.

Our current network uses 1 GB switches and has about 150 machines, and there
can be at least that many people simultaneously using the network and our 25
mbps synchronous internet connection (including people hooking into our
internet from smart phones and tablets). Most servers, including the domain
controller, are virtualized and we are using a SAN for storage (two
identical Synology Linux NAS devices). 
We have a 10 GB switch for virtual server/storage connectivity.

We do not host external (internet) email or websites on our network.

We've had slow growth in the number of machines and users (+/- 5% per
year) over the past decade.

We've always used the NAT functionality of the CISCO to provide a firewall
and we only rarely allow anything to punch through it. The main exception
would be our RDP server, which is in frequent use by between 5 and 10
simultaneous connections.

My understanding is that a software router/firewall running on an ordinary
PC is likely to be slower than a dedicated hardware device. 
However, is the difference so significant for a network like mine as to rule
out a cheaper software solution?

Do you have preferences for specific devices or software packages?

What do you all think?

Many thanks.

Ken Dibble
www.stic-cil.org


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/8DF3875959DA4042B49A6581C1F9DA86@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP and fingerprint scanner

2017-03-25 Thread José Enrique Llopis

In my experience fingerprint scanners are very unreliable, is very easy to
hack it, some even with a photocopy of the finger.

You can use hand readers for low security environments like this

http://us.allegion.com/Products/time_attendance/g_series/gt400/Pages/default
.aspx

Or more safe solutions to access high security areas, like palm readers with
vein pattern recognition technology 

http://www.fujitsu.com/us/solutions/business-technology/security/palmsecure/

Or still more advanced.

https://www.morpho.com/

Of course it depends on the use to which it is intended

Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Wes Wilson
Enviado el: jueves, 23 de marzo de 2017 20:22
Para: profox@leafe.com
Asunto: VFP and fingerprint scanner

We have a client who has his employees clock in using a barcode that has
their employee ID in it.
They want to replace that with a fingerprint scanner.
Can this be done?  If so, what make,model scanner should we get? Thanks,Wes
Text CONVERTVFPNOW to 44222 to stay informed about the end of Visual FoxPro
or email back  to us and ask us to put you on our newsletter list.
Wes Wilson, President   ERW Custom Programming, Inc. Crescent Lake Plaza
5459  Elizabeth Lake Rd.
Waterford, MI 48327 
(248) 683-4182 
LinkedIn Profile
 "Companies pay too much attention to the cost of doing something.  
They should worry more about the cost of not doing it"  Philip Kotler
www.erw.com weswil...@erw.com


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/A3F4E99F475D4F1A933E8FD348A6A813@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Printing native VFP reports to other types (like XLSX, PDF, DOCX, etc.)

2017-03-16 Thread José Enrique Llopis
I use XFRX

http://www.eqeus.com/


Jose Enrique Llopis
www.multilinkcrm.com


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de
mbsoftwaresoluti...@mbsoftwaresolutions.com
Enviado el: jueves, 16 de marzo de 2017 17:43
Para: ProFox
Asunto: Printing native VFP reports to other types (like XLSX, PDF, DOCX,
etc.)

Wanted to see what folks are using for this?  Years ago I had XFRX for 
various outputs.

tia,
--Mike


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/8A1310AA24094D879D1C46ACBCDEF5E4@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: R.I.P. Marcia Akins

2017-03-14 Thread José Enrique Llopis

Very shocking news, I've learned a lot from Marcia’s articles, is a big loss

My deepest condolences to their family

Jose Enrique Llopis
Spain


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Jean Laeremans
Enviado el: martes, 14 de marzo de 2017 15:01
Para: ProFox Email List
Asunto: R.I.P. Marcia Akins

Some of you who participate on the Universal Thread might already be aware
of this.
This morning Andy Kramek emailed me and told me of the very untimely
passing of Marcia Akins.

He asked me to post the following message on his behalf:








*I am sorry to tell you that Marcia died peacefully and without stress or
discomfort at just after 11:00 am this morning (Sunday 12 March) in the
hospital at the University of Arkansas For Medical Sciences (UAMS). She
collapsed last Saturday at the airport on the way to visit her sister and
was taken to hospital. She was diagnosed with Hyponatremia (low Sodium)
which it appears either caused, or was caused by, severe acute hepatitis.
Unfortunately she did not respond to treatment and declined suddenly and
rapidly. She didn’t suffer at all and her end was so peaceful that her
friend Joanie and I, who were both with her, didn’t even realize that she
had stopped breathing for several minutes. She will, in accordance with her
wishes be cremated, and we will be holding some sort of memorial for her
and a wake (you know how much Marcia loved a good party) sometime in the
not-too-distant future here in Hot Springs Village. No flowers please, and
if anyone wishes to make a donation in her name, her favorite charity was
Disabled American Veterans. *




My apologies if I've posted this in the wrong category area.

Very sad news.

Kevin


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/D82EDF0B33D949AE8DC536030C800E63@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Syncing data locally from a remote database

2017-07-12 Thread José Enrique Llopis


Another possibility: do not synchronize anything, access remotely with
Remote Desktop

Jose Enrique Llopis

-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de
mbsoftwaresoluti...@mbsoftwaresolutions.com
Enviado el: miércoles, 12 de julio de 2017 19:52
Para: ProFox
Asunto: Syncing data locally from a remote database

VFP9SP2 app, MySQL(MariaDB) secure database on web

Scenario:  customer uses my software but has an extremely slow 
connection to the remote database and as such, queries involving large, 
sometimes-changing lookup data is slow.
Solution:  pull data locally for quick lookup.  This works if I can do 
some sort of Sync operation to make sure the local copy matches the 
remote copy.

The Primary Keys are varchar-40 GUID, and there's a timestamp field as 
well.  My thought was to use those 2 fields for the sync.  If it exists 
in both and the remote timestamp is newer, update the local record.  If 
it exists in the remote but not locally, add it local.  If it exists in 
the local but not in the remote, delete it from local.  Any new adds or 
updates to existing records will then be done to the remote database and 
then echoed locally.

I was thinking I'd setup MariaDB locally for this local database.

Comments on that plan of attack?

tia,
--Mike


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/93B7291099EE4202A1B21F5CF52DD74D@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP and Gmail

2017-06-07 Thread José Enrique Llopis

Honestly I think it would be best not to use GMAIL but to use external SMTP
server, it is not expensive and you can work without problems.

I use Chilkat DLLs in my e-mail marketing program.

Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de rafael copquin
Enviado el: martes, 06 de junio de 2017 13:54
Para: ProFox Email List
Asunto: VFP and Gmail

I just delivered a new system which includes a mailing function.

The client needs to send 500 to 700 invoices per month to its customers, 
in PDF format.

They use gmail

Question:

How many emails does Gmail accept to be mailed in a single shot?

I was told that they have a limit which, when surpassed, blocks Gmail

Anybody?

Thank you

Rafael Copquin



[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/7DB3EC661F88437C89B413E96912CC7A@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Janis Booth, RIP

2017-09-12 Thread José Enrique Llopis

Rest in peace

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ted Roche
Enviado el: martes, 12 de septiembre de 2017 15:00
Para: profox@leafe.com
Asunto: Janis Booth, RIP

I'm sad to pass on news that Janis Booth has passed away. Janis may be
more familiar to you as "Jim" during her active FoxPro career. She was
66.

Janis was a 2013 winner of the FoxPro Lifetime Achievement Award [1],
a Microsoft MVP 1993-2003, a key member of the 1994 Microsoft MVP
Steering Committee, author of Hentzenwerke's "Effective Techniques"
with Steve Sawyer, updated by dFPUG for VFP 9[2], co-author of "Visual
FoxPro Unleashed" from Sams, a frequent magazine contributor,
including the premiere issue of FoxPro Advisor, and a speaker at
conferences in North America and Europe. [3]

Where ever Janis was at a conference, there was likely to be a party.
A LOUD party.  And scotch. Tom Rettig taught her appreciation of good
single-malt. I will raise a glass of Macallen tonight, hoping that Tom
and Janis are, too.

In later years, Janis was an activist with various community outreach
organizations, advocating for the fair treatment of LGBT people.

Janis was my friend for many years, and I will miss her.

[1] http://fox.wikis.com/wc.dll?Wiki~FoxProCommunityLifetimeAchievementAward
[2] http://shop.dfpug.de/ProductDetails.aspx?productID=904
[3] http://www.hentzenwerke.com/catalog/booth_jim.htm

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/CF79613FE310478E8BFCEDAA4C9F1A32@PepiHPLaptop
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: VFP - What upgrades would VFP10 have had...

2017-10-20 Thread José Enrique Llopis
64 bits version, integration with WPF,...

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: viernes, 20 de octubre de 2017 11:14
Para: ProFox Email List
Asunto: VFP - What upgrades would VFP10 have had...

Alan's comment post regarding VFP not having any upgrades put me in the
realm of thinking that IF VFP development had continued what updates and
additions we could have seen.

Floor open to anyone with useful additions.

For myself I'll start off with:

   Native 64bit support
   
Dave


[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/D03500A0575844B78475C6D96E201686@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: BitDefender Doesn't Play Well With VFP

2017-12-05 Thread José Enrique Llopis

Same here, no problem with BitDefender in four or five years.

Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Darren
Enviado el: martes, 05 de diciembre de 2017 17:40
Para: profox@leafe.com
Asunto: RE: BitDefender Doesn't Play Well With VFP

I've been using the Bitdefender for maybe 4 years now with zero issue re
VFP. The only fox related issue is with Refox, which I use rarely, and that
was getting blocked. Added an exception in the "Advanced Threat Defense"
module and sweet from there.

 
-Original Message-
From: ProfoxTech [mailto:profoxtech-boun...@leafe.com] On Behalf Of Paul H.
Tarver
Sent: Wednesday, 6 December 2017 2:35 AM
To: profoxt...@leafe.com
Subject: BitDefender Doesn't Play Well With VFP

Just wanted to throw this out and see if anyone is running into something
similar. 

 

I have been wanting to find a new AV tool for my system and have been
testing BitDefender for the last few weeks. I started with the free version
and upgraded to the paid version after I realized the free version didn't
let me exclude processes or files or folders. 

 

However, since I've upgraded, I found that there is apparently something
BitDefender doesn't like about some of the stuff Foxpro does during
compilation (it crashes before completion and throws an error about unable
to write to the path). Alternatively, when I run my modified GENDBC.prg to
create a dbcbuilder file used by my applications, not only does it crash it
trashes the DBC file being processed. 

 

I've tried excluding VFP6 and VFP9 processes and I've tried excluding files
to no avail. The only solution is to go into BitDefender and turn it off for
15 minutes or so and then I can complete the GENDBC or compilation process
without any problems. 

 

So here's my questions:

 

1)  Is there something I need to do different with BitDefender to make
be more friendly to VFP?

2)  Should I just dump Bitdefender and go with a different AV tool? If
so, what's the recommended tool.

 

Thanks!

 

Paul H. Tarver
  p...@tpcqpc.com

 

 



--- StripMime Report -- processed MIME parts --- multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/45B879EC05D64B43AB333AE3955CF36E@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: [NF] Meltdown and Spectre CPU Flaw Information

2018-01-05 Thread José Enrique Llopis

A very interesting and realistic report on this subject


https://researchcenter.paloaltonetworks.com/2018/01/threat-brief-meltdown-sp
ectre-vulnerabilities/?utm_source=Adobe+Campaign+-+ACS_medium=email_
campaign=20180105.NL.unit42.PANW_subs.threat.global.xx.xx=DM170
8



Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de AndyHC
Enviado el: jueves, 04 de enero de 2018 18:46
Para: profox@leafe.com
Asunto: Re: [NF] Meltdown and Spectre CPU Flaw Information

Nah! - nothing to worry about here - just an old government backdoor 
into - er - everything.

On 04-Jan-2018 10:57 PM, Ken Dibble wrote:
> Hi folks,
>
> Ask Woody has a very thorough report on this, with links to more 
> information.
>
> We all need to be fully informed about this; it is going to affect 
> everybody.
>
> https://www.askwoody.com/
>
> Ken Dibble
> www.stic-cil.org
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/352B762C35D648EC8126D51690F8D38A@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Licensing strategy

2018-02-06 Thread José Enrique Llopis
My real Estate app uses two different licensing schemas:

Per installed PC
Per concurrent user when installed on a Remote Desktop / Terminal Server
system.


Jose Enrique Llopis
www.multilinkcrm.com





-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Thierry Nivelet
Enviado el: martes, 06 de febrero de 2018 21:55
Para: profox@leafe.com
Asunto: Re: Licensing strategy

license per concurrent user also works for web deployment

Thierry Nivelet
FoxInCloud
Give your VFP app a second life in the cloud
http://foxincloud.com/

Le 06/02/2018 à 21:19, mbsoftwaresoluti...@mbsoftwaresolutions.com a écrit :
> If you were marketing a vertical app and pricing it per license, would 
> you consider a license specific to the installed machine or keep track 
> of users logged in and make sure the active user count doesn't go over 
> the # of licenses the client purchased?
>
> My VFP9SP2 app uses the latter, and goes against a MariaDB database.
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/F15CFE23CF5F4B14B1B17B856B1B3EFD@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Test One-Two, *tink* *tink* is this thing on?

2018-09-01 Thread José Enrique Llopis
Test Received!!!

Happy labor day weekend from Spain

Jose Enrique Llopis
www.multilinkcrm.com
 


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Ted Roche
Enviado el: viernes, 31 de agosto de 2018 15:41
Para: profox@leafe.com
Asunto: Test One-Two, *tink* *tink* is this thing on?

Just checking to see if the Internet has unsubscribed us all, again.

Happy Labor Day to my US friends and first-day of school to northern
hemisphere types.



-- 
Ted Roche
Ted Roche & Associates, LLC
http://www.tedroche.com


--- StripMime Report -- processed MIME parts ---
multipart/alternative
  text/plain (text body -- kept)
  text/html
---

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/CE2848AFCFE44C868F4D7BCEE3B5724D@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: hellooo-o

2018-01-13 Thread José Enrique Llopis
Greetings from Spain!!



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de AndyHC
Enviado el: sábado, 13 de enero de 2018 14:23
Para: profox@leafe.com
Asunto: hellooo-o

Knock knock!
Is there anybody there?

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/1658DC88B39549BFA9E7B0F07816F81F@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Facebook api

2018-03-09 Thread José Enrique Llopis
My real estate app has code to connect to FaceBook, Google drive, Azure,...,
i'm now rewriting the Facebook gateway, I will try to share it when
finished.

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kurt at VR-FX
Enviado el: jueves, 08 de marzo de 2018 3:09
Para: profox@leafe.com
Asunto: Re: Facebook api

Interesting Thread you started!

To be honest - I heard a while ago from this one person that you could 
use some kind of programming to do social media marketing via FaceBook. 
Some way to spread the word about something via FB. But, I have no idea 
how to do it - and I certainly could use that technique some time soon!

-K-


On 3/7/2018 9:00 PM, Kent Belan wrote:
> Hello,
>
> Does anyone have code to create a facebook post from your VFP9 app
> preferably with a picture ?
>
> Thanks,
> Kent
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/9E5782D3D000430289D3B18DDA91FF53@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Facebook api

2018-03-09 Thread José Enrique Llopis
The connection class form, sorry in spanish

-



My real estate app has code to connect to FaceBook, Google drive, Azure,...,
i'm now rewriting the Facebook gateway, I will try to share it when
finished.

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kurt at VR-FX
Enviado el: jueves, 08 de marzo de 2018 3:09
Para: profox@leafe.com
Asunto: Re: Facebook api

Interesting Thread you started!

To be honest - I heard a while ago from this one person that you could 
use some kind of programming to do social media marketing via FaceBook. 
Some way to spread the word about something via FB. But, I have no idea 
how to do it - and I certainly could use that technique some time soon!

-K-


On 3/7/2018 9:00 PM, Kent Belan wrote:
> Hello,
>
> Does anyone have code to create a facebook post from your VFP9 app
> preferably with a picture ?
>
> Thanks,
> Kent
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/2FCD169F6AD14FFA9D1B773DB7C9482B@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: Facebook api

2018-04-20 Thread José Enrique Llopis

You can download a sample of the connection with Facebook here.

https://1drv.ms/b/s!Am84v2bakeSZlax54aevVH7PIWBibg


Jose Enrique Llopis



-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Dave Crozier
Enviado el: lunes, 16 de abril de 2018 11:47
Para: ProFox Email List
Asunto: RE: Facebook api

Excellent, not sure I would have a need but there are many on here who may
be very interested.

Dave Crozier
Software Development Manager
Flexipol Packaging Ltd.



---
This communication and the information it contains is intended for the
person or organisation to whom it is addressed. Its contents are
confidential and may be protected in law. If you have received this e-mail
in error you must not copy, distribute or take any action in reliance on it.
Unauthorised use, copying or disclosure of any of it may be unlawful. If you
have received this message in error, please notify us immediately by
telephone or email.

Flexipol Packaging Ltd. has taken every reasonable precaution to minimise
the risk of virus transmission through email and therefore any files sent
via e-mail will have been checked for known viruses. However, you are
advised to run your own virus check before opening any
attachments received as Flexipol Packaging Ltd will not in any event accept
any liability whatsoever once an e-mail and/or any attachment is received.

It is the responsibility of the recipient to ensure that they have adequate
virus protection.

Flexipol Packaging Ltd.
Unit 14 Bentwood Road
Carrs
Industrial Estate
Haslingden
Rossendale
Lancashire
BB4 5HH

Tel:01706-222792
Fax: 01706-224683
www.Flexipol.co.uk
---

Terms & Conditions:

Notwithstanding delivery and the passing of risk in the goods, the property
in the goods shall not pass to the buyer until the seller
Flexipol Packaging Ltd. ("The Company") has received in cash or cleared
funds payment in full of the price of the goods and all other goods agreed
to be sold by the seller to the buyer for which payment is then due. Until
such time as the property in the goods passes to the buyer, the buyer shall
hold the goods as the seller's fiduciary agent and bailee and keep the goods
separate from those of the buyer and third parties and properly stored
protected and insured and identified as the seller's property but shall be
entitled to resell or use the goods in the ordinary course of its business.
Until such time as the property in the goods passes to the buyer the seller
shall be entitled at any time

-Original Message-
From: ProFox <profox-boun...@leafe.com> On Behalf Of José Enrique Llopis
Sent: 16 April 2018 10:40
To: 'ProFox Email List' <profox@leafe.com>
Subject: RE: Facebook api


My Facebook connection class is finished but

Facebook now requires applications to be reviewed by an FB technician and to
do that the app must be on the Windows Shop, you must indicate the Url and
SID of the App in the windows Shop. My application is not in the store, for
this I have to certify it first.

I think that all this is a consequence of the latest news about leaks of
information on Facebook

If you are still interested, I will publish the code that, of course, works.


Jose Enrique Llopis




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kent Belan Enviado
el: viernes, 09 de marzo de 2018 14:31
Para: 'ProFox Email List'
Asunto: RE: Facebook api

YES !! Please share when you have it updated !!

Thanks so much

-Original Message-
From: ProFox <profox-boun...@leafe.com> On Behalf Of José Enrique Llopis
Sent: Friday, March 9, 2018 4:40 AM
To: 'ProFox Email List' <profox@leafe.com>
Subject: RE: Facebook api

The connection class form, sorry in spanish

-



My real estate app has code to connect to FaceBook, Google drive, Azure,...,
i'm now rewriting the Facebook gateway, I will try to share it when
finished.

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kurt at VR-FX
Enviado el: jueves, 08 de marzo de 2018 3:09
Para: profox@leafe.com
Asunto: Re: Facebook api

Interesting Thread you started!

To be honest - I heard a while ago from this one person that you could use
some kind of programming to do social media marketing via FaceBook.
Some way to spread the word about something via FB. But, I have no idea how
to do it - and I certainly could use that technique some time soon!

-K-


On 3/7/2018 9:00 PM, Kent Belan wrote:
> Hello,
>
> Does anyone have code to create a facebook post from your VFP9 app
> preferably with a picture ?
>
> Thanks,
> Kent
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/p

RE: Facebook api

2018-04-16 Thread José Enrique Llopis

My Facebook connection class is finished but

Facebook now requires applications to be reviewed by an FB technician and to
do that the app must be on the Windows Shop, you must indicate the Url and
SID of the App in the windows Shop. My application is not in the store, for
this I have to certify it first.

I think that all this is a consequence of the latest news about leaks of
information on Facebook

If you are still interested, I will publish the code that, of course, works.


Jose Enrique Llopis




-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kent Belan
Enviado el: viernes, 09 de marzo de 2018 14:31
Para: 'ProFox Email List'
Asunto: RE: Facebook api

YES !! Please share when you have it updated !!

Thanks so much

-Original Message-
From: ProFox <profox-boun...@leafe.com> On Behalf Of José Enrique Llopis
Sent: Friday, March 9, 2018 4:40 AM
To: 'ProFox Email List' <profox@leafe.com>
Subject: RE: Facebook api

The connection class form, sorry in spanish

-



My real estate app has code to connect to FaceBook, Google drive, Azure,...,
i'm now rewriting the Facebook gateway, I will try to share it when
finished.

Jose Enrique Llopis


-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Kurt at VR-FX
Enviado el: jueves, 08 de marzo de 2018 3:09
Para: profox@leafe.com
Asunto: Re: Facebook api

Interesting Thread you started!

To be honest - I heard a while ago from this one person that you could use
some kind of programming to do social media marketing via FaceBook. 
Some way to spread the word about something via FB. But, I have no idea how
to do it - and I certainly could use that technique some time soon!

-K-


On 3/7/2018 9:00 PM, Kent Belan wrote:
> Hello,
>
> Does anyone have code to create a facebook post from your VFP9 app 
> preferably with a picture ?
>
> Thanks,
> Kent
>
>
[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/6476697171A14BA6824AD62BF619C1FA@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.


RE: JSON for Visual FoxPro

2018-11-16 Thread José Enrique Llopis
That function decodes unicode entities in case it can be of help
-


FUNCTION _FFWK_DecodeUnicodeEntities
LPARAMETERS tcString

LOCAL lcResultString, lnPosicion, lcChar, lcTokenString

m.lcResultString = m.tcString   

DO WHILE .T.
m.lnPosicion = AT( "\u", m.lcResultString, 1 )
IF m.lnPosicion = 0
EXIT
ENDIF
m.lcTokenString = SUBSTR( m.lcResultString, m.lnPosicion, 6 )

IF LOWER(m.lcTokenString) = "\u20ac"
m.lcChar = "€"
ELSE
TRY
m.lcChar = CHR( EVALUATE( "0x" + SUBSTR( 
m.lcResultString, m.lnPosicion + 2, 4) ) )
CATCH
m.lcChar = ""
ENDTRY
ENDIF

m.lcResultString = STRTRAN( m.lcResultString , m.lcTokenString, 
m.lcChar )

ENDDO

RETURN m.lcResultString

ENDFUNC




Jose Enrique Llopis





-Mensaje original-
De: ProFox [mailto:profox-boun...@leafe.com] En nombre de Paul Newton
Enviado el: viernes, 16 de noviembre de 2018 12:50
Para: 'profox@leafe.com'
Asunto: JSON for Visual FoxPro

Hi all

This is on Craig Boyd's Sweet Potato Software site 
(https://tinyurl.com/ybk97s97) but the download link is coming up 404.  Any 
ideas where I can get hold of it?  
Or alternative VFP options to handle JSON?  I have tried the following from 
various sources (e.g. VFPX, GitHub, CodePlex) :
nfJson-master (Marco Plaza), vfpJson-master (Ignacio Gutiérrez Torrero), 
qdfoxjson (Victor Espina)

but none of them can decode JSON strings like this:

"{\"code\":\" ERROR\",\"message\":\"Message 
\",\"errors\":[{\"field1\":\"FIELD\",\"value\":\"VALUE\"}]}"

They all appear to stumble because of the additional JSON between the [] 
brackets.  I could StrExtract the string between the [] and decode that 
separately but I would rather find something that can handle this directly.  
Failing that I'll have to "roll my own".

Thanks

Paul Newton

[excessive quoting removed by server]

___
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox
OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: 
http://leafe.com/archives/byMID/profox/17C95E2F40B14D33AD7EC171FBB711E2@LENOVO1
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.