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

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

    sum field value

    Hello I am writing a script where I have <%= rsGuestbook ("B1R1G2")%><%if rsGuestbook ("B1R1G2")=rsGuestbook ("B1R1G2w")then value="3" else response.Write(" Lost")end if%><% if value="3" then response.Write(" Win 3 Points")else response.write(" 0 points") end if%> I know you can do something...
  2. nonprogrammer

    If statement and input

    I was wondering if you can do in if statement then input would it be something like <% if rsone("a1") = rstwo ("aw1")then input 3 into "as1" end if%>
  3. nonprogrammer

    data from two tables

    Hello All, I am writing a script that requires me to use two different tables so what I did I copied the connection from a script that I had and modified a bit <% 'Dimension variables Dim adoConpoints 'Holds the Database Connection Object Dim rsGuestbookpoints 'Holds the recordset for...
  4. nonprogrammer

    check duplicate entries in a form

    Hello all, I have an asp form that has a field where you can input numbers. I was wondering if there is a way to add a javascript that will check for duplicate numbers. For example if the user enters: [code] UserName PartNumber StockNumber Sam 123ABC 1 Sam 123ABC...
  5. nonprogrammer

    &lt;windows. root.\system32\hal.dll is missing

    Has anybody encountered this <windows. root.\system32\hal.dll is missing I have tried pretty much all the options that I have found on the web but still cannot boot. I took the hard drive out and made it a slave the other desktop sees the drive but cannot access it. It says that it need to...
  6. nonprogrammer

    Can a Activex Control be record specific?

    Hello, I have an access Form and would like to append excel like documents I saw that under Insert there is an ActiveX Control and if you scroll down you find Microsoft Office Spreadsheet 9.0 in my case. I was wondering if there is a way to make this record specific because as of right now what...
  7. nonprogrammer

    dreamweaver 8 form

    Hello, I am fairly new to the world of web forms. I created an asp form with dreamweaver 8. My first step to create the form was to create an odbc to an access table. In the access table I have about 70 fields or so. Then open dreamweaver 8 clicked on new asp vbscript, then clicked on...
  8. nonprogrammer

    Help with nested if statements

    Hello, I am having a horrible time with 0ne of my formulas it looks something like this A B C D E F G H I J K L M N O P 1 2 3 4 5 in B1 I enter a value then C1 is a description D1 is a value that will be added or substracted from B1 E1 =B1-D1 F1 =B1+D1 then G1 through N1 are...
  9. nonprogrammer

    ASP Constant

    Hello, I have a quick Question. Can a constant have a dynamic value? something like: const FLV_STR = <% = FRT %>
  10. nonprogrammer

    Form check

    Hello everyone, I was wondering if I could get some help. for the past couple of weeks I have been battling with an asp script that I got to work over the weekend. In the Form I have 3 radio buttons and a input field. then with the asp script it populates the Form this is to select different...
  11. nonprogrammer

    drop down boxes on asp

    Hello, I am trying to put an option box on one of my forms, but I am having a very difficult time uploading the data to my db. <select name="rank1"><option> <option value="Knobs"> Knobs <option value="Handles"> Handles <option value="Cases"> Cases <option value="Plastic_Knobs"> Plastic Knobs...
  12. nonprogrammer

    Excel spreadsheet does not print in color

    Hello, I have an excel spreadsheet that has a couple of rows with color. It used to print ok but all of the sudden it is not printing in color anymore. I have checked the page properties and the printer properties and both say to print in color. Even when I do a print preview I do not see...
  13. nonprogrammer

    How to Sum in ASP pages

    Hi, I would like to sum the values of a field and I am not sure how to go about it. <%=(Recordset1.Fields.Item("dollar_amnt").Value)%> I tried this but did not work <%=sum(Recordset1.Fields.Item("dollar_amnt").Value)%> <%sum(Recordset1.Fields.Item("dollar_amnt").Value)%>
  14. nonprogrammer

    if statement

    hello I am trying to put an if statement in one of my asp pages. That should redirect me to a link if the field is empty in the database. I tried the following code but it does not seem to work. any suggestions? [code] <%if Recordset1.Fields.Item("Pick").Value = "" then...
  15. nonprogrammer

    combo boxes continued

    Hello All, I bought a asp shopping cart that has a search and I have a script that has drop down boxes, I have been trying to combine both and I am having so many problems. could somebody give me a hand ? here is the search <% dim rs ShopPageHeader if Request("Action")<>"" then...
  16. nonprogrammer

    variable combo boxes

    Hello Everybody, I was wondering if anybody could point me in the right direcction. I am looking for a script or to start my own for dynamic combo boxes that does a search. I have come across many examples, but none with the search capability. any help is greately appreciated
  17. nonprogrammer

    New Record Button error

    Good Morning, I have an Access 2000 form that I inherited. In the form I have 3 buttons, one to add a new record, one to Print and anotherone to find a record.Everything was working well but now when I click in any of the buttons I get "Error accessing File. Network connection might have been...
  18. nonprogrammer

    check box comparison

    Hello, I am trying to build an asp page that has different items with check boxes. Up to this point everything seems to be working. Where I am having problems is with the logic. I want to be able to compare item a to item b both items have that same data fields hight, with, weight. Can...
  19. nonprogrammer

    OWA PST file

    Hello, I am not sure if this can be done. I inherited an 2003 exchange server. The way the users are setup is that there is a folder called mail in another server, in the mail folder there are more folders with each user name, that is where each pst for each user lives. When I came in I as...
  20. nonprogrammer

    change code to asp

    is there a way to change this <img src=team1.png name=imgteam1 onMouseDown=selectteam(imgpick0,imgteam1,txtpick0,1)> to something like <input name=imgteam1 type="text" value="<% = rspick("field6") %>" onMouseDown=selectteam (imgpick0,imgteam1,txtpick0,1)> I tried this and it kind of works I...

Part and Inventory Search

Back
Top