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, short 
> of deleting the object and re-creating it?
> 
> I've discovered that in v15r3, a listbox will use the style sheet even if 
> OBJECT SET FONT and OBJECT SET FONT SIZE are applied to the header areas. 
> Hopefully 4D will find and fix this bug, but in the meantime, I'd like to 
> remove the style sheet (which isn't really needed, anyhow).
> 
> This is 4D v15r3, Windows.


maybe :
http://livedoc.4d.com/4D-Language-Reference-15.1/Objects-Forms/OBJECT-SET-STYLE-SHEET.301-2685705.en.html

the name of an existing style sheet (if the style sheet does not exist, an 
error is returned, that you can intercept using a method installed by the ON 
ERR CALL 
<http://livedoc.4d.com/4D-Language-Reference-15.1/Interruptions/ON-ERR-CALL.301-2685819.en.html>
 command).
the Automatic style sheet constant from the "Font Styles 
<http://livedoc.4d.com/4D-Language-Reference-15.1/List-of-constant-themes/Font-Styles.302-2685472.en.html>"
 theme in order to apply the "Automatic" style sheet.
an empty string ("") so as to not apply the style sheet to the object 
<http://livedoc.4d.com/4D-Language-Reference-15.1/Objects-Forms/OBJECT-SET-STYLE-SHEET.301-2685705.en.html#>.



Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

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/ 
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

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 <ftp://4D65:4...@ftp-support.4d.fr>/
4D 6.7 : ftp://4D67:4...@ftp-support.4d.fr <ftp://4D67:4...@ftp-support.4d.fr>/
4D 6.8 : ftp://4D68:4...@ftp-support.4d.fr <ftp://4D68:4...@ftp-support.4d.fr>/
4D 2003 : ftp://4D2003:4d2...@ftp-support.4d.fr 
<ftp://4D2003:4d2...@ftp-support.4d.fr>/
4D 2004 : ftp://4D2004:4d2...@ftp-support.4d.fr 
<ftp://4D2004:4d2...@ftp-support.4d.fr>/
4D v11 SQL : ftp://ftp-public.4d.fr/Products/Museum/Line_v11/11_9 
<ftp://ftp-public.4d.fr/Products/Museum/Line_v11/11_9>/
4D v12 : ftp://ftp-public.4d.fr/Products/Museum/Line_v12 
<ftp://ftp-public.4d.fr/Products/Museum/Line_v12>/



Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: c_objects and dates

2016-08-17 Thread Bertrand SOUBEYRAND

> Le 17 août 2016 à 08:34, Kirk Brooks  a écrit :
> 
> 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)


4D returns a type based on the type of $date


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: c_objects and dates

2016-08-17 Thread Bertrand SOUBEYRAND

> Le 17 août 2016 à 09:12, Bertrand SOUBEYRAND  a écrit :
> 
>> 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)
> 
> 
> 4D returns a type based on the type of $date


$date can be typed as a date and despite this 4D may throw an error when $key’s 
value is 2016-08-16T22:00:00.000Z. Is date solves the problem.


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: [ANN] 4DMethod: Thomas Maul Talks Message Passing

2016-08-26 Thread Bertrand SOUBEYRAND

> Le 25 août 2016 à 21:06, Brian Young  a écrit :
> 
> Add event to your calendar:
> http://go.4d.com/rs/531-MRT-468/234/Messaging+with+4D+v16%2C+Thomas+Maul.ics<http://go.4d.com/rs/531-MRT-468/234/Messaging+with+4D+v16,+Thomas+Maul.ics>
>  
> <http://go.4d.com/rs/531-MRT-468/234/Messaging+with+4D+v16%2C+Thomas+Maul.ics%3Chttp://go.4d.com/rs/531-MRT-468/234/Messaging+with+4D+v16,+Thomas+Maul.ics%3E>

