Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. colly9

    vb programming in web parts - functions not returning anything!

    Hello and thanks for the reply. I now know what this is - its a Sharepoint web parts parsing issue. When developing a web part, if I want to create any functions or sub routines not called GetContent or Init, then I must create a new .asp file in the "resources" folder in the...
  2. colly9

    vb programming in web parts - functions not returning anything!

    OK this must be really simple: Using Sharepoint V1 Developing web parts in MDE. Calling a VB function. Displaying what is returned. THERES NOTHING THERE! Here is the code: Function getContent(xmlndPart) Dim sContent sContent = "Here is the test results: " sContent = sContent &...
  3. colly9

    ADO ODBC recordset of Excel file returning NULL when value is "2 2"

    Using Excel 97, MDAC 2.6 Problem: opening an ODBC connection to an Excel spreadsheet (OLEDB connection fails with "cannot find installable ISAM"). Open recordset object and read in data. In one column, the first 4 rows of data are integer values, the fifth is alpahanumeric ("2...
  4. colly9

    ADO ODBC recordset of Excel file returning NULL when value is "2 2"

    Using Excel 97, MDAC 2.6 Problem: opening an ODBC connection to an Excel spreadsheet (OLEDB connection files with "cannot find installable ISAM"). Open recordset object and read in data. In one column, the first 4 rows of data are integer values, the fifth is alpahanumeric ("2...
  5. colly9

    ASP TransformNode not working with new XLS namespace !

    I fixed this. It was the server running the wrong version of msxml. Changing from: set objXML = Server.CreateObject("Microsoft.XMLDOM") to: Set objXML = Server.CreateObject("MSXML2.DOMDocument") gave a "msxml2.dll: Invalid Parameter" error, so I was quite...
  6. colly9

    ASP TransformNode not working with new XLS namespace !

    Since upgrading from NT4 to Windows 2000 my ASP code to generate HTML from XML files has stopped working. My XSL starts with: <xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;> When calling transformNode, rather than applying the XSL file to...
  7. colly9

    ODBC error running Oracle 7.3 stored procedures

    Hello everybody. ANy help with this would be appreciated ! Opening oracle connection thus: SQL_CN2.Open &quot;Provider=MSDAORA.1;Data Source=pimsproduction;User ID={ID};Password={PWD}&quot; strSqlStatement = &quot;execute test_proc&quot; Set Comm =...

Part and Inventory Search

Back
Top