FootRunner with 4D v14.5 on Windows

2016-08-16 Thread Jim Medlen
We are having issues running FootRunner scripts with 4D v14.5 on Windows clients. FootRunner appears to be highly sensitive and crashes whenever there is an untyped variable in a script when the script is run on a 4D v14.5 Windows client. The exact same script executed on a Mac client from the s

RE: FootRunner with 4D v14.5 on Windows

2016-08-16 Thread Randy Engle
Jim, My experience is that Footrunner will fail if the variables are not typed. Type the variables. ;-) Randy Engle XC2 Software LLC -Original Message- From: 4D_Tech [mailto:4d_tech-boun...@lists.4d.com] On Behalf Of Jim Medlen Sent: Tuesday, August 16, 2016 8:32 AM To: 4d_tech@lists.4d

Re: How to remove a style sheet?

2016-08-16 Thread Bertrand SOUBEYRAND
> Le 16 août 2016 à 21:59, bob.mil...@parker.com a écrit : > > Hi Everyone, > > The Design manual does a good job describing how style sheets on buttons, > fields, variables, etc. can set the font, size, and style. What I'm > missing, though, is how one *removes* a style sheet from an object,

How to remove a style sheet?

2016-08-16 Thread bob . miller
Hi Everyone, The Design manual does a good job describing how style sheets on buttons, fields, variables, etc. can set the font, size, and style. What I'm missing, though, is how one *removes* a style sheet from an object, short of deleting the object and re-creating it? I've discovered that

RE: How to remove a style sheet?

2016-08-16 Thread Timothy Penner
Hi Bob, How about setting the style sheet to Automatic ? Quote: http://doc.4d.com/4Dv15R4/4D/15-R4/Overview.300-2880423.en.html " Finally, 4D provides a set of Automatic style sheets that you can use "as is" in order to create forms that comply with the rules of each interface platform. " Quote

Re: How to remove a style sheet?

2016-08-16 Thread Chip Scheide
place the cursor into the style sheet area i the properties list type as many times as needed > Hi Everyone, > > The Design manual does a good job describing how style sheets on buttons, > fields, variables, etc. can set the font, size, and style. What I'm > missing, though, is how one *remov

RE: How to remove a style sheet?

2016-08-16 Thread Timothy Penner
Hi Bob, I think the issue you are seeing with setting the font of the list box headers may be related to this bug: ACI0094001: Listbox Header Fonts With Style Sheets Cannot be Modified " The commands OBJECT SET FONT and OBJECT SET FONT SIZE do not modify the font of a Listbox Title if the obje

Installer for 2004.8 (Windows)

2016-08-16 Thread Justin Russell
Hi Everyone, I need to resurrect and old 2004 application. Any chance someone has an old installer handy? Best, Justin ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archi

Re: Installer for 2004.8 (Windows)

2016-08-16 Thread Bertrand SOUBEYRAND
> Le 16 août 2016 à 23:33, Justin Russell a écrit > : > > Hi Everyone, > > I need to resurrect and old 2004 application. Any chance someone has an old > installer handy? ftp://4D2004:4d2...@ftp-support.4d.fr/ *

Re: Installer for 2004.8 (Windows)

2016-08-16 Thread Bertrand SOUBEYRAND
> Le 16 août 2016 à 23:33, Justin Russell a écrit > : > > I need to resurrect and old 2004 application. Any chance someone has an old > installer handy? 4D 6.5 : ftp://4D65:4...@ftp-support.4d.fr / 4D 6.7 : ftp://4D67:4...@ftp-support.4d.fr

Re: Installer for 2004.8 (Windows)

2016-08-16 Thread Wayne Stewart
That's fantastic, now where did I put those licenses? Regards, Wayne Wayne Stewart about.me/waynestewart On 17 August 2016 at 07:46, Bertrand SOUBEYRAND wrote: > >> Le 16 août 2016 à 23:33, Justin Russell a >> écrit : >> >> I need to resurrect and old 2004 application. Any chance someone

[Job opportunity]

2016-08-16 Thread Tony Ringsmuth
This is NOT necessarily an Employment, but a good-sized project for a client I have an approximately 1000 hour task for a client that I need to farm out: building a custom inventory system for a non-profit. The pay will be somewhat on the low side, as this is a non-profit. If anyone’s interest

c_objects and dates

2016-08-16 Thread Lee Hinde
Paste this in your v15 scratch method and run it.: *C_OBJECT*($object) *C_DATE*($date) *C_TEXT*($key) $key:="current_date" *OB SET*($object;$key;*Current date*(*)) $date:=*OB Get*($object;$key) $date:=*OB Get*($object;$key;Is date) *

Re: c_objects and dates

2016-08-16 Thread Kirk Brooks
Yeah, if you don't specify the return type it comes back as text - usually, ie. C_OBJECT($object) C_DATE($date) C_TEXT($key;$dateStr) $key:="current_date" OB SET($object;$key;Current date(*)) $dateStr:=OB Get($object;$key) $date:=OB Get($object;$key;Is date) On Tue, Aug 16, 2016 at 5:46 PM, L