This link:
Quoth the Raven - 404




Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: What is this ?C_LONGINT\ (\

2016-09-04 Thread Bertrand SOUBEYRAND

> Le 4 sept. 2016 à 10:37, Jim Dorrance  a écrit :
> 
> Thanks Kirk, I also use
> 
> OB SET($obj;\
>  "key1";$value1;\
>  "key2";"textValue";\
>  "key3";someFunction($functionary);\
>  "key4";42)
> 
> extensively, I had just never seen it used so unnecessarily and it threw me.


I this case I prefer to write that code this way:

OB SET($obj;"key1";$value1)
OB SET($obj;"key2";"textValue")
OB SET($obj;"key3";someFunction($functionary))
OB SET($obj;"key4";42)




Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Allow CR in text field

2016-10-31 Thread Bertrand SOUBEYRAND

> Le 31 oct. 2016 à 15:44, Arnaud de Montard  a écrit :
> 
> Hi Bill, 
> the carriage return is not allowed in alpha fields, but allowed natively in 
> text fields. Did you check that?


There is a checkbox located in structure mode associated to the field’s 
properties to avoid CR input.


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Subform Object Name

2016-11-09 Thread Bertrand SOUBEYRAND

> Le 9 nov. 2016 à 19:36, Cannon Smith  a 
> écrit :
> 
> Does anyone know how to get the object name of a subform in code when 
> executing within the context of the subform itself? I’m stumped.


Maybe CONVERT COORDINATES could help:

http://livedoc.4d.com/4D-Language-Reference-16/Windows/CONVERT-COORDINATES.301-3036395.en.html


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

HTMLTOX issue

2016-11-14 Thread Bertrand SOUBEYRAND
Can someone confirm 4Dv15R5 is crashing using the plugin HTMLTOX ?

Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Does 4D have Token Placeholders?

2016-11-27 Thread Bertrand SOUBEYRAND

> Le 27 nov. 2016 à 23:55, Sujit Shah  a écrit :
> 
> What I need is something like this
> 
> http://jquery-plugins.net/tokeninput-jquery-tokenizing-autocomplete-text-entry
>  
> <http://jquery-plugins.net/tokeninput-jquery-tokenizing-autocomplete-text-entry>
> 
> Perhaps I had a dream about it :-)


Can this satisfy all your dream?

http://forums.4d.fr/Post/FR/17216659/1/17216660


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Does 4D have Token Placeholders?

2016-11-29 Thread Bertrand SOUBEYRAND

> Le 28 nov. 2016 à 08:49, Sujit Shah  a écrit :
> 
> It is a very nice Type Ahead Routine. Thanks


You’re welcome ;-)


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Alternative syntax for 4DTEXT, 4DHTML, 4DEVAL

2016-11-29 Thread Bertrand SOUBEYRAND

> Le 29 nov. 2016 à 17:39, Dennis, Neil  a écrit :
> 
>> "Alternative syntax for 4DTEXT, 4DHTML, 4DEVAL"
>> http://doc.4d.com/4Dv15R5/4D/15-R5/4D-Transformation-Tags.300-2936578.en.html
>> since 15R4
> 
> How would you use 4DTEXT in the new syntax?
> 
> For example would
>
> become
>$4DTEXT(var)

I needed to build an html table and the seconds syntax $4DTEXT(var) was pretty 
good when the 1st was painful.


$4DHTML("")
$4DHTML("")$4DHTML("")
$4DHTML("")$4DHTML("")
$4DHTML("")$4DHTML("")
$4DHTML("")$4DHTML("")   
$4DHTML("")$4DHTML("")
$4DHTML("")$4DHTML("")  
$4DHTML("")$4DHTML("")
$4DHTML("")$4DHTML("")  
$4DHTML("") 



Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

XFDF - PDF

2016-11-30 Thread Bertrand SOUBEYRAND
Hi,

Didi someone already work on dynamics PDF (XFDF) to retrieve data from a PDF 
into a DB?




Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: XFDF - PDF

2016-12-03 Thread Bertrand SOUBEYRAND

