Re: URL Encoder

2016-10-20 Thread Sujit Shah
Thanks!!! On Fri, Oct 21, 2016 at 11:20 AM, Keisuke Miyako wrote: > there is no native function, but you could try this: > > C_TEXT:C284($1;$0;$escaped) > > C_LONGINT:C283($i) > C_BOOLEAN:C305($shouldEscape) > C_BLOB:C604($data) > > For ($i;1;Length:C16($1)) > >

Re: PROCESS 4D Tags

2016-10-20 Thread Keisuke Miyako
Char(1) was deprecated in v12.2 http://docs2.4d.com/4Dv12/4D/12.4/4D-HTML-Tags.300-977162.en.html 4DHTML succeeded 4DHTMLVAR in order to invalidate the Char(1) trick without breaking compatibility. Char(1) was useful in contextual mode (also deprecated in v12), but could become a liability in

Re: PROCESS 4D Tags

2016-10-20 Thread Douglas von Roeder
On Thu, Oct 20, 2016 at 5:16 PM, Sujit Shah wrote: > Well: > > 1) I "read" it in the manual yesterday :-) > > And > > 2) It seems to work > Can't argue with that, eh? -- Douglas von Roeder 949-336-2902 **

Re: URL Encoder

2016-10-20 Thread Keisuke Miyako
there is no native function, but you could try this: C_TEXT:C284($1;$0;$escaped) C_LONGINT:C283($i) C_BOOLEAN:C305($shouldEscape) C_BLOB:C604($data) For ($i;1;Length:C16($1)) $char:=Substring:C12($1;$i;1) $code:=Character code:C91($char) $shouldEscape:=False:C215

Re: PROCESS 4D Tags

2016-10-20 Thread Sujit Shah
Well: 1) I "read" it in the manual yesterday :-) And 2) It seems to work On Fri, Oct 21, 2016 at 11:10 AM, Douglas von Roeder wrote: > On Thu, Oct 20, 2016 at 5:02 PM, David Adams wrote: > > > A bell is ringing in the back of my head...is the

Re: PROCESS 4D Tags

2016-10-20 Thread Douglas von Roeder
On Thu, Oct 20, 2016 at 5:02 PM, David Adams wrote: > A bell is ringing in the back of my head...is the Char(1) trick deprecated? > I had a quick look at the docs and couldn't figure it out...does anyone > else > remember? > David: Yeh, that caught my eye, too. I seem to

Re: PROCESS 4D Tags

