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 SkipVought 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. 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;
  16. kjoost001

    Copying Data from the Web

    where should this be done, it cant be placed in excel or access, it should be built using VB, correct?
  17. kjoost001

    Copying Data from the Web

    Hello everyone, is it possible to write a program to retrieve data directly from a webpage and store it in a flat file. So instead of going to the web page manually, copying text, and pasting it; there is a program to automate the whole process?? Thanks, kj
  18. kjoost001

    javascript and asp

    what i was planning on doing....in short is... 1. have the user click a submit button 2. on submit, execute an existing .asp page (but dont have the .asp page show up) 3. after the .asp page has been executed, then go to another .html page. I was able to use this: &quot;window.location...
  19. kjoost001

    javascript and asp

    I would like to call an asp page via Javascript, but i dont want the asp page to appear, i just want the actions on the asp page to be executed. So, when the user clicks on the button, it will execute the asp page, but not go there. thanks

Part and Inventory Search

Back
Top