> Le 1 déc. 2016 à 07:05, Gerald Balzer  a écrit :
> 
> you can use pdftk https://www.pdflabs.com/docs/pdftk-man-page/ 
> <https://www.pdflabs.com/docs/pdftk-man-page/> to extract the data from a 
> PDF-form. It will generate a text file containing the fields and values. Then 
> you can manipulate the data and create a fdf or xfdf file that fills the data 
> back to your pdf.


Thank you. It works great on both MacOS and Windows


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: XFDF - PDF

2016-12-03 Thread Bertrand SOUBEYRAND

> Le 3 déc. 2016 à 09:15, Bertrand SOUBEYRAND  a écrit :
> 
>> 
>> Le 1 déc. 2016 à 07:05, Gerald Balzer > <mailto:gbal...@balzer-computing.ch>> a écrit :
>> 
>> you can use pdftk https://www.pdflabs.com/docs/pdftk-man-page/ 
>> <https://www.pdflabs.com/docs/pdftk-man-page/> 
>> <https://www.pdflabs.com/docs/pdftk-man-page/ 
>> <https://www.pdflabs.com/docs/pdftk-man-page/>> to extract the data from a 
>> PDF-form. It will generate a text file containing the fields and values. 
>> Then you can manipulate the data and create a fdf or xfdf file that fills 
>> the data back to your pdf.
> 
> 
> Thank you. It works great on both MacOS and Windows


Just one detail on MacOS 10.11:

It works when PDFtk is installed in its regular location:

/opt/pdflabs/PDFtk/bin/pdftk
/opt/pdflabs/PDFtk/lib/


If I copy the PDFtk folder to the 4D resources, 4D raises an error


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: XFDF - PDF

2016-12-03 Thread Bertrand SOUBEYRAND

> Le 3 déc. 2016 à 12:51, Keisuke Miyako  a écrit :
> 
> I think you need to use "install_name_tool" if you want it to run from a 
> generic location.
> 
> https://github.com/miyako/4d-component-pdftk 
> <https://github.com/miyako/4d-component-pdftk>
> 
> (I will let you complete the commands set...)


Inside the code to return the path, I added your code:

SET ENVIRONMENT VARIABLE("_4D_OPTION_CURRENT_DIRECTORY";$T_App2+"MacOS")

SET ENVIRONMENT VARIABLE("_4D_OPTION_BLOCKING_EXTERNAL_PROCESS";"true")
LAUNCH EXTERNAL PROCESS("chmod 555 pdftk")


It doesn’t solve the issue ;-(


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: XFDF - PDF

2016-12-03 Thread Bertrand SOUBEYRAND

> Le 3 déc. 2016 à 17:21, Keisuke Miyako  a écrit :
> 
> no, that is not the point.
> 
> the pdftk and its dependent libraries in that component is modified to run 
> from any location.
> you can run otool -L to see that it doesn't look for its c++ and gnu-java 
> runtimes at their original paths.


Got that:

~ Bertrand$ otool -L 
/Users/Bertrand/Documents/Mon_travail/Composants_v15/4D-COMP-PDFTK.4dbase/Resources/Mac/PDFtk/bin/pdftk
/Users/Bertrand/Documents/Mon_travail/Composants_v15/4D-COMP-PDFTK.4dbase/Resources/Mac/PDFtk/bin/pdftk:
@executable_path/../lib/libgcj.11.dylib (compatibility version 12.0.0, 
current version 12.0.0)
@executable_path/../lib/libstdc++.6.dylib (compatibility version 7.0.0, 
current version 7.14.0)
@executable_path/../lib/libgcc_s.1.dylib (compatibility version 1.0.0, 
current version 1.0.0)
/usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 
7.0.0)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version 
1.2.3)
/usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 
697.0.0)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current 
version 125.2.11)
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: XFDF - PDF

2016-12-03 Thread Bertrand SOUBEYRAND

