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

  • Users: thunderain
  • Content: Threads
  • Order by date
  1. thunderain

    Opening New Window Sending Internet Link Through href

    Hi people: I have been fighting with this for quite some time, should be a simple thing to do but i can't get it working. I need to send an internet link through and href, pick it up in javascript in head and open the internet page in a separate window. This code can be copied into an asp file...
  2. thunderain

    Make Javascript varable = asp variable

    Hi people I have an asp variable such as (two examples) pagelink = &quot;http://www.heinz.com&quot; pagelink = objRS (fieldname) I need to put that variable into a javascript variable such as: <script language=&quot;Javascript&quot;> <!-- var urlSend urlSend = pagelink //--> </script>...
  3. thunderain

    Web Page dsn less hook up to Access database

    Hi: I am trying to put my asp program on a web server and trying to call up an access database. Should be simple. I have done several on my hard drive, works fine. I need to have it work on a web page. I called the server and they said i need a dsn less code hookup. Went on google found one but...
  4. thunderain

    Error 1920 on install - privileges to start system services

    Hi: I am having trouble installing norton anti virus corporate edition. About 3/4 the way through the install i get an error: Error 1920.Service NAVAPEL (NAVAPEL) failed to start. Verify that you have sufficient privileges to start system services. Here is some more info on the Norton, I hope...
  5. thunderain

    Search Code Adds Results to Results Page Instead of Replacing

    Hi My problem is that I have Frames, with a javascript search function. The Search form is in the top frame, with results appearing in the body frame. The first search works great, but when you do a second search, it adds the second results to the bottom of the first results. I need the page to...
  6. thunderain

    IMAGE TAG NOT WORKING

    I am working on my first major xml project. I have everything working pretty well working except putting an image in. I have tried many different things, but here is what i have now. I cannot get the image to appear except as hardcoded below. Here is what I have in my XML: <images>...
  7. thunderain

    Need Wildcard to work in Replace

    Hello: I am using ASP with vbScript. I have an search sql statement using &quot;like&quot;, &quot;not like&quot; and &quot;fuzzy match&quot; that I need to send through a link. When i send it through a link, it loses it's % characters on the receiving page. Using replace, i am trying to replace...
  8. thunderain

    Variables don't work in spot where Hardcoded values do

    Hi I have a fuzzy code dll for a fuzzy search. The dll is in vb, but my program is in asp/vbscript. When i use this line to feed the dll, with hardcoded info, it works perfect: s=objRS6.avfuzzyequiv(&quot;EntryLP&quot;,&quot;WNF180&quot;,4,&quot;%&quot;) This code gives me exactly the...
  9. thunderain

    asp and vb functions

    This is more of a question at this point I am doing a program for a customer in asp/vbscript. The customer has a function in visual basic he wants us to use. Is it possible to call a vb function up when you are using asp/vbscript? Any suggestions on how? Thank you thunderain
  10. thunderain

    Arrays inside Insert statement

    I have an add form sending add info to backend add.asp. The code puts the info into field and value arrays and i must then use an insert statement to put info into the database. This code works perfectly: Set objRS1 = objConn.Execute(&quot;INSERT INTO tblPatrons (&quot; & _ arrayField(0)...
  11. thunderain

    onKeyPress gives errors

    I am programming in ASP with VBScript. I have a function which is visual basic. It puts letters in uppercase and also weeds out all sybols such as $,%, etc. I am trying to call it from a form field but having trouble. The funtion: (I have this in the head, tried in different spots) <script...
  12. thunderain

    Date variable in select gives error

    This should be a simple fix. This is the select clause i am using with microsoft access database using date variable. It works perfect. Date variable is occValue. strSQL = objRS1(&quot;SelectClause&quot;) & &quot; AND (&quot; & fieldname & &quot; Like #&quot; & occValue & &quot;#) ORDER BY...
  13. thunderain

    Data Type Mismatch on Dates Search

    Im my program I am doing several searches on the database. I have a problem with dates. My first search to equal a date gives no error. Works fine. A second search to find a date inside a range gives a data type mismatch error. I don't know why I would get this here when the equals seach...
  14. thunderain

    Image button won't send value

    This should have a simple solution. My form submit button works fine if I use type=&quot;submit&quot;, it sends the value of &quot;View&quot; just fine. <input type=&quot;submit&quot; name=&quot;btnView&quot; value=&quot;View&quot;> However I need to use and image. When I use the line below...
  15. thunderain

    Type Mismatch

    I am using an access database. I am trying to read my primary key, field name - intCustomerID, Data Type - AutoNumber. I am retrieving it into a form to send to the next page. Here is the code that should work: Response.write &quot;<form method='post' ACTION='buttonchoice.asp'>&quot; while...
  16. thunderain

    Opening in same page with Frames

    I hope someone can help me with this. I asked before but i think i didn't give the right info. I have this working, a site search opening a separate window for results, but I have to have results displayed opening up in the same window in a page with three frames (top, side, main). results need...
  17. thunderain

    frames, form, come up in same page

    Hi: Can anyone help me. My opening page has three frames. When i type a number into the box and click on the Search button, I want the results to apear in the same page in the main body area (frame called &quot;main information&quot;, page called &quot;indexbody.html&quot;). Instead the page...
  18. thunderain

    DSN, Storing variable permanently

    I have Windows 98. My two databases is set up in Control Panel, ODBC Data Sources, User DSN My program will be using two databases. I am using a drop down menu for the user to pick which database to work with. Once the database is picked, they will be using it on all other pages. After...
  19. thunderain

    Searching Access database with two numbers from textbox

    This peice of code works somewhat. I recieve two numbers from a textbox in the previous screen such as (AM79C30A, AM79C978). I want to get all the records (from AMD_Part_Number field in filtron table) that match either number. It depends on what order you put them in. I put two numbers in...
  20. thunderain

    Coldfusion search: Wrong number of parameters error.

    1/Coldfusion Studio 4.5a, Microsoft Access 2000 database 2/ I am trying two input two numbers from a form on previous page, get all files in a table that match either number. 3/ I get this error: Error Diagnostic Information ODBC Error Code = 07001 (Wrong number of parameters) [Microsoft][ODBC...

Part and Inventory Search

Back
Top