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
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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.
  4. 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.
  5. 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...
  6. 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.
  7. 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...
  8. 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...
  9. 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...
  10. 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"...
  11. 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...
  12. JimFL

    String functions + search algorithm

    Hi, Does anybody know how I would go about using asp vbscript functions to find the first occurrence of a word/s within a string. Then pull out the sentence that the string exists within. I have done some work with splitting strings up into arrays to find the item but am unsure of how I would...
  13. JimFL

    DTS exported data and Funny characters ÿ

    Hi, I have a problem where I export data from my sql database to a excel spreadsheet. The problem occurs with text Data type fields that contain HTML code. So once the data has been exported to the excel spreadsheet the data contains lots of funny characters. For example a space is replaced...
  14. JimFL

    HTML Email + attachment

    Does anybody have a good solution for creating a HTML email using the mail object in Php that also can attach a static attachment from the server? I have found various solutions - all that dont seem to resolve my problem. Can anybody help?
  15. JimFL

    VBScript Reg Exp help

    Hi, I am trying to generate a simple search function that reads in the text file (ie html or asp) and then strips out the page content using the function below using vbscript. <% Function clearAllTags(s) Dim re Set re = New RegExp re.Pattern = "(<[^>]*>)" re.Global = True re.IgnoreCase...
  16. JimFL

    DIV Issue

    Hi, I am having problems trying to resolve an issue where I have a DIV element that is not placing itself within the correct place. http://www.fourleaf.co.uk/testsite/diva_events/index.html The testsite is in the above link. If I change the size of the window it stays in the correct...
  17. JimFL

    XML newbie + Feeds

    Hi, Im new to XML feeds and want to bring in an XML feed to my website. I have had a look through this forum and have read the tutorial on W3schools website so I have an idea of what I need to do, but it doesnt explain the transition form an external xml feed to my server php page. I would...
  18. JimFL

    Import DTS data issue

    Can anybody tell me how I can import data from an excel spreadsheet format to my database The excell format is: userID Answers set 1 Answers set 2 1 4,4,2 4,4,4,4,5,5,3,5,4,4,4,4,5 2 4,4,4 3,3,3,4,5,5,5,5,4,4,4,5,4 The problem is that...
  19. JimFL

    Solution for recordset get next and get last rows

    Does anybody have a good solution for this? I have a table below select * from table ID, TITLE 1 a 2 b 3 c 4 d I need to query the table at the ID each time but return the ID above and below the selected row. So if I query the row at select * from table where ID=2 I want...
  20. JimFL

    Mysql query solution

    I have a query below that would work perfectly well in TSQL but is not allowed in Mysql - does anybody know how to produce this using Mysql syntax. I want to get a max value from another table and produce it as a single field value in my result set. Can this be done? SELECT BID,x,y ( SELECT...

Part and Inventory Search

Back
Top