About 4,330,000 results
Open links in new tab
  1. Workbooks.OpenText Error "Expected function or variable"

    Why does my code below not work? It highlights the .OpenText part and states: Expected function or variable Dim Indata As Excel.Workbook Set Indata = Workbooks.OpenText …

  2. How to programatically define FieldInfo parameter on Workbooks ...

    Jul 20, 2018 · The Workbooks.OpenText method takes a parameter called FieldInfo to determine the format types in each column. For example the following code will open a text file and give Columns 1 …

  3. Using VBA to open a tab delimited .txt file to save to .xlsx format

    Mar 24, 2014 · Just use Set WB = Workbooks.OpenText Filename:=... and you'll have your (one) workbook open. To save, you can use what you're using now or you can save it using the …

  4. opentext - REST API to upload PDF's and index values to categories …

    Apr 6, 2017 · I want to upload some documents to Open Text via the REST API 's. I have an Open Text CS set up, but I am not able to hit any of the REST API 's. Also, I need to know how to map my …

  5. Workbooks.OpenText not parsing csv files properly Excel 2016

    Feb 13, 2017 · Workbooks.OpenText not parsing csv files properly Excel 2016 Asked 8 years, 9 months ago Modified 5 years, 2 months ago Viewed 16k times

  6. How can I add a new document to Content Server 10.5 using the REST …

    Dec 28, 2015 · 0 It appears that the OpenText API only supports file uploads through asynchronous JavaScript uploads - not through traditional file uploads by using typical posted form requests that …

  7. How to open Text File with .OpenText in VBA that starts with first ...

    I've come across a nasty little bug in Excel VBA's .OpenText method.. It errors on opening any text or CSV file when the first two letters are upper-case "ID". Here is the article from MS so you ...

  8. .net - Unable to open a file using System.IO.File.OpenText (file path ...

    Dec 8, 2016 · Unable to open a file using System.IO.File.OpenText (file path) in C# Asked 8 years, 11 months ago Modified 8 years, 11 months ago Viewed 5k times

  9. Gupta Centura/Team Developer guides/manuals/book

    Mar 19, 2018 · The toolset is now owned and developed by OpenText ( and is commonly referred to as Gupta ) and the latest release is v7.1 - which is native 64bit , UNICODE and .Net enabled.

  10. C# Help reading foreign characters using StreamReader

    StreamReader reader = new StreamReader(inputFilePath, System.Text.Encoding.ANSI); using (reader = File.OpenText(inputFilePath)) Thanks Update 1: I have tried all encodings found under …