ON AFTER SORT

2019-01-16 Thread stardata.info via 4D_Tech
Hi All, I use 4D V16 on windows. I need to know if one sort in my listbox are used (by click on column). With event "on after sort" I can trap the click on the column in a sortable listbox, but I need even to know what column is clicked and the sort order of this column. Someone have done a

AW: ON AFTER SORT

2019-01-16 Thread Olivier Flury via 4D_Tech
HTH: // UtyLB_SaveUserSort(tListBox;->tHeaderName;->lSortOrder) // // User name (OS): Olivier Flury - FLURY SOFTWARE // Date and time: 19.07.16, 12:49:33 // // Method: UtyLB_SaveUs

Time to subscribe to e-Node Partner license for your 4D professional tools

2019-01-16 Thread Philippe Ganter via 4D_Tech
Dear developers, e-Node Partner subscription matches 4D's annual Partner program and covers all 4D professional tools published by e-Node: AreaList Pro, SuperReport Pro, PrintList Pro, CalendarSet and Internet Toolkit (ITK). For each product, a single registration key allows development (inter

XPS Viewer on Windows 10 - Removed in new OS installs -

2019-01-16 Thread Randy Engle via 4D_Tech
Hi 4D! MS Strikes again! As of 15/Aug/2018 - Windows 10 Build 1803 https://docs.microsoft.com/en-us/windows/deployment/planning/windows-10-1803-removed-features MS is removing XPS Viewer as a standard installation for new installations of Windows 10, starting with release 1803 Upgrade to 1803

Re: XPS Viewer on Windows 10 - Removed in new OS installs -

2019-01-16 Thread Jim Hays via 4D_Tech
Maybe not ideal, but there is Microsoft Print to PDF built in to Windows 10. Jim On Wed, Jan 16, 2019 at 12:42 PM Randy Engle via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Hi 4D! > > MS Strikes again! > > As of 15/Aug/2018 - Windows 10 Build 1803 > > > https://docs.microsoft.com/en-us/windows/dep

Miyako’s 4d-widget-calendar Errors: Project method not found

2019-01-16 Thread John J Foster via 4D_Tech
Hi All, I’m sure this is simple! But I am not seeing it. I am using Miyako’s "4d-widget-calendar-simple-master” component in a v15 database. Is anyone else using this component and got it working??? I have tried source and compiled… So I downloaded and updated the v14 component to 4D v15.2 Ma

Ref: Miyako’s 4d-widget-calendar Errors: Project method not found

2019-01-16 Thread John J Foster via 4D_Tech
Hi All, OOPS! So obvious! Earlier I decided I would create a form in the db and named it Calendar. I then copied the one from Miyako's component. I hadn’t realized that it copied the method names. So… when I changed my plan and compiled the component and use it instead these non existent "met

Query By Formula ([Table]) v17 Loss of Functionality

2019-01-16 Thread Alan Tilson via 4D_Tech
Hello out there, I just noticed in our v17 system which we upgraded from v13 that the system (4D) generated query box for Query By Formula is basically the same box that is for standard queries. I see no way to simply query for Field1 # Field2. I cannot even manually type in Field2 (at least in t

v13+ Components and Host forms

2019-01-16 Thread Chip Scheide via 4D_Tech
I have been reading through the docs on components, and I am not clear. If I have a component, and I want to add a record to a host table, using an entry form defined in the host system. Can I do the following in the component, and expect it to work? $Table:=$1 // pointer to table to add a r

Command Symbol as part of Title of Button

2019-01-16 Thread John J Foster via 4D_Tech
Hi All, I would like to show a command symbol (and option of shift as well) as part of the Title in a button. For example if I have a button with a Title as “CmdT" I’d like to see the “symbolT” instead. So far copying and pasting the symbol from the Emoji & Symbol Editor does not work. I cann

Re: v13+ Components and Host forms

2019-01-16 Thread Jeremy Roussak via 4D_Tech
I don’t think so, no: the form isn’t visible from the component. I have worked round this by having a method in the host, callable by the component, which opens a specified form (for my purposes, using DIALOG, but I can’t see why ADD RECORD shouldn’t be OK as well). It works. Jeremy > On 17 Ja

Re: Query By Formula ([Table]) v17 Loss of Functionality

2019-01-16 Thread Christian Sakowski via 4D_Tech
Hi, have you tried holding „Option“-Key and „+“ so you can enter a formula? -- Grüße/Regards, [heubach-media] | Christian Sakowski christian.sakow...@heubach-media.de Tel: +49/(0)40/52 10 59-23 > Am 16.01.2019 um 21:02 schrieb Alan Tilson via 4D_Tech <4d_tech@lists.4d.com>: > > Hello out the

Re: Command Symbol as part of Title of Button

2019-01-16 Thread Chip Scheide via 4D_Tech
John, as I recall to do this (command symbol) you need to use the Font Chicago, as it was only font that supported it. Chicago is a now defunct font. So... I do not think you can do this with a standard button and text. You might be able to cobble something together with SVG (I would not know),

