RE: Win32 OLE modification of component identity

2004-05-03 Thread Miguel Laborde
to SaveChanges() seems to be the way to update the component info. Thanks though :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Steven Manross Sent: Monday, May 03, 2004 2:14 PM To: Miguel Laborde; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification

RE: Win32 OLE modification of component identity

2004-05-03 Thread Steven Manross
:29 AM To: Steven Manross; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification of component identity No go unfortunately.. I get the following error: Found component Win32::OLE=HASH(0x1f91e70) Check1 retrying default method at C:/Perl/site/lib/Win32/OLE/Lite.pm line 156. Check2 after modifying

RE: Win32 OLE modification of component identity

2004-05-03 Thread Miguel Laborde
, May 03, 2004 11:29 AM To: Steven Manross; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification of component identity No go unfortunately.. I get the following error: Found component Win32::OLE=HASH(0x1f91e70) Check1 retrying default method at C:/Perl/site/lib/Win32/OLE/Lite.pm line 156. Check2

RE: Win32 OLE modification of component identity

2004-05-03 Thread Steven Manross
] Subject: RE: Win32 OLE modification of component identity No go unfortunately.. I get the following error: Found component Win32::OLE=HASH(0x1f91e70) Check1 retrying default method at C:/Perl/site/lib/Win32/OLE/Lite.pm line 156. Check2 after modifying the code with: print Check1\n; $COMComponent

RE: Win32 OLE modification of component identity

2004-05-03 Thread Miguel Laborde
Of Steven Manross Sent: Monday, May 03, 2004 3:34 PM To: Miguel Laborde; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification of component identity Lastly, Try something like this. $COMComponent-{Value}-{Identity} = $varUserStr; $COMComponent-{Value}-{Password} = $varPasswordStr; There seems

RE: Win32 OLE modification of component identity

2004-05-03 Thread Steven Manross
Manross Sent: Monday, May 03, 2004 3:34 PM To: Miguel Laborde; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification of component identity Lastly, Try something like this. $COMComponent-{Value}-{Identity} = $varUserStr; $COMComponent-{Value}-{Password} = $varPasswordStr; There seems

RE: Win32 OLE modification of component identity

2004-05-03 Thread Steven Manross
'; [EMAIL PROTECTED] Subject: RE: Win32 OLE modification of component identity Try something like this. $COMComponent-{Value}-{Identity} = $varUserStr; $COMComponent-{Value}-{Password} = $varPasswordStr; There seems to be no Identity property on the Com Component Object, instead

RE: Win32 OLE modification of component identity

2004-05-03 Thread Jan Dubois
Try something like this. $COMComponent-{Value}-{Identity} = $varUserStr; $COMComponent-{Value}-{Password} = $varPasswordStr; There seems to be no Identity property on the Com Component Object, instead, the user and pw are part of a variant of the Value property. Nope, this looks like an