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 Wanet Telecoms Ltd 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. NewTerminator

    Storing executed page in a variable

    Is there any way i can do something like this strText = Server.Execute("test.asp") What i want to achieve is that i want to execute an asp page and get the output in a variable. The asp page has server.execute statements inside it. If i cannot do this in ASP, can i get it done...
  2. NewTerminator

    Having horizontal scroll in the ListBox Component

    Is it possible to have a horizontal scroll in the listbox component. I do not want to use text boxes with the scroll components because i am not able to get the selection feature that listbox provides. Any help would be appreciated. Thanks San
  3. NewTerminator

    Parameterized Queries - Conversion problem for the IN clause

    I have an sql statment that looks like the one below: declare @IDs varchar(100) set @IDs = '''113''' + ',' + '''115''' select * from Student where convert(varchar(30),cid) in (@IDs) the cid column is of type int. print @IDs returns me '113','115', but i am still not able to retrieve records...
  4. NewTerminator

    Remove duplicates in Array

    Anyone know how to remove duplicate values from an array using actionscript. Any help would be appreciated. Thanks.. NewTerminator
  5. NewTerminator

    Reading XML data

    I have a XML document that looks like the one below: <rootelement> <elementparent> <child1>child1 </child1> <child2>child2 </child2> </elementparent> <elementparent> <child1>child1 </child1> <child2>child2 </child2> <child3> <subchild>Testing</subchild> </child3>...
  6. NewTerminator

    Dynamically Apply DTD

    I have 2 questions about DTDs 1. Is there any way that i can dynamically apply a DTD to an XML file using ASP? 2. When you load a XML file using the Load function of MSXML2.DOMDocument object, does it ignore any DTD that the XML file refers? Any help would be appreciated? Thanks, San
  7. NewTerminator

    Insert XML Data into MySQL table

    Is there any way i can insert data from an XML file directly to a MySQL table (something similar to SQLXML does for SQL Server 2000)? Any help would be appreciated! thanks san
  8. NewTerminator

    Set DataSource Location Problem

    I have a Report that is created using rows returned by a Stored Procedure from SQL Server 7.0. The Report works fine, no issues with that. Now i want to set the datasource location of the report to one more SQL Server where a copy of the same database exists. When i try to do this i get an...
  9. NewTerminator

    Viewing Subreports on a web browser

    I have a main report which has 5 subreports all having the same number of parameters. There is one parameter that accepts the report name and then displays the appropriate one. All the reports are suppressed and i have a supressing formula. My main report works fine in the CR environment and...
  10. NewTerminator

    Exporting SubReports

    I am using CR9. I have written my own procedure that exports a report into various supported formats. My report has a subreport in it. Now when i export into any format, only the main report gets exported and not the subreport. Even if i drill down to the subreport and export, it still exports...

Part and Inventory Search

Back
Top