Jump to content

AlexeyV

Members
  • Posts

    3
  • Joined

  • Last visited

Everything posted by AlexeyV

  1. Hi, I think I found error in _CSVRecordsAppendFields in string $lAppendRecord = _CSVFieldsToRecord($pFields, -1, -1, $pDelimiter, $pEnclose, $pMode) Let's look at declaration of _CSVFieldsToRecord: Func _CSVFieldsToRecord($pFields, $pStartIndex = 1, $pNumCols = -1, $pDelimiter = -1, $pEnclose = -1, $pMode = 0) So, we assign $pStartIndex = -1 and thts an error Need to correct: $lAppendRecord = _CSVFieldsToRecord($pFields, 1, -1, $pDelimiter, $pEnclose, $pMode)
  2. What site do you use? maps.google.com? That site used AJAX technology for updating without reloading page. So _IELoadWait($oIE) could work not properly. I think you have to increase Sleep time.
  3. Thanks for that library, Ivan. I have one idea: in some version of Excel the default value of delimter is ';'. Is it able to replace $pDelimiter = ',' in each function for $pDelimiter = $constDefaultDelimter and place Global $constDefaultDelimter = ',' at beginning of module. So it's possible to replace $constDefaultDelimter at once. Are there any problem? Thanks, Alexey
×
×
  • Create New...