> Le 3 déc. 2016 à 17:21, Keisuke Miyako  a écrit :
> 
> no, that is not the point.
> 
> the pdftk and its dependent libraries in that component is modified to run 
> from any location.
> you can run otool -L to see that it doesn't look for its c++ and gnu-java 
> runtimes at their original paths.

The problem was because I didn’t use your method LEP_Escape_path 
I do not understand or see what it changes but the fact is that it works

Thank you


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: user and group corruption

2016-12-13 Thread Bertrand SOUBEYRAND

> Le 13 déc. 2016 à 20:47, Charles Miller  a écrit :
> 
> Hi All,
> 
> Environment v11 client server
> 
> I have a component that automatically saves users and groups on shut down,
> so I know corruption in users and groups is happening while running. When
> running server people connect single user dos so that they can transfer
> data from their data file to server. Occasionally in the middle of transfer
> our when trying to make connection they can't log in. It turns out the most
> users and groups are missing and if I then shut down server, the save users
> and groups is 4K in size instead of 265k in size
> 
> anyone else seeing behavior like this


I was recently reported that exporting from 6.7 to 2004 couldn’t be achieved if 
the .4UG file is heavier than 32K
USERS TO BLOB and BLOB TO USERS were crashing in v13, v14, v15 and v16 and have 
been fixed in 15.3 and 16.
The 15.3 is unable to import a 6.7 .4UG file. 


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Hourly Consulting Rates

2016-12-16 Thread Bertrand SOUBEYRAND

> Le 16 déc. 2016 à 22:28, Tim Nevels  a écrit :
> 
> I got a  question today from a client asking what the average hourly 
> consulting rate is for 4D development currently is. You know, I really 
> couldn’t give them an answer. I know what I charge, but I have no idea what 
> others charge. 
> 
> What’s the going rate these days? Feel free to reply to me privately. 


In New York or in Rabat ?


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Hourly Consulting Rates

2016-12-17 Thread Bertrand SOUBEYRAND

> Le 17 déc. 2016 à 13:59, Peter Jakobsson  a écrit :
> 
> In the UK, the hourly rate for a plumber or electrician is around £60 = $75.
> 
> 4D going rates appear to be about half to two thirds that amount based on day 
> rate. (Not much point in hiring a programmer for an hour).
> 
> So, using that rule of thumb, take your local plumber/electrician rate and 
> multiply by 0.5 - 0.75 to get the range ;)


$75! I hope you not to be flooded!

Maybe better to compare:
https://en.wikipedia.org/wiki/Big_Mac_Index


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: D3.js Wow. Some notes on SVG, D3, and data visualizations

2017-01-14 Thread Bertrand SOUBEYRAND

> Le 27 déc. 2015 à 20:23, Kirk Brooks  a écrit :
> 
> David,
> Another great post - thank you. This is the sort of stuff that is
> interesting reading right now and really useful to have archived and come
> back to.


I push up this thread with:

http://blog.octo.com/en/d3-js-transitions-killed-my-cpu-a-d3-js-pixi-js-comparison/


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

PDFtk: Updating librairies on Mac

2017-01-15 Thread Bertrand SOUBEYRAND
oyé,

What is the handiest way on MacOS to update with command lines the PDFtk 
associated librairies?

MacOS:
libgcc_s.1.dylib
libgcj.16.dylib
libiconv.2.dylib
libstdc++.6.dylib
libz.1.dylib
pdftk



Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: What anti-virus to use with Windows 10

2017-01-22 Thread Bertrand SOUBEYRAND

> Le 22 janv. 2017 à 13:36, Jim Dorrance  a écrit :
> 
> Any suggestions?


Embedded Microsoft


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: PDFtk: Updating librairies on Mac

2017-01-23 Thread Bertrand SOUBEYRAND

