Re: Capturing Full Path Names with Picture Imports

2020-05-26 Thread Vincent de Lachaux via 4D_Tech
Did you try the DOCUMENT system variable ? It should be populate with the full pathname ** 4D Internet Users Group (4D iNUG) New Forum: https://discuss.4D.com Archive: http://lists.4d.com/archives.html Options:

Re: Capturing Full Path Names with Picture Imports

2020-05-26 Thread Randy Kaempen via 4D_Tech
Steven, > On May 26, 2020, at 1:58 PM, Steven via 4D_Tech <4d_tech@lists.4d.com> wrote: > > I hope everyone in the community is holding up under the challenges of the > pandemic. My best wishes go out to everyone. > > I am trying to develop a small module to allow users to import images from

Capturing Full Path Names with Picture Imports

2020-05-26 Thread Steven via 4D_Tech
Good afternoon all. I hope everyone in the community is holding up under the challenges of the pandemic. My best wishes go out to everyone. I am trying to develop a small module to allow users to import images from anywhere on the host computer, for now. Using "READ PICTURE FILE","CREATE

Re: Select Folder Dialog won't go away

2020-05-26 Thread Doug Hall via 4D_Tech
17.4 on Mac. I think I've solved my issue. I wasn't using a long enough delay. The delay is needed because I am using the Launch External Process command immediately after creating the file, to open the file. These system-level calls must be semi-asynchronous, because there NEEDS to be a delay

Re: Select Folder Dialog won't go away

2020-05-26 Thread Chuck Miller via 4D_Tech
What version of 4D and on Mac or windows I have not seen this behavior Stay safe and well Chuck Chuck Miller Voice: (617) 739-0306 Informed Solutions, Inc. Fax: (617) 232-1064

Select Folder Dialog won't go away

2020-05-26 Thread Doug Hall via 4D_Tech
When executing this code from a remote connection, my "Select folder" dialog won't close. $saveFolder:=*Select folder*("Select destination folder";Documents folder) *DELAY PROCESS*(*Current process*;5) I put in the delay process in case the dialog wasn't being processed synchronously. The code

Re: gitignore for projects

2020-05-26 Thread Mike Kerner via 4D_Tech
you can do private repos on github for free. there are other servies that do free private repos. i'm pretty sure gitlab does free private repos, too. if you're a google apps user you can use google cloud project repos. those are no extra charge. paying for a git service gets to be sticky

Re: FTP_DELETE

2020-05-26 Thread Chuck Miller via 4D_Tech
It would seem to me your lop structure is flawed. It should be FTP Login FTP_GetDirList repeat //select which file from list ftp_getFileInfo ftp_receive ftp_delete until frp_loguot Chuck Miller

Re: FTP_DELETE

2020-05-26 Thread stardata.info via 4D_Tech
Hi Randy, I try to verify but, i close the connection after the FTP_DELETE command, and in the second cicle i use the same commands and FTP_DELETE work. Thanks /Ferdinando/ Il 26/05/20 15:08, Randy Kaempen ha scritto: Ferdinando, On May 26, 2020, at 8:02 AM, stardata.info via 4D_Tech

FTP_DELETE

2020-05-26 Thread stardata.info via 4D_Tech
Hi All, I use PFT commands for manage files on ftp area. I use these commands into the cicle REPEAT FTP_Login FTP_GetDirList FTP_GetFileInfo FTP_Receive FTP_DELETE UNTIL The first time that i try to delete the file using FTP_DELETE i have error 10004 at the second cicle the commend have

Re: gitignore for projects

2020-05-26 Thread Julio Carneiro via 4D_Tech
Well GitHub is free, and there is GitHub Desktop app, which is also free. Caveat is that it is public. Now if you need privacy, then Microsoft Azure is also free > On May 25, 2020, at 06:00, Paul Dennis via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > For those getting started with Git.