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!

Recent content by kjoost001

  1. kjoost001

    return value - keystroke

    thanks for responding, sorry for not clarifying. I want to actually send a enter key press to the app.
  2. kjoost001

    return value - keystroke

    In VB, does anyone know the command for a Return Keystroke? Is it even possible? Thanks
  3. kjoost001

    call the internet

    is there a line of code, or command, in which I can call Internet Explorer from a visual basic sub?
  4. kjoost001

    Incrementing an "index" in a query.

    I have used some VBA code to increment a "index" row in an append query. See below. The code works correctly when used from my local desktop, but once accessed through citrix, it does not perform the same. What happens is: it calls the function once, and for each record, it places...
  5. kjoost001

    apostrophes and double quotes

    does anyone know how to eliminate the problem of double quotes and apostrophes. if there is an apostrophe in my sql statement, it causes a break in the string. thus, when I try to do an insert from my .asp page, it fails. It is really annoying and I was wondering if someone could help me. Is...
  6. kjoost001

    html watermarks

    actually, i figured it out. what i did was inserted the image into word, chose format, and &quot;watermark&quot;, then I referenced the image in the <body> tag.
  7. kjoost001

    html watermarks

    does anyone know how to put a watermark on a page? can it be any type of image?
  8. kjoost001

    stored procedures

    Hello, I am trying to execute a stored procedure (an Access Macro) from an .asp page. Does anyone know if this is at all possible? I am using Access 2000. thank you for your time, ken
  9. kjoost001

    ASP And Access

    Does anyone know how to call a stored Macro from ASP? My macro is &quot;Macro1&quot;, why doesnt the following work? con.Execute &quot;exec Macro1&quot; Is it possible to call a macro from an ASP Page? Thanks.
  10. kjoost001

    ASP and UPDATE QUERY

    thanks for the response awithers, however, i have attached my code with your response, and i stillreceive internal server error. here is my code ( can you use the execute method with an update query type?) thanks again. <% Option Explicit %> <% Dim dcnDB Dim sDatabaseLocation Dim objrs...
  11. kjoost001

    ASP and UPDATE QUERY

    I am trying to execute an update query already stored in MS Access from an .asp page. Is this possible? Can I use QueryDef? If so, i have no clue on syntax. please help if you can. thanks, ken
  12. kjoost001

    dynamic variable

    wondering if there was anyway to assign a variable dynamically when looping: view code below: for(nLoopCount = 1; nLoopCount < playerCount; nLoopCount++) { var playerStatus = document.write(&quot;form.&quot; + &quot;position&quot; + nLoopCount + &quot;.selectedIndex&quot;); } WHAT I'D...
  13. kjoost001

    Easy Question

    Attached is my code. I have also tried .text, same problem. Thanks everyone for your time. i owe you one. <script language=&quot;javascript&quot;> function validateOffense(form) { var offenseType = form.offtype.selectedIndex; var playerStatus1 =...
  14. kjoost001

    Easy Question

    thanks for the quick response. for some reason, this is not working. is there anything else i need to include? var playerStatus8 = form.position8.options[position8.selectedIndex].value Any help is greatly appreciated. Thanks.
  15. kjoost001

    Easy Question

    I am trying to get the selectedIndex when using select lists. My problem is, it only returns number values, i want it to return the text that is actually selected. How do I do this? So far this is my code: var playerStatus8 = form.position8.selectedIndex;

Part and Inventory Search

Back
Top