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 strongm 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: JimFL
  • Order by date
  1. JimFL

    Export to excel

    Would it be possible to use ASP to Transform an XML-Persisted ADO Recordset into an XML Spreadsheet that has already been created with my specified template? Ie I would be able to setup a template in Excel that would have the necessary functionality pre installed and I would use XML to bring in...
  2. JimFL

    Export to excel

    Hi Tarwn, Thanks for your reply - I think the first option you are speaking about may be the best solution for my project. I need to use an excel spresadsheet as the users are familiar with this application and it should provide them with the necessary functionality to take the test. Im going...
  3. JimFL

    Export to Excel

    Hi, Can anybody tell me if there is a way that I can export to excel from Asp and include a form that can then be resubmited back to my asp? I know how to generate the form at the asp end by changing the document headers as Response.AddHeader "Content-Disposition","attachment...
  4. JimFL

    Export to excel

    Hi, Can anybody tell me if there is a way that I can export to excel and include a form that can then be resubmited back to my asp? I know how to generate the form at the asp end by changing the document headers as Response.AddHeader "Content-Disposition","attachment...
  5. JimFL

    HTML code to create a meeting/appointment on email template

    Hi, Does anybody know if it is possible to write html code in an email template that will allow you to attach an invitation to a meeting or appointment? Is the correct forum for this or should I ask the same question elsewhere? Cheers JimFl.
  6. JimFL

    Outlook + attach invite to an email template

    Hi, Does anybody know if it is possible to write html code in an email template that will allow you to attach an invitation to a meeting or appointment? Is the correct forum for this or should I ask the same question elsewhere? Cheers JimFl.
  7. JimFL

    Radio buttons in a table

    Thanks for that feherke . Never seen the input tag name used like that before. Very useful.
  8. JimFL

    Radio buttons in a table

    Hi, Is there a way to use the DOM to uncheck all of my radio buttons (dynamic set names) within a table. I will be able to get the name of the table by document.getElementById("mytable"); I want to cycle through all radio buttons in the table and uncheck each one. I think this is possible...
  9. JimFL

    TSQL query

    Many thanks for your help on this problem. The solution above from gmmastros has resolved my issue. Apologies for the lack of information first time round, I will make sure that I am clearer in the future. Thanks all
  10. JimFL

    TSQL query

    Thanks for your help however my table x looks like this and your query doesnt produce my required results. TABLE x xID tID 1 1 2 1 3 2 4 2 5 3 So I would be looking to get back just the a count of the different values of tID - in this case 3. Does that help my...
  11. JimFL

    TSQL query

    Hi, Is there a quicker way using tsql to perform this operation in a single query. select count(tID)as f into #t from X group by tID select count(f) from #t Would appreciate anybodies thoughts on this. Many thanks in advance.
  12. JimFL

    Find broken links

    Hi, Can anybody tell me if there is any ASP code or a ASP component that will help me find broken links from within a database application field? If there is code that will allow me to test a link to see if the web response is active? if not then I could flag those links in my application...
  13. JimFL

    NotAllowedError + app.LaunchURL

    Hi, I am trying to run the app.LanuchURL code below to open a new document in a window but I get these errors in my javascript debugger. I am running the javascript command from link actions properties. The error: NotAllowedError: Security settings prevent access to this property or method...
  14. JimFL

    Run a Javascript in the Link properties to open a new window

    Hi, The original problem I have is that I need to build a pdf that will always open a link in another window. The pdf will be running from a browser and will need to open the file in a new window rather than opening within itself. I have tried using the Open a File and Open a Weblink option...
  15. JimFL

    PHP mail command + emailing hotmail issue

    Hi, I am getting nowhere quickly with a php mail issue. I have set up a script on my server to run a basic mail command on a unix server. The code is below but as you can see it should email. <?php $to = //my email address $from = //my domain in question $message ="This is a test"...
  16. JimFL

    Order by problem

    Absoulutely what I was looking for - thanks
  17. JimFL

    Order by problem

    Hi, Is there any way that I can optimse this query so that I return the order passed in by the mysql query. The reason I am trying to do this is because I have already defined my order in a previous array function and I am passing in a string as a list of ID's For example SELECT xID FROM...
  18. JimFL

    String functions + search algorithm

    I think a typo! j = injStrRev(str,".",i) should be j = inStrRev(str,".",i) And the function works . Thanks
  19. JimFL

    String functions + search algorithm

    Hi, Thanks for your responses.. As for the direct answer from dexeloper - I am getting an error Microsoft VBScript runtime error '800a000d' Type mismatch: 'injStrRev' line 4 Any ideas? Sheco - thanks for your response, can you help with the above?
  20. JimFL

    String functions + search algorithm

    In my example - using two full stops.

Part and Inventory Search

Back
Top