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: ifeyinwa
  • Order by date
  1. ifeyinwa

    input box ,date validation & pop up calender

    I am so frustrated , woke up at 4.00am and in the last 4hrs been battling with a validation & calender pop up for my SIMPLE input box. behind already with this office project I thougt my initial code worked but , adding on the pop up window I got online from a google search the 2 codes did not...
  2. ifeyinwa

    populating drop down menu with values from access DB

    thanks Ifigured out my error used this <OPTION Value="<%=RS("Access_UserName")%>"></option instead of <OPTION Value="<%=response.write rs("Access_UserName")%>"></option thanks!!
  3. ifeyinwa

    populating drop down menu with values from access DB

    I would like to populate my drop down menu on an asp page with values from a database-ACCESS. below is what i have so far , it gives me no errors but the drop down is not being populated.pls what am i not doing right???. New too this functionality <select size="2" name="AUserName"> <OPTION...
  4. ifeyinwa

    syntax error

    The query is working now. thanks. will now clean it up so it accepts spaces and whatever character user puts in so i get no error message.
  5. ifeyinwa

    syntax error

    Am sorry , can u show me where exactly in my code i should avoid spaces in the table /field name and remove a comma from the where statement. the where has no comma??
  6. ifeyinwa

    syntax error

    Hi Guys, This is my code , below .i am tryinG to update a table in access. SQlstmt = "Update BILLTABLE Set " SQLStmt = SQlstmt & "BILLTITLE = '" & Strbilltitle & "'," SQLStmt = SQlstmt & "WEBADD = '" & Strwebadd & "'," SQLStmt = SQlstmt & "KEYWORDS = '" & Strkeywords & "'," SQLStmt =...
  7. ifeyinwa

    updating an mdb field via drop down box in asp

    ...the user picks an option from the drop down and submits , the billstatus field in the table is updated with the option picked. this is my problem *The billstatus field in the table shows a comma before the option picked eg ,active or ,nonactive . how do I eliminate this annoying comma...
  8. ifeyinwa

    Date issues

    below is my script in asp which works well and updates my access dtabase table, BUT [ SQLStmt = SQlstmt & "CCDATE=#" & Now & "# "] This piece does not update with the date. Am I missing a quote or..... Thanks as always, Ify SQlstmt = "Update BILLTABLE Set " SQLStmt = SQlstmt & "COMMENTS...
  9. ifeyinwa

    submitting an updated page w/out using a form

    Still wondering if anyone has an idea of how I can remove borders or teh depresion of a text box field so the text in the input box hust appears as a writing???
  10. ifeyinwa

    submitting an updated page w/out using a form

    Thanks I thought so.yes it is just for design purposes.HOw do I use CSS to remove the borders and depression of textboxes
  11. ifeyinwa

    submitting an updated page w/out using a form

    ...be submitted without a form? below is a brief code for the , 2nd & 3rd page .How can I revise these pages to achieve my goal. Thanks as always ****2nd page <% billNO = request.querystring("billNo") Set Conn = Server.CreateObject("ADODB.Connection") Set Rs =...
  12. ifeyinwa

    error message

    Thank you so much your code did work. Most appreciated
  13. ifeyinwa

    error message

    ...<% Set Conn = Server.CreateObject("ADODB.Connection") Set RS=Server.CreateObject("ADODB.RecordSet") Conn.Open "eiwp" SQLquery = "Select * from tblopgaCom2 where area LIKE 'AUDIT' order by billNo asc" RS.Open SQLquery, Conn If RS.EOF then Response.write "<center>There are no...
  14. ifeyinwa

    error message

    THANK YOU i MISSED THAT .IT WORKED
  15. ifeyinwa

    error message

    ...Set Conn = Server.CreateObject("ADODB.Connection") Set Rs = Server.CreateObject("adodb.Recordset") Conn.Open "eiwp" SQLQuery = "SELECT * FROM tblopgaCOm2 WHERE billNo = "& billNo RS.Open SQLQuery ,Conn,1,1 strBillNo=RS("billNo") SQLQuery1= "Select area FROM tblopgaCOm2 WHERE...
  16. ifeyinwa

    Synax error

    thanks guys
  17. ifeyinwa

    Synax error

    hey guys I am getting an error at the 'AUDIT' what am I doing wrong. billno is alpanumeric SQLQuery = "SELECT * FROM tblopgaCOm2 WHERE billNo = '"&billNo&"'" and area like 'AUDIT'
  18. ifeyinwa

    Showing a user's name on a page

    Thank you guys it worked. annoyed I did not get it the first time cause I had tried that. but had put the session in bracket. thanks again it is a relief

Part and Inventory Search

Back
Top