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 Chriss Miller 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: *

  • Users: JSpicolli
  • Content: Threads
  • Order by date
  1. JSpicolli

    DataSet.GetXml Preserve XML Declaration ???

    Hi, Is there not a way to specify that a DataSet should Preserve the XML Declaration when calling DataSet.GetXml ? I am using the DataSet only to Merge 2 XML strings. After I merge the 2 dataSets, I then Call ds.GetXml to return the XML string with all the records merged into it. I then pass...
  2. JSpicolli

    Can XSL Output 2 XML Files?

    Is it possible to have an XSLT that produces 2 XML files as a result?
  3. JSpicolli

    Filter Template Match By Global Param

    Can I filter a Template Match by a global Param? This First Code block Works:, but the seconds does not and the Only Difference between the two is the first has the filter hard-coded the second tries to use the param value. <xsl:stylesheet version="2.0"...
  4. JSpicolli

    Daylight Savings Time Function

    Anyone got a function that will return a bool, depending on if Eastern time is currently on Daylight Savings time? I need to convert EST to GMT, but the offset differs by an hour depending on if we are on Daylight Savings Time or not. GMT_OFFSET = 5 IncidentTime = dateAdd("h", GMT_OFFSET...
  5. JSpicolli

    Any1 Got a GMT List / csv?

    I need a list of GMT times. CSV is preferable so I can import them into DB. I have googled and came up empty handed. Anyone know where I can find such a list? TGIF
  6. JSpicolli

    Multi Param Proc & Coalesce problem

    Hi, Hopefully some of you SQL Guru's can help me out with my dilemma. I am developing a report that takes multiple input params via a webform. The users want to be able to search on optional multi-field criteria. They can select as many field values as they want and the search will return the...
  7. JSpicolli

    job failed. Unable to determine if the owner has server access

    I have a SQL Server 2000 DTS package scheduled as a job. The DTS package queries Active Directory and imports / updates all info into SQL. The owner of the DTS package is an account that has access to A/D. The Sql Box itself has permissions to access A/D. If I am logged into the console and...
  8. JSpicolli

    Word - Html string to Formatted text

    Hi, I have a VB6 app that reads XML data to generate a word report. Some of the data I read out of the XML are html strings, instead of plain text. I tried With ActiveDocument.Range.Find .ClearFormatting .MatchCase = False .MatchWildcards = True .Text =...
  9. JSpicolli

    WTF is this?

    all of a sudden when I use the ipconfig command, it returns a bunch of hex or something along with the normal data, for instance my ip address displays as: fe80::206:25ff:fe1c:bd1a%4 Can someone tell me what this is all about? Ethernet adapter Wireless Network Connection...
  10. JSpicolli

    ASP Data Access Wrapper Class

    Here is an asp DataWrapper class that you may use to perform various database operations without having to manage opening and closing recordsets and connections. The Error properties will let you know when there is any error. The RS2XML Function returns well formed XML built on the recordSet...
  11. JSpicolli

    Formatting new Word Reports From VB6

    Hi, I would like to create a VB6 program that spits out a word report. The Report needs to have some table formatting and font formatting. All the sample I have found so far, only cover editing existing documents. Does anyone have any knowledge or links they could share with me on this...
  12. JSpicolli

    User vs Server Control

    Hi, I am pretty sure I need a server control for what I woul dlike to do, but perhaps I can get it done with a user control, thatis what I am looking for help with. basically, I want to make a visual control that I can treat like an instance object. For instance: Poll myPoll = new poll(14)...
  13. JSpicolli

    Determine Input params at runtime

    is there a way to get the names of a proc's params?
  14. JSpicolli

    Dynamic SQL - Evaluating String Execution

    I have a proc that takes a bunch of input params. of these, are included @sOption1 thru @sOption5. There is also a paramter @OptionCount that holds how many @sOption params contain input data. Every @sOption param that has data needs to be inserted into a new row in te table. In my proc I...

Part and Inventory Search

Back
Top