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: *

  1. Samoyed

    possible to pass param to cursor thru stored procedure?

    Hi, I'm just curious if this will work, or if there is a better way to do this. When I run just the cursor alone and hard code the StockistID, my cursor works. When I put this cursor into a stored procedure and pass a param to this cursor, it is not recognized :( Does anyone know how I can...
  2. Samoyed

    Click Flash Button, it calls html file?

    Hi, I'm just curious if this is possible, and if so what the actionscript code is. I have a folder called One. In this folder is my swf file called One.swf I also have a html file called Two.html If I click a button in One.swf, is there a way that the swf file closes and loads Two.html...
  3. Samoyed

    can i underline access key on a button?

    Hi Everyone, THANK YOU for your help. Now my button can change colors and display the underline. Heres what I did. <script language=vbscript> sub change(color) if (window.event.srcElement.tagName="INPUT") OR (window.event.srcElement.tagName="BUTTON") then...
  4. Samoyed

    can i underline access key on a button?

    Hi, Currently I have a button that has a shortcut key of o. I'd like to display this as Policies, with the letter o underlined. This is the current code. How does one go about doing this? <input type="button" accesskey=o value=Policies tabindex=210 accesskey=O onclick=Policies...
  5. Samoyed

    Insert data from 1 .mdb to another .mdb thru asp?

    Hi Thx for giving me ideas, I made my problem much more complex than I really needed to. I changed it to force the user to enter in the parameters instead of just listing in combo boxes what was already present in the mdb. It operates much quicker now after the user inputs. Thx to all who...
  6. Samoyed

    Insert data from 1 .mdb to another .mdb thru asp?

    Hi, From an asp page I am trying to copy data from one table in my PAC.mdb into another database called TestCopyTo.mdb. They both sit elsewhere on the server. I tried using the code below but I get an error (shown at bottom) <% Dim SQLstatement As String = "Insert Into 9809 Select * From...
  7. Samoyed

    Database value sets color property of picture

    Hi, I'm just curious if this is possible. I have a map divided into 2 regions. The population for each region is stored in a database which I would like to pull up and display in my picture. However, I would like to make the regions a specific color based on the population size. Is this...
  8. Samoyed

    Code is OK in IE but not Netscape :(

    Hi, I have a simple asp page which allows you to select something from one combo box, then that fills another one at the same time appending the selection in the url. This works fine in IE, but not Netscape. The files are located here...
  9. Samoyed

    Login page to your website using ASP

    Hi, I currently have an ASP page, which takes in a username and password which I pass to an Access database. Currently my database sits in a completely different directory than the web directory. Its not possible for anyone to hack/download my database is there? Thanx
  10. Samoyed

    Strip asp files

    Hi, I've heard of a program called web stripper that can strip files from a web site. Does this apply to asp files as well? My asp files reside inside my web folder, there is no way someone can get a hold of these asp files directly from the internet is there?? Thanx in advance {=o-)
  11. Samoyed

    Is this hyperlink possible?

    I know the code to link to another page on the same site the code would be: <a href=&quot;samesite.htm&quot;>Another Page</a> And to link to another site the code would be: <a href=&quot;http://www.destination.com/index.html&quot;>Another Site</a> But is it possible to link to another...
  12. Samoyed

    Popup tip on back button of IE 5.5 browser

    Hi, I'd like to know if this is possible. Currently when I move my mouse over the back button of my browser, a tip pops up showing the last page that I visited. Is it possible to program the browser to turn this feature off? Just curious...... Thanx in advance
  13. Samoyed

    Hiding Status Bar Display in an ASP page?

    Hi, I'd like to know if this is possible. After my asp page has loaded, it returns a number of results in the form of hyperlinks. Is there a general javascript function I can code, so that when I mouse over these hyperlinks, it will show a general message in the display bar status? Or do I...
  14. Samoyed

    ASP file to generate a frameset HTML file?

    Hi sjravee, Not to worry, I figured it out, basically instead of loading my asp page first, I load my frameset html page with the asp page embedded in the left navigation frame. What I return to the left navigation frame is a hyperlink which when clicked opens up the word/pdf document in the...
  15. Samoyed

    ASP file to generate a frameset HTML file?

    Hi, I'd like to know if this is possible. Can an ASP page return a result into a frameset page? I currently have the code below. It connects to a database and upon verification, the name of a file is returned. If it is a word document that is returned, i want it to appear in the far left...
  16. Samoyed

    ASP page to run MS Access function??

    Hi, I currently have a function stored in the modules tab in my Access 2000 database. To test it, I just call the function during the OnClick event of a button on a form. I know you can connect to the database through an ASP page by using ADO. What I'd like to know, if its possible, can this...
  17. Samoyed

    Help Re: Search Engine Query Results

    Hi I'm not too sure if this will help but I am currently working on a search feature on my website and this article really helped. http://www.state.ma.us/webmass/Index_Server.htm :)

Part and Inventory Search

Back
Top