Transferring text from PCOMM to Access form text field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am writing VB macro that will screen scrape text from a Personal
Communications(IBM) display and assign this text to a text box on an Access
form. I am using the following code and getting a Syntax error. Any help
would be greatly appreciated.

[PCOMM SCRIPT HEADER]
LANGUAGE=VBSCRIPT
DESCRIPTION=
[PCOMM SCRIPT SOURCE]
autECLSession.SetConnectionByName(ThisSessionName)

REM This line calls the macro subroutine
subSub1_

sub subSub1_()
dim AcApp, Acmdb

set AcApp = CreateObject("Access.Application")
Acapp.opencurrentdatabase "Z:\mortgage.mdb"
AcApp.visible = true
with autECLSession.autECLPS
Acapp.Forms!FormName!TxtPolicy = .GetText(2, 3, 30)
End With
 
Back
Top