Guest pernellwb Report post Posted 03/04/2009 06:01 AM Hello Support team, My engine is version 7 so I am following version 7 dialer_outdialerqueadd protocol when i tried to do this set vg = CreateObject("vgServices.CommandLink") vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "9:00 AM", "5:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "C:\project\sysgen\Faxsubject1.pdf","", "", "", 90, 2, 30, "", "" adding the pdf a new column an error "Class doesnt support automation : vg.Dialer_OutDialQUeAdd .." but when I take out the pdf entry.. as in set vg = CreateObject("vgServices.CommandLink") vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "9:00 AM", "5:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "", "", "", 90, 2, 30, "", "" "it says Invalid procedure call or parameter : vg_Dialer_OutDialQueAdd.." Ive gone back and forth with the parameters and all, its the same thing as posted in the Online Documentation what am i missing? also if there was an invalid class error when i added pdf into the parameters, how can i add it into the parameters? ANy response woul be greatly appreciated. Thanks a lot!!! Share this post Link to post
SupportTeam Report post Posted 03/04/2009 08:05 AM Try this: vg.Dialer_OutDialQueAdd "0768197898", "", "2009-03-04 4:45:00 PM", "1:00 AM", "11:00 PM", "", "", "Campaign a1", 1, "C:\temp\soundfiles\am.wav", "", "C:\project\sysgen\Faxsubject1.pdf", "", "", 90, 2, 30, "", "", "" Looks like the example in Help file has a problem with it. We'll fix up the example in the next version update. Share this post Link to post