> Le 23 janv. 2017 à 14:52, Nigel Greenlee  a écrit :
> 
> Bertrand
> 
> I assume you want to ‘auto’ install the pdtk onto machines. I did this a few 
> years ago(wanted to provide a way to secure PDFS before the option was 
> available from 4D.


That’s not exactly what I requested for.
I just want to check if a PDFtk's dylib needs to be updated. 
The publisher of PDFtk does not always update them so that I lost a bunch of 
time i.e. with 'libgcj.16.dylib’ on MacOS


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: [off] DreamWeaver replacement for maintaining 4D based website?

2017-02-17 Thread Bertrand SOUBEYRAND

> Le 17 févr. 2017 à 09:29, Paul Dennis via 4D_Tech <4d_tech@lists.4d.com> a 
> écrit :
> 
> FWIW I use the lightning component on 4d and oxygen for editing and checking
> syntax. However since Lightning uses templates I have found Stylizer
> http://www.skybound.ca/ <http://www.skybound.ca/> for edting css is the best 
> thing since sliced bread
> (if you hate css as much as I do).


I discover and I confirm: magnifique !


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: HTMLTOX issue

2018-03-11 Thread Bertrand SOUBEYRAND via 4D_Tech

> Le 22 nov. 2016 à 04:26, Keisuke Miyako  a écrit :
> 
> yesterday's update should fix the crashing problem on 4D 64 bits.


K,

I’m having a weird problem, maybe an update from Apple.

Could you download your demo from Github and play with it on macOS Sierra


Your demo, my application returns both an empty blob

That’s a new issue.


$resultBlob:=HTML Convert ($html;HTMLTOX Format PDF;$optionKeys;$optionValues)


My version





Thank you


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
https://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88





**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: HTMLTOX issue

2018-03-15 Thread Bertrand SOUBEYRAND via 4D_Tech

> Le 11 mars 2018 à 18:52, Bertrand SOUBEYRAND  a écrit :
> 
> 
> K,
> 
> I’m having a weird problem, maybe an update from Apple.
> 


K,

I discovered two issues with the plugin.


ISSUE 1:

Step1:
Create a folder on your desktop and name it: éè
In this folder copy your demo HTMLTOX.4dbase
Comment $html{1}:="http://wkhtmltopdf.org/ <http://wkhtmltopdf.org/>" 
Run the demo
It should not work: the PDF is empty


Step2:
Rename the folder éè ->ee
Run the demo
It works



ISSUE 2:

Inside the folder ee
This url never turns into a PDF:

$html{1}:="http://wkhtmltopdf.org/ <http://wkhtmltopdf.org/>«  

Other URL seems to be OK





Thank you


Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
https://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88





**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: HTMLTOX issue

2018-03-15 Thread Bertrand SOUBEYRAND via 4D_Tech


Those issues where found on macOS. Not tested on Windows.

B

> Le 15 mars 2018 à 10:54, Bertrand SOUBEYRAND  a écrit :
> 
> K,
> 
> I discovered two issues with the plugin.
> 
> 
> ISSUE 1:
> 
> Step1:
> Create a folder on your desktop and name it: éè
> In this folder copy your demo HTMLTOX.4dbase
> Comment $html{1}:="http://wkhtmltopdf.org/ <http://wkhtmltopdf.org/>" 
> Run the demo
> It should not work: the PDF is empty
> 
> 
> Step2:
> Rename the folder éè ->ee
> Run the demo
> It works
> 
> 
> 
> ISSUE 2:
> 
> Inside the folder ee
> This url never turns into a PDF:
> 
> $html{1}:="http://wkhtmltopdf.org/ <http://wkhtmltopdf.org/>«  
> 
> Other URL seems to be OK
> 
> 

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

2 plugins with the same ID

2017-02-26 Thread Bertrand SOUBEYRAND via 4D_Tech
Hi,

What happens if two plugins have the same ID?



Bertrand SOUBEYRAND
---
La Soub Compagnie
33 bd de la Liberté - 13001 Marseille
Bureau : +33 4 84 25 21 99
http://www.soubeyrand-4d-developer.eu <http://www.soubeyrand-4d-developer.eu/>

Belgique : +32 87 84 00 88




**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**