Search results

  1. W

    Removing Navigation Bar from Forms

    hi all i was just wondering if this could be done by code or he only way o do it was by the form properties?
  2. W

    i can only click my button once per form load

    yes i have solved it
  3. W

    i can only click my button once per form load

    actually just thought i can have a query do the exact same thign and open another form for it
  4. W

    i can only click my button once per form load

    basically to go through and bring up and text box saying which person and which courses have expired
  5. W

    i can only click my button once per form load

    i honestly have no idea how it works im not tat good at coding but it works. it just wont let me click it the 2nd time
  6. W

    i can only click my button once per form load

    hi all i have created a button that works fine however it will only work one click per form load and i cant seem to figure out why. here is my code any help will be much appreciated Private Sub BntExpired_Click() Dim QryAllCourses As recordset Do Until ExpiryDate > Date Or ExpiryDate...
  7. W

    different versions of access if statement?

    hi is there an if statement for when you are running two different versions of access. for example if i am running access 2003 then run this code else run this code thanks michael
  8. W

    compile error

    i dont think its that as i have deleted the entire function and i am still getting the same compile error
  9. W

    compile error

    hi all when i am using this code Option Compare Database Public Function RunAtStart() ' KillIt DetermineByPass End Function Public Function KillIt() As Integer If SysCmd(SYSCMD_RUNTIME) = 0 Then MsgBox ("This Application cannot be opened directly with Microsoft Access,"...
  10. W

    AutoExec help

    hi all i am trying to run the code found on http://www.access-programmers.co.uk/forums/showthread.php?t=205223&page=2 the code is Option Compare Database Public Function RunAtStart() ' KillIt DetermineByPass End Function Public Function KillIt() As Integer If...
  11. W

    removing the customizing access toolbar button

    hi all im currently using the code <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <ribbon startFromScratch="True"> <!-- Ribbon XML --> </ribbon> <backstage> <button idMso="FileSave" visible="false"/> <button idMso="SaveObjectAs" visible="false"/> <button...
  12. W

    removing the ribbon

    do you know how to remove the quick access toolbar?
  13. W

    removing the ribbon

    hi im trying to remove the ribbon in access 2010 i found this code on the internet <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <ribbon startFromScratch="false"> <!-- Ribbon XML --> </ribbon> <backstage> <button idMso="FileSave" visible="false"/> <button...
  14. W

    Split database help?

    hi i have created a database and just use the feature to split the database. i then set a password on the back end database. however now when i use a macro to open a form in the front end it won't open the form and just says incorrect password. any idea how to fix this issue?
  15. W

    search two fields with one query

    SELECT [Clinical Guidance].Name, [Clinical Guidance].Folder, [Clinical Guidance].Location FROM [Clinical Guidance] WHERE ((([Clinical Guidance].Name) Like "*" & [Please Enter the subject (Or part of it)] & "*"));
  16. W

    search two fields with one query

    i only what the user to enter the criteria once and not have to enter it twice into the 2 different promtp boxes
  17. W

    search two fields with one query

    hi im using the quesy criteria "Like "*" & [Please Enter the subject (Or part of it)] & "*"" I was just wondering if there is any way to set this up so that the one prompt box searches 2 different feilds
  18. W

    opening a form from parameters box

    hi i am using a query with parameters set. when the user enters a search and clicks ok they get routed to the correct form. however if they click cancel on the parameters pop up box the form wont open and it leave them without a form to reopen anything within the database. any idea how when...
  19. W

    code for opening a form

    thanks that worked great
  20. W

    code for opening a form

    hi all im currently using Private Sub Form_Open(Cancel As Integer) Const cstrUserName As String = "Admin" Const cstrPassWord As String = "open" Dim strUserName As String If strUserName = InputBox("Username:") Then If strUserName = cstrUserName Then Dim...
Back
Top Bottom