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

    that is right! Yes they do all have the same structure :) exactly the same
  4. X

    Query from multiple tables

    because it allows me to easier ( i feel) look at information from THAT day specifically. Also, this is how my computing teacher- who i no longer have access too recommended doing it.
  5. 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...
  6. X

    Date in combox box in form

    CJ London the code is not working It returns the error : compile error, expected expression, at the ('d'. Why is it doing this, can any body offer a solution? thanks!
  7. 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...
  8. X

    password validation

    Mihail, apologies for the lack of clarity. the error, whatever password i type in is : "The password should contain letters in upper case AND in lower case" This makes me believe the function is not using the piece of code to validate this. Why would their be an error here? regards
  9. 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...
  10. X

    password validation

    Hey Mihail thanks for the great help. The system seems to return an error for the upper case, lowercase part. No MATTER what the input. Could anyone help with this? thank you very much Regards
  11. 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...
  12. 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...
  13. X

    Input mask violation

    i used mihails code to perfect avail! hoorah ! thank you so much :)
  14. 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