SetValue

The SetValue method sets a date value at the specified index of a date array.

[VB] void SetValue(
  long Index,  
  DATE Value 
);
 
[JAVA] void SetValue(
  int Index,                
  double Value  
);
 
[C++] HRESULT SetValue(
  LONG Index,         // in
  DATE Value          // in
);
 

Parameters

[VB][JAVA][C++] Index
Specifies the index into the date array at which to set a date value.
[VB][JAVA][C++] Value
Specifies the date value to set.

Return Values

This method does not return a value.


© 1997 by Microsoft Corporation. All rights reserved.