Re: v13+ Components and Host forms

2019-01-16 Thread Chip Scheide via 4D_Tech
hmmm was trying to create a bit of generic code for adding and editing records from a component. THANKS Chip On Thu, 17 Jan 2019 06:16:12 +0900, Jeremy Roussak via 4D_Tech wrote: > I don’t think so, no: the form isn’t visible from the component. > > I have worked round this by having a method i

Re: Command Symbol as part of Title of Button

2019-01-16 Thread John J Foster via 4D_Tech
Hi Chip, Thanks. Seems strange that with all the Unicode characters 4D can handle that a button wouldn’t;t be able to show that character. yes I could create an svg button but seems overkill (at this point anyway). I’d rather not keeping whacking my brain trying things that won’t work. Anyway

RE: XPS Viewer on Windows 10 - Removed in new OS installs -

2019-01-16 Thread Randy Engle via 4D_Tech
Hi Jim, Thanks for the idea. Don't think MS Print to PDF will substitute as a seamless "Preview" But it's certainly an idea worth entertaining. I've not looked into how much we can configure MS Print/PDF to set the location and name of the document. Randy Engle -Original Message- From

Re: Command Symbol as part of Title of Button

2019-01-16 Thread John J Foster via 4D_Tech
Hi, Currently on a Mac (Windows later). I changed the font to "Arial Unicode MS" on the button. And I have PopChar - which when set to font "Arial Unicode MS“ shows the character as “Place of Interest Sign” and #8984(2318). So good. But I have tried many variations from pasting the character w

RE: Command Symbol as part of Title of Button

2019-01-16 Thread Tai Bui via 4D_Tech
Hi, Have you tried the OBJECT SET TITLE command? OBJECT SET TITLE(*;"Button";Char(8984)+"T") Works for me on Windows and Mac, 4Dv16 and 4Dv17. Best Regards, -Tai B. ** 4D Internet Users Group (4D iNUG) Archive: http://lists.

RE: XPS Viewer on Windows 10 - Removed in new OS installs -

2019-01-16 Thread Stephen J. Orth via 4D_Tech
Randy, You certain can make this look seamless, and quick frankly this is how many newer systems are working. You switch to that printer, have it produce the document silently to a location you manage, open it using a shell command or WIN32API. The user can then close it and you can clean it

Re: Command Symbol as part of Title of Button

2019-01-16 Thread John J Foster via 4D_Tech
Hi Tai, No I was trying it the “quick” way! I’ll give it a try. Thank you! John… > On Jan 16, 2019, at 2:27 PM, Tai Bui wrote: > > Hi, > > Have you tried the OBJECT SET TITLE command? > > OBJECT SET TITLE(*;"Button";Char(8984)+"T") > Works for me on Windows and Mac, 4Dv16 and 4Dv17. >

RE: Command Symbol as part of Title of Button

2019-01-16 Thread Tai Bui via 4D_Tech
Hi, Hmm, not sure if it's just my machines or possibly caused by the emoji & symbol editor. But copying and pasting the character as a text character and not as an emoji/symbol allows me to paste the command symbol into the properties list Title section, the form editor and running the form see

Re: Command Symbol as part of Title of Button

2019-01-16 Thread John J Foster via 4D_Tech
Hi Tai, Thanks that works well in v17 (which I will keep around and use) but not in v15.2 (that’s the clients current working version). John… > On Jan 16, 2019, at 3:15 PM, Tai Bui wrote: > > Hi, > > Hmm, not sure if it's just my machines or possibly caused by the emoji & > symbol editor.

Re: XPS Viewer on Windows 10 - Removed in new OS installs -

2019-01-16 Thread Keisuke Miyako via 4D_Tech
not fully tested but it's open source so feel free to try: https://github.com/miyako/4d-tips-3rd-party-xps-viewer > 2019/01/17 2:42、Randy Engle via 4D_Tech <4d_tech@lists.4d.com>のメール: > Is there anything in the works as a previewer replacement instead of XPS > viewer? ***

Re: Command Symbol as part of Title of Button

2019-01-16 Thread Wayne Stewart via 4D_Tech
John, What I've done in the past (using Greek characters) was create an xliff file (which is in UTF-8) with the text in it. I'm pretty certain that worked in v13+ Regards, Wayne On Thu, 17 Jan 2019 at 10:26, John J Foster via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Hi Tai, > > Thanks that

Postal Addresses by City

2019-01-16 Thread Walt Nelson via 4D_Tech
Folks, This is a rather strange request from a client, but here goes: Anyone know of a source for physical mailing addresses for a given city? They want verified mailing addresses. Anyone use a mailing list service that they could recommend? Anyone know what that might cost per 1,000? Seems t

Re: Postal Addresses by City

2019-01-16 Thread Kirk Brooks via 4D_Tech
Walt, Are looking for the actual addresses? There are companies that sell those sort of lists. I haven't looked in years... This one is top of the list: https://www.infousa.com/lists/zip-code-mailing-lists/ Or do they have addresses and want to verify them? For that I have been using Smarty Street