Search results

  1. K

    Login Form

    wow thats way to complex for me i only want a simple one liek with 1 or 2 users with madeup names
  2. K

    Login Form

    I need to make a simple login form. Where users must login to access the tables, queries etc in access Thanks Knigth Of Nih
  3. K

    Simple Search Form

    I have to make a simple search for I have to search for documents by either: keyword, author, subject (there can be 3 different search boxes. The tables I have are Tbldocuments Docid (Pk) Authid Title Subid Tblauthor Authid(Pk) Firstname Lastname Tblsubjects Subjects(Pk) Tbldocsub...
  4. K

    Opening A HTML File From A Button

    i dont want to do it any other way
  5. K

    Allowing Only Letters In TextBox

    I tried your method but unfortunately I had no success I ended up finding this though Private Sub txtName_keypress(ByVal keyascii As MSForms.ReturnInteger) If keyascii >= Asc("A") And keyascii <= Asc("z") Then keyascii = Asc(Chr(keyascii)) Else keyascii = 0 End If End Sub I do thank you...
  6. K

    Opening A HTML File From A Button

    I have a button and when users click on it I would like a HTLM page to popup. Preferable on the right had side of the screen and old taking up 1/4 of the screen space. The html file is called help.htm and its located in the same directory as the excel file. Thanks Knight Of Nih
  7. K

    Allowing Only Letters In TextBox

    I have a form like in the picture I provided I want people to be able to enter letters in there only How can I do that? And where do I put the code Thanks Knight Of Nih
Back
Top Bottom