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!

Recent content by kiwieur

  1. kiwieur

    using current year in querystring

    gk53, Thanks for the info, it worked a treat. A star for you gmmastros, thanks for your input also Regards Paul
  2. kiwieur

    using current year in querystring

    gmmastros thanks for the speedy reply, tried your code but get this error ADODB.Command error '800a0d5d' Application uses a value of the wrong type for the current operation. /ChartaPad/OTIF/OTIF_YearCharts.asp, line 20 Regards Paul
  3. kiwieur

    using current year in querystring

    Hi, I have this query string at the moment <a class="nav" href="OTIF_YearCharts.asp?aYear=2015" target="cpOTIF_Main" >Charta OTIF 2015</a> I would like to change it so that it would use the current year so that I do not have to change it at the start of each year. I have tried <a class="nav"...
  4. kiwieur

    passing an input variable to a querystring

    Hi sugarflux, I did not build this website initially, which is our company intranet but I have been looking after it as the person who designed it left the company. I am learning as I go and will try and rebuild it without using frames once I can get my head around exactly what it all does. In...
  5. kiwieur

    passing an input variable to a querystring

    Hi sugarflux, Sorry I have not replied sooner but I have been on holiday, I have tested your javascript and it does what I need it to do however I do have one issue and this is my fault for not mentioning it earlier. The pages that these menus feed are in frames, this is a 2 column frame page...
  6. kiwieur

    passing an input variable to a querystring

    Hi All, I have a link to a page and the url contains a parameter variable to pass to a querystring on another page <a class="nav" href="../OEE/OEE_ChartYear.asp?cYear=2014" target="cpOTIF_Main" >OEE 2014</a> Obviously this will not work after the end of this year as it is passing 2014, I...
  7. kiwieur

    Loop through records

    1DMF & Andrzejek, Again thanks for both of your responses. Since the first suggestion from 1DMF I have been working on my code and I now added the e-mail code into my loop and I also had to close my form and report after sending the mail to make it work. This is the code I have at the moment...
  8. kiwieur

    Loop through records

    Hi 1DMF, Thanks for your response, I tried running the following code Public Function SendData() Dim rs As DAO.Recordset Set rs = CurrentDb.OpenRecordset("QryLoadNo", dbOpenSnapshot, dbSeeChanges) Do While Not rs.EOF ' do something , perhaps call the mailer program Call SendMail...
  9. kiwieur

    Loop through records

    I have the following code which if a record exists creates a PDF and sends an e-mail Public Function SendMail() Dim strFilename As String Dim strNewName As String Dim strHead As String Dim strSub As String Dim ddate As String Dim strfrp As String Dim strPlant As String Dim rsCount As...
  10. kiwieur

    combining 2 sets of form validation

    [2thumbsup]Hi 1DMF and thanks for your speedy reply, I have modified my code to the same as the code you sent me and it works brilliantly thank you so much for your help [2thumbsup] [medal] Regards Paul
  11. kiwieur

    combining 2 sets of form validation

    Hi, I have a form which has three sets of radio button groups all containg either "pass" or "fail" for each group at form load all radios are unchecked so that the user has to select either "pass" or "fail" for each group. the following code checks to make sure each radio group has a...
  12. kiwieur

    checking multiple radio groups values and putting result into a textbox

    [medal]1DMF, Thanks for your help, a star for you. [medal][2thumbsup] Regards Paul
  13. kiwieur

    checking multiple radio groups values and putting result into a textbox

    Hi 1DMF, Ignore me I had the test page in a sub folder therefore it could not find <script src="jquery-1.9.1.min.js" type="text/javascript"></script> I changed it to this <script src="../jquery-1.9.1.min.js" type="text/javascript"></script> and now it works Regards Paul
  14. kiwieur

    checking multiple radio groups values and putting result into a textbox

    I am not getting any value in the textbox, I have removed the td tag Regards Paul
  15. kiwieur

    checking multiple radio groups values and putting result into a textbox

    Hi 1DMF, I Tried your test page but is does not work for me, i must be doing something wrong <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html...

Part and Inventory Search

Back
Top