Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HOW DO I CALL THAT FORM AFTERS THE IMPORT ?

Status
Not open for further replies.

AccpacSudha

Programmer
Oct 3, 2007
10
GB
HI

I am using below code(vb.net) to import from access to accpace OE. It is works fine but not getting any warning messages FORM.(When I import manualy seperate popup form open and display how many records inserted, processed, updated etc.). My question is HOW DO I CALL THAT FORM AFTERS THE IMPORT. Please Help

'Database connection
ACCCONDB = AccpacOE1100UICtrl1.UISession.GetDBLink(AccpacCOMAPI.tagDBLinkTypeEnum.DBLINK_COMPANY, AccpacCOMAPI.tagDBLinkFlagsEnum.DBLINK_FLG_READWRITE)

IMP = New AccpacImportExport.ImportExport
'opening the connection
IMP.Open(ACCCONDB)
'Import action
IMP.ImportAction = AccpacImportExport.tagImportActionType.IMPORT_INSERT_AND_UPDATE

IMP.StoreRetartInfoInAccpacProperty = True
'Running the Import script
IMP.ExecuteImportScript("IMP150208.xml", True)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top