Search results

  1. X

    Getting Data from Table based on text boxes

    Hello, my problem seems to be very familiar to the one in this thread : http://www.access-programmers.co.uk/forums/showthread.php?t=234613 Basically I have a list of tables in one combo box. I want the user to select which table. ( The tables are stock information, each table for each...
  2. X

    Allen Browne Calender Form Help

    ***Edit**: I don't know how to make it look like code in the forum, could someone either post a response with the two bits of code as code or do so from the link provided. thank you very much. Hi, i have downloaded and successfully implemented the calender form that can be downloaded here ...
  3. X

    Query from multiple tables

    Hi, i have an access database to monitor investments. What i am currently trying to achieve is to generate a graph which would show a stocks changing price over time. Currently, i have made a button that generates a new table each day named 'FTSE100-DATE' Where DATE is the date of the previous...
  4. X

    Date in combox box in form

    Hi all, i am looking to generate a list of dates in a combo box. I want the dates to be from 1 week ago to today. And all other attempted entries to be invalid. This means the user could only select one of those dates, with any other entry returning an error How would i go about doing this...
  5. X

    Web scraping

    I am looking to take data from a website to find the website, google: morning star ftse 100 information. ( the entire table in the middle) I have NO IDEA how to web scrape this data. What i want, is to ensure the data is continually updated, in a table. So that i can then use this data in...
  6. X

    password validation

    could someone smart enough either add annotations, or edit this code, so that it tells the user WHICH error has been made. I can't figure it out thank you very much! I am looking at the public function routine, that validates the password entry. I want to know how i can make a message pop up...
  7. X

    complex password validation

    Hi i am looking to ensure the user enters a complex password, in the add user form. Therefore, the password should be >8 characters, 2 numbers, 1 Ucase min, 1 Lcase min and some form of punctuation. I found this code: unction ValidatePassword(ByVal pwd As String, Optional ByVal minLength...
  8. X

    Input mask violation

    Hi, i am new to the forums :) i am having trouble. I am trying to change the standard input mask violation error message to a personalised one. I have found this code: Private Sub Form_Error(DataErr As Integer, Response As Integer) Const INPUTMASK_VIOLATION = 2279 If DataErr =...
Top Bottom