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 gkittelson 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

    Thanks it works :) Solved my problem :)
  2. 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...
  3. 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
  4. 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...
  5. NewTerminator

    Remove duplicates in Array

    The 2 loops take a long time if the array size is huge (in my case it cross over 35,000) values. I found a javascript code that can do the trick using hash algorithm. Thought i would share it with u guys :) function removeDuplicates_list() { var mainlist = document.form1.mainlist.value...
  6. NewTerminator

    Remove duplicates in Array

    Anyone know how to remove duplicate values from an array using actionscript. Any help would be appreciated. Thanks.. NewTerminator
  7. 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>...
  8. 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
  9. NewTerminator

    Insert XML Data into MySQL table

    Thanks for ur help! My major concern was abt the XML part :). Its ok, I will try to figure it out. Meanwhile if someone gets it here, plz help me :)
  10. NewTerminator

    Insert XML Data into MySQL table

    Is that FileScriptingObject or FileSystemObject ?? FileScriptingObject does not seem to work. Anyway, how do i create a table based on the XML feed and dump the values into it ? Thanks
  11. NewTerminator

    Insert XML Data into MySQL table

    Not found much info on the problem that i had. Do u have any other place where i can i get it?
  12. NewTerminator

    Insert XML Data into MySQL table

    Ur answer is a good news to me ! Thanks for it. Do u know any web sites where i can get examples for the above?
  13. NewTerminator

    Insert XML Data into MySQL table

    thanks for the reply? can this be taken care in ASP?. BTW is it possible to create the table dynamically?
  14. NewTerminator

    Insert XML Data into MySQL table

    Thanks for your reply. I would like to insert the contents of the XML file to the DB. The XML file can range anywhere from 900 lines to 9000 lines. Hope this helps you answer my query! Thanks San
  15. 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
  16. NewTerminator

    Set DataSource Location Problem

    Yes i am trying to the Set Location through Crystal Reports!
  17. 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...
  18. NewTerminator

    Editing crystal viewer Export and Print page

    I can help u out with the part of programatically exporting CR9 reports. But i am not able to print :( . So i open the file after exporting and then print it... S
  19. NewTerminator

    Editing crystal viewer Export and Print page

    I have contacted Crystal and even they have confirmed that the look and feel of the export and the print pages cannot be changed. (the funny thing was the export and print options never worked for me. it was always showing me a report with blank detail sections.) You can try writing a export...
  20. NewTerminator

    Viewing Subreports on a web browser

    The report works fine on the web browser if i don't pass the parameter values programatically. (ie i use the default parameter prompt page of CR). If i enter the parameter values in the default prompt page, the specified sub reports are displayed without any problem. Can u tell me how have u...

Part and Inventory Search

Back
Top