heuser: Re: Is there more documentation somewhere?
Norm Randa (normr@HCL.COM)
Tue, 21 Dec 1999 12:27:13 -0500
All OLE related information is found in the main Hostex.hlp file which can
be accessed via your terminal Help button.
Go to Contents
Programming Interfaces
OLE Support
At this point you will find Application, Field , Host and Configuration
Objects, Methods and Properties.
If you require further information contact Hummingbird Support at the email
address below.
---------<>---------<>---------<>---------<>---------<>--------<>--------<>-
-------
Norm Randa
Senior Technical Support Representative
HostExplorer & Hummingbird Basibr
Hummingbird Communications Limited
Support Email: support@hcl.com
FTP site: ftp.hcl.com
====== + ====== + ====== + ====== + ====== + ====== + ======
-----Original Message-----
From: Title: HostExplorer-Users [
] On
Behalf Of Scott Brooks
Sent: Tuesday, December 21, 1999 10:42 AM
To: HOSTEXPLORER-USERS@HCL.COM
Subject: Is there more documentation somewhere?
If I wanted to find additional documentation on the different HostExplorer
objects available for use to an .ebs macro, where can I look?
Thanks,
Scott
Scott Brooks
Information Technology
Penn State Geisinger Health System
Detail:
I'm creating a .ebs macro to FTP a file to a remote server. From the
samples I located code to do a multiple file put (MPUT), but I would really
like to do a single put via PUTFILE so that I can give the remote file a
different name from the local file I am FTPing. I've read through the
"Hummingbird Basic Language Guide" and found where it mentions PUTFILE. But
in this section it says to refer to online help for additional information.
So I looked in online help but did not find more on the properties and
methods of the HclFtp.Engine. I would really like to see documentation on
all the different HostExplorer objects available for use. Below is the code
I found in the samples*
' Initialize Ftp Engine
Set FtpEngine = CreateObject ("HclFtp.Engine")
' Create collection of sessions
on error goto FtpSessionsError
Set FtpSessions = FtpEngine.Sessions
' Create FTP session
on error goto FtpSessionError
Set FtpSession = FtpSessions.NewSession
FtpSessions.LocalDefaultDirectory =
FtpSession.ServerName =
FtpSession.UserName =
FtpSession.Password =
Etc.
|