メールの本文をメモ欄に入れる方法を教えてください。エラーが発生しています。
メールの本文をメモ欄に描き込みたい。
エラー # 1943 メッセージ: メンバー ACTIVEINSPECTOR がオブジェクトに評価されません
USE CMCONTROL IN 0
USE CMEMAILS IN 0
local array MyFiles[1,5]
nFilesFound = ADIR( MyFiles, ALLTRIM(cmcontrol.cpath) + '*.*')
xx = 0
for i = 1 to nFilesFound
xx = xx + 1
WAIT WINDOW NOWAIT 'FortenStar® Count-O-Matic'+CHR(13)+CHR(13)+'Email Record Count: '+ ALLTRIM(STR(xx))
***********************************************************************************
*** HOW CAN I MAKE THIS WORK?
***********************************************************************************
msgfile=ALLTRIM(cmcontrol.cpath) + ALLTRIM(cmemails.csubject)
o = CreateObject("Outlook.Application")
emailmsg = o.ActiveInspector.CurrentItem
memofiledvariable = emailmsg.body
***********************************************************************************
***********************************************************************************
***********************************************************************************
insert into cmemails (cprimary, csubject, ddate, dtime, cattribs, mbody) values (generateGuid(26), MyFiles[ i, 1], MyFiles[ i, 3], MyFiles[ i, 4], MyFiles[ i, 5], memofiledvariable)
endfor
USE IN SELECT('CMEMAILS')
USE IN SELECT('CMCONTROL')