Re: [NF] "Modern Standby", Win 10, and Bitlocker with Azure

2018-06-28 Thread Ken Dibble
Thank you. It's not my fear. We have taken on a subcontract to provide Help Desk support for another organization that is supplying these laptops. We were told the laptops would have "full disk encryption", so that's I what I expected to find when I received them. I did not find what I expecte

Re: [NF] "Modern Standby", Win 10, and Bitlocker with Azure

2018-06-28 Thread Eric Selje
BitLocker will only prompt for a recovery key if it detects the device that the hard drive is in has changed. It's inconspicuous in day-to-day use (and it has nothing to do with being connected to the Internet or in Modern Standby mode). The purpose is to protect the data when the drive is removed

RE: VFP9 and Blat

2018-06-28 Thread Tracy Pearson
Use the As AliasName clause when declaring the method in the dll. Then you won't need to deal with case. >From the VFP help: AS AliasName Specifies an alias name for a shared library function name that has the same name as a Visual FoxPro function or is not a legal Visual FoxPro name. AliasName

Re: VFP9 and Blat

2018-06-28 Thread Desmond Lloyd
Thank you, will give this a try Regards, Desmond On Thu, 28 Jun 2018 at 12:39, Frank Cazabon wrote: > Desmond, > > from my program I use to send email via blat the error you are getting > back is "File name (message text) not given or Bad argument given": > > Here is my full code in my Em

Re: VFP9 and Blat

2018-06-28 Thread Fernando D. Bozzo
Hi, I see 2 things: 1) Macrosubstitution is not needed: (not an error, but error prone sometimes) DECLARE INTEGER Send in &dll_name STRING blatstring could be: DECLARE INTEGER Send in (dll_name) STRING blatstring 2) Bad capitalization of the function: lnresult = send(lcstring) should be: lnr

Re: VFP9 and Blat

2018-06-28 Thread Ted Roche
I often used the BLAT.EXE to debug email sending, as each ISP seems to have slightly different interpretations of what is required to logon in username (dloyd or dl...@isp.com) and ports and AUTH LOGIN vs. username. With the -debug and new -superdebug options, you can get a verbose text file that g

Re: VFP9 and Blat

2018-06-28 Thread Frank Cazabon
Desmond, from my program I use to send email via blat the error you are getting back is "File name (message text) not given or Bad argument given": Here is my full code in my EmailViaBlat.prg, maybe you can try it with your stuff and see if there is any difference: LPARAMETERS tcReturn, tcF

VFP9 and Blat

2018-06-28 Thread Desmond Lloyd
Good Morning all, Have been using Blat here at work for years. Essentially modifying the code as the need arose. now have a client that I would like to use it on, but for some reason it always returns a code 1 in the new environment but works fine here at work... Would someone please look at t