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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ajap99

  1. ajap99

    Using ASP.NET Calendar

    I get the following error when I enter this code BC30205: end of statement expected
  2. ajap99

    Using ASP.NET Calendar

    When I enter the date in manually as follows the query will work WHERE (((qyRoomPeriods.ResourceDates)=#17/01/2005#)) If I put a textbox.text = 17/01/2005 it will not How can I get the value into the sql in the format #dd/mm/yyyy# from the textbox what are the # doing ?
  3. ajap99

    Using ASP.NET Calendar

    The following SQL returns booking mage on a certain date ie =Date() I now want to select a date using a calendar. I have tried populating a textbox and replacing the =Date() with =textbox12.text but it will not work How could i get this to work Dim queryString As String = "TRANSFORM...
  4. ajap99

    Can a sql query update a field in a Access db with a 'null' value

    I have a field in an access db that contains a number when it is booked. When I delete a booking I want to set this field back to being empty. I am using the following SQL statement.This works when eg i put a 1 into textbox12 strDelete = "Update ResourceDates Set BookingRef=(" &"'" &...
  5. ajap99

    Insert new record in Access DB from aspx page

    How would I use the find control method ?
  6. ajap99

    Insert new record in Access DB from aspx page

    The following message is displayed Exception Details: System.NullReferenceException: Object reference not set to an instance of an object Fails at strInsert = "INSERT INTO Bookings (StartDate) VALUES ( '" & tbstartDate.Text & "')" I am just using webmatrix to compile code I put the...
  7. ajap99

    Insert new record in Access DB from aspx page

    When I use that code the following Compiler error Message is displayed BC30451:name 'tbStartDate' is not declared
  8. ajap99

    Insert new record in Access DB from aspx page

    I am using a datalist to display one entry in Access DB. I want to enter new values into the textboxes on datalist and hit a submit button to insert new record in DB I can do this when with the following code strInsert = "INSERT INTO Bookings (StartDate, NoWeeks, Available) VALUES (...
  9. ajap99

    Displaying Bound Information

    Is there any more examples ?
  10. ajap99

    Displaying Bound Information

    I have bound buttons on an datagrid on an aspx page. The buttons contain information from a table in an access database. When I click on a button it opens another aspx page on which I want to display all the details associated with this button. I have got the correct SQL query working on the...
  11. ajap99

    Display Information from one page to another

    Got it working Thank-You for help
  12. ajap99

    Display Information from one page to another

    How would you display this then on page 2 (I know I have to read up on the basics)
  13. ajap99

    Display Information from one page to another

    If I use 1) Request.Querystring What code needs to go on each page
  14. ajap99

    Display Information from one page to another

    If I have a text value on one page How can I display this text value on the next page that I go to
  15. ajap99

    Strip Numbers off Right Side of String

    Excellent Help Thank-You

Part and Inventory Search

Back
Top