Great new documentation on file/folder architecture in v19 for projects

2021-06-23 Thread Jody Bevan via 4D_Tech
Now that I am in the office I can now pass this along for any that are interested and couldn’t find the new documentation and search for it. This page is 3 clicks into the new documentation. https://developer.4d.com/docs/en/Project/architecture.html

Re: 4D Default Folder Structure

2021-06-23 Thread Kevin Abraham via 4D_Tech
Jorg, I don’t think Jody even knows how to be snarky (my description for a RTFM answer) and why not just get him to clarify which Manual. A simple “Do you know which manual and section it is described in, or is it something else like a tech note?” You will either get a useful answer, my

Re: Great new documentation on file/folder architecture in v19 for projects

2021-06-23 Thread Jörg Knebel via 4D_Tech
> On 24 /06 /2021, at 02:08, Jody Bevan via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Now that I am in the office I can now pass this along for any that are > interested and couldn’t find the new documentation and search for it. This > page is 3 clicks into the new documentation. > >

Re: 4D scanning

2021-06-23 Thread Peter Mew via 4D_Tech
Id quite like to try Miyakos Twain PlugIn 4d-plugin-twain-v2 . How do I get a Binary for this. Ive been to Git Hub but cant see any way to just download the plug in. Any help please thanks -pm On Tue, Jun 22, 2021 at 10:17 AM Claudio Braga via 4D_Tech

Re: 4D scanning

2021-06-23 Thread Keisuke Miyako via 4D_Tech
you can click on "Releases" and select a release by tag https://github.com/miyako/4d-plugin-twain-v2/releases/tag/3.4.0 also there is a prebuilt binary, preinstalled in the sample DB when you get the source repository. also you can unarchive the .zip or .dmg that comes with the source

Communicating with external electronics

2021-06-23 Thread nug via 4D_Tech
I might have a an opening for a project.. I would need to be able to communicate (from windows 10) to an external electronic board. running 'scripts' (do not know if the scripts will exist (LEP) or will need to be written (4D). I would need to run these scripts, to run tests on another piece of

Re: Communicating with external electronics

2021-06-23 Thread nug via 4D_Tech
Hi Keisuke, There is a current system, it is slow, it requires weird interfacing between (yes!) IE11 and Edge - scanning a QR code from the screen (IE 11) to lookup(?) data used in a sql(?) system displaying in EDGE IE11 runs the existing scripts using JAVA, and some (specialized?) web tools

Re: Communicating with external electronics

2021-06-23 Thread Keisuke Miyako via 4D_Tech
maybe it is using ActiveX https://en.wikipedia.org/wiki/ActiveX the script could be invoking another OCX component that does the actual heavy lifting. just a guess. 2021/06/24 7:56、nug via 4D_Tech <4d_tech@lists.4d.com>のメール: The scripts, and (as far as I can tell)

Re: Communicating with external electronics

2021-06-23 Thread Keisuke Miyako via 4D_Tech
I suppose the scripts are written in Python or some other language. the script language is probably not important. I imagine it is published as a "language neutral" sample code, not as a Software Development Kit or middleware. you might even be able to translate it to native 4D for HTTP or

v18 Background Image / Win32API

2021-06-23 Thread Ben Sokal via 4D_Tech
Hello, Since Win32API now seems to be obsolete, how can we easily set the background image ala gui_LoadBackground? I tried the Miyako replacement on github at https://github.com/miyako/4D-Win32API/releases/tag/8.3.v18 but it did not seem to work (I think the command ran but the background did

Re: v18 Background Image / Win32API

2021-06-23 Thread Keisuke Miyako via 4D_Tech
the plugin replaces the background by intercepting the PAINT event for the MDI window. 4D is Altura-free since v17 https://blog.4d.com/complete-windows-64-bit-product-line-is-now-altura-free/ which drastically changes how (or if at all) plugins can "hack" the GUI. I think it might just be

Re: Communicating with external electronics

2021-06-23 Thread nug via 4D_Tech
that makes sense - as active x is (as far as I am aware) depreciated in all browsers newer then IE 11 > On Jun 23, 2021, at 7:13 PM, Keisuke Miyako via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > maybe it is using ActiveX > > https://en.wikipedia.org/wiki/ActiveX > > the script could be