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. ikalair

    adobe reader not working with adobe professional installed

    i've solved my "dilemma" :) i figured i'd go with the same version for the reader as Adobe Professional, so i uninstalled reader 7.0 and installed 6.0. I set this as the default, and all is well. Since on my PC, the reader does take several seconds to load, i changed the default to Internet...
  2. ikalair

    adobe reader not working with adobe professional installed

    hi i'm trying to view pdf's through adobe reader 7.0. I have adobe reader installed and this worked fine. I have now installed Adobe Acrobat Professional 6.0 and now all pdf's open in Professional. Even if i right click on a pdf and select "open with adobe reader 7.0", the file will still open...
  3. ikalair

    executing and returning value from stored procedure

    thx jemminger. I'll try your method. It does seem to be cleaner. I also figured out why my code wasn't working. I wasn't including adovbs.inc on my pages. In Visual Basic, this file isn't needed. But with ASP it needs to be since all the parameter types used need to be declared...
  4. ikalair

    executing and returning value from stored procedure

    Hi, I'm having trouble running my stored procedure. I'm using the Connection and Command objects in my .asp. I keep getting the following error" "Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another." In my ASP script, I've tried...
  5. ikalair

    Alternate Way of Location.Replace()

    window.location.href = "http://wwww.domain.com";
  6. ikalair

    Session variables and IFRAME

    Hello I have an .asp file that has a session variable declared on it. This page also has an IFRAME embedded in it. The problem i'm having is that I'm losing the value of my session variable as long as the IFRAME is on my page. If i delete the IFRAME code, then everything is well. There is no...
  7. ikalair

    VBScript

    I'm sure someone has a more economical way of doing this, but this should work. <%@ Language=VBScript %> <%Option Explicit%> <% dim str,x,h1,tmp,ending str = &quot;Hello myst rin gis[]Thi[]s.&quot; Response.Write &quot;<b>orig str is</b> &quot; & str & &quot;<hr>&quot; str =...
  8. ikalair

    VBScript

    could you give an example of a sample string?
  9. ikalair

    drop down menu scripts

    [afro] - thx
  10. ikalair

    form validation

    This should work. <html> <head> <title>Untitled</title> <script> function validate() { //check ifcheckbox and txt field weren't touched if (document.all.c1.checked==false && document.all.txt.value==&quot;&quot;) { alert(&quot;Please answer the question&quot;); } else //The question was...
  11. ikalair

    How do you populate one listbox based on what is selected in a second

    The following code should accomplish what you want. I've put comments in the Javascript code to explain what i'm doing. You can take the following code and place it in a blank .html file. It should work fine. <html> <head> <title>Untitled</title> </head> <script> //arrays to contain the names...
  12. ikalair

    Converting a URL entered in a text area as Hyperlink

    thx for the quick reply Gary. I came across a great script though to take care of everything. Paste the following into a .asp file and open it. Its really good. Only drawback is that it doesn't recognize email addresses. If Option Explicit is set on your pages, you'll have to declare the...
  13. ikalair

    Converting a URL entered in a text area as Hyperlink

    Hi, i'm also in the same situation where i wanna convert text links to hyperlinks. vasah20, i tried using your code, but am not getting any results. Just a blank page. I tried assigning a value to txtAreaStr since all the string operations are occurring on this variable. No results though. I...
  14. ikalair

    Clearing swf file from Cache in ASP situation

    Hi Mike I'm having the same problem that you posted earlier. I'm using IE 6.0 and i find that after the database is updated, I need to press CTRL+F5 to view the new data. I've also tried using the Response.Expires and also tried: <% Response.Expires = 15 Response.ExpiresAbsolute = Now() - 2...
  15. ikalair

    My Browser Wont Truly Refresh! (Win2000&amp;ASP)

    I'm having the same problem discussed earlier about flash using older asp scripts until the cache is emptied. HotMadras, i was hoping you could give me some instructions on how to resolve my problem. I'm using Flash as the front-end,MS Access as the backend database, and ASP as my server side...
  16. ikalair

    displaying database/table properties

    Hi Are there any functions that display the number of fields in a table and/or their data type? I'm using Access for now, but would like to find out this info for both Access and SQL Server. Thx.
  17. ikalair

    How to word wrap in the editor

    Hi, i'm using interdev for the first time. I've opened a couple of existing pages and have realized that the code in the editor doesn't automatically wrap. Is there any way for the code to wrap? Homesite has this feature, i figured it was a basic feature. Would appreciate any help/advice.
  18. ikalair

    Difference betwen JRE, JDK, and SDK ???

    Hi. I'm a newbie as well. Just so i have it all right: SDK originates from JDK. To create and compile Java programs, i can use either one - since both come with the necessary tools (javac,java,etc.). If this is the case, which one do i actually use? I've been using JDK 1.1.8 so far for basic...
  19. ikalair

    Java compiler

    thx. for the advice guys. I'll be back later with Java questions once i get started. Later.

Part and Inventory Search

Back
Top