2016-10-20 Thread Sujit Shah
Thanks Ortwin. I am escaping each element of the array by using char(1) I eventually ended up using href="" $tInput:=$tInput+"" $tInput:=$tInput+"" $tInput:=$tInput+"" ... PROCESS 4D TAGS($tInput;$tOutput;"StartDate=";$tStartDate;" StartTime=";$tStartTime.. $0:=Char(1)+$tOutput On Fri,

URL Encoder

2016-10-20 Thread Sujit Shah
Is there a new 4D Command that does this? I am using a large case statement to do this but does not work 100% .. -- xxx "There must be ingenuity as well as intention, strategy as well as strength. "

Re: SVG Spacebar + Mouse down Diagram Navigator

2016-10-20 Thread truegold
Hey Keith (et al), Hmmm “... TRANSFORM PICTURE …” hadn’t though about that. (For posterity) Using 'Translate’ as the operator the docs say: The picture is moved by param1 pixels horizontally and by param2 pixels vertically. Pass a positive value to move to the right or towards the bottom and a

Re: v11 sql conundrum

2016-10-20 Thread Chip Scheide
Never mind previous answer I was reading the situation backwards. On Thu, 20 Oct 2016 16:57:26 -0400, Charles Miller wrote: ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive:

Re: SVG Spacebar + Mouse down Diagram Navigator

2016-10-20 Thread truegold
Hey All, So it looks like… will need to manipulate various sets of coords: 1. picture coords holding svg (need width and height) 2. scroll position of each scrollbar (OBJECT GET SCROLL POSITION) 3. mouse coordinates of where I am in picture (GET MOUSE) 4. relative coords inside svg image (so I

Re: SVG Spacebar + Mouse down Diagram Navigator

2016-10-20 Thread truegold
Hey Keith, Ahh, as the doc says “... even the pixels of a picture” This might work. I’ll see if I can get it to work. Appreciate, John... > I think the easiest option would be to use OBJECT SET SCROLL POSITION ( * ; > object {; vPosition {; hPosition}}{; *} ) once the picture has been

Re: European number format

2016-10-20 Thread Peter Bozek
On Thu, Oct 20, 2016 at 6:17 PM, Pat Bensky wrote: > 1: 123456789.99 > 2: 123,456,789.99 > > When the customer runs it on his Italian system, he gets: > 1: 12345678999 > 2: <<< > > whereas he should get: > 1: 123456789,99 > 2: 123.456.789,99 > > ​What am I doing wrong? > Did

Re: SVG Spacebar + Mouse down Diagram Navigator

2016-10-20 Thread Keith Culotta
I think the easiest option would be to use OBJECT SET SCROLL POSITION ( * ; object {; vPosition {; hPosition}}{; *} ) once the picture has been created. Keith - CDI > On Oct 20, 2016, at 1:12 PM, truegold wrote: > > Hi All, > > 4D 15.2 (mac and windows). > > I would

Re: What's it take to get access to the Super Reports forum?

2016-10-20 Thread Alan Chan
Same here. We made a feature request on ALP and got replied in few hours and a new beta version in just a few days. No, they didn't request us to create a demo first. Oops.. I can't believe I said that:-) Alan Chan 4D iNug Technical <4d_tech@lists.4d.com> writes: >With PrintList Pro, I sent

SVG Spacebar + Mouse down Diagram Navigator

2016-10-20 Thread truegold
Hi All, 4D 15.2 (mac and windows). I would like to implement a scrolling technique in an SVG picture (diagram) on a form. Essentially I want to be able to move around my digram by holding the space bar + mouse down. So as I move the mouse around the the page it scrolls horizontal and

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Chip Scheide
it seems consensus is pup menus are not tubbable in 4D on Mac. this is probably a bug in 4D as there is an option for the OS to make popups tubbable. On Thu, 20 Oct 2016 10:19:43 -0700, Janet Jonas wrote: > I didn’t read far enough down in the digest. > > So, does this mean it is a 4D

Re: European number format

2016-10-20 Thread Pat Bensky
OK, this option is checked ... are you saying I should un-check it? Pat On 20 October 2016 at 18:26, Spencer Hinsdale wrote: > yes, it's on line eight, "use period and comma as placeholders in numeric > formats" > > > On Oct 20, 2016, at 10:24 AM, Pat Bensky

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Janet Jonas
My approach is to not lookup anything until at least 3 characters are typed. If that choice is not correct, then they must use the down arrow to open up the list, but don’t quote me on that since I use the mouse I haven’t checked it out in a long time. The best way is to drop down the list

Re: European number format

2016-10-20 Thread Spencer Hinsdale
yes, it's on line eight, "use period and comma as placeholders in numeric formats" > On Oct 20, 2016, at 10:24 AM, Pat Bensky wrote: > > Spencer - I can't find that setting Where is it? It isn't in > Database Settings->Compatibility. > Thanks > Pat > > On 20 October 2016 at

Re: European number format

2016-10-20 Thread Pat Bensky
Spencer - I can't find that setting Where is it? It isn't in Database Settings->Compatibility. Thanks Pat On 20 October 2016 at 17:32, Spencer Hinsdale wrote: > > I'm not following your test exactly, but maybe it needs the Compatibility > setting that reads something

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Janet Jonas
Yes, this pretty much matches what I was doing before. If I need to rollback, I’ll have to test that out vs Chip’s approach. Thanks, JJ > On Oct 20, 2016, at 06:15 AM, 4d_tech-requ...@lists.4d.com wrote: > > -- > > Message: 7 > Date: Thu, 20 Oct 2016 13:53:22

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Arnaud de Montard
> Le 20 oct. 2016 à 15:50, Chip Scheide <4d_o...@pghrepository.org> a écrit : > > Arnaud, > maybe I'm missing something... > in my experience, combo boxes already have built in typeahead > why are you adding it? maybe _I'm_ missing something, but, at least in v12, typeahead works only when the

Re: Generate Digest MD5 - Max Input File Size?

2016-10-20 Thread Keisuke Miyako
the "Generate digest" function is mainly used for hashing passwords or relatively small documents. http://livedoc.4d.com/4D-Language-Reference-15-R5/Tools/Generate-digest.301-2937745.en.html still, the code $error:=_o_AP Get file MD5 digest($path;$hash) works in v15 (32 bits)

Re: Generate Digest MD5 - Max Input File Size?

2016-10-20 Thread Cannon Smith
Hi David, I created a feature request a few years ago (http://forums.4d.fr/Post/EN/13706008/1/13706009#13706009) because I was in the same situation you are and turned to php as well. Only I was doing a SHA1 instead of MD5. Anyway, the thing I was running into wasn’t a file size limit but a

Re: How do you populate an Excel spreadsheet using 4D?

2016-10-20 Thread Arnaud de Montard
> Le 20 oct. 2016 à 08:52, Andrea Angeli a écrit : > > Hi Steve, > I wrote some method that create an xlsx file [...] If one can work with LibreOffice (free), it contains the feature to save documents in a flat XML format (odt -> fodt, ods -> fods, etc.). The document is

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Chip Scheide
Arnaud, maybe I'm missing something... in my experience, combo boxes already have built in typeahead why are you adding it? Also, why loop, reducing the length of the entered data, when the data entered by the user is not valid (not in the combo's list) to try to get an acceptable entered item?

RE: What's it take to get access to the Super Reports forum?

2016-10-20 Thread Dennis, Neil
> They don't seem very keen on customer service. I have totally the opposite view... I have always found them to be very responsive and very helpful. I wish all vendors were so helpful. Neil -- Privacy Disclaimer: This message contains confidential information and is intended only for

Re: What's it take to get access to the Super Reports forum?

2016-10-20 Thread Chuck Miller
You must remember time zone differences as the are in Europe. I have always had reasonable service from them. If they were in same time zone. I am sure it would be excellent Regards Chuck Chuck

Win32API 8.0 Release

2016-10-20 Thread William Ford
Win32API version 8.0 is available now on GitHub. Changes in this version: Bug Fixes * Fixed several issues such as variable type mismatches, uninitialized variables, unused variables, signed/unsigned mismatches, undeclared parameters, and undeclared functions. * Fixed an issue that could cause a

Re: What's it take to get access to the Super Reports forum?

2016-10-20 Thread Philippe Ganter
Hi Kirk, What is the problem? We have no request from you on record. Best regards, -- Phil forums.e-node.net > On 20 Oct 2016, at 06:12, Kirk Brooks wrote: > > They don't seem very keen on customer service. > > On Wed, Oct 19, 2016 at 6:18 PM, Chuck Miller < >

Re: Tabbing into Popup Drop down List not working?

2016-10-20 Thread Arnaud de Montard
> Le 20 oct. 2016 à 08:01, Janet Jonas a écrit : > > Chip, thanks for your efforts. I can see ways to streamline the events if I > have to roll back to the combo box. Here's some code I use for "mandatory combo":

Re: How do you populate an Excel spreadsheet using 4D?

2016-10-20 Thread Andrea Angeli
Hi Steve, I wrote some method that create an xlsx file that insert also a picture inside that a can share if you want. It Works fine with Number, Open Office and LIbreOffice, but I got some problems between the different versions of EXCEL. The problems depend on difference in the use of