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

Search results for query: *

  • Users: 4321z
  • Content: Threads
  • Order by date
  1. 4321z

    Table Disappeared from Relationship Window Access 2000

    Hi, I have a similar problem to a closed thread 700-1354784. Where the tables in my relationship window have moved off of the screen and i cannot move the scroll bars any further to the left. There are 15 or so tables that have done this. Does anyone know how to access/move these tables into...
  2. 4321z

    Sneaky DB Protection

    Hi, I've got a database which I’ve been working on for a few years and as such it's got quite large and useful for the company I work for and they want it to be assessed by a third party, which I’m not too keen on as I can see it getting used by the third party elsewhere (you know what I mean)...
  3. 4321z

    Function Not Found

    Hi, I've made a database that incorportates the Date() function in serveral queries and vba coding and it all works fine on my machine. I copy the database over to someone else's machine and when they try and use it an error message keeps popping up saying the Date() function cannot be found...
  4. 4321z

    Change Print Orientation of Query automatically

    Hi, I'm trying to print out a report automatically after a sequence has run and the code below works fine except the report really needs to print out in landscape and not portrait, the code below opens the query in preview mode, prints it and then closes preview mode and the display then...
  5. 4321z

    Use own buttons to navigate tab control pages

    Hi, I want to navigate through tab control pages using buttons that i have placed on the form and not the standard tabs can anyone help. thanks
  6. 4321z

    Object invalid or no longer set - aaah!

    Hi i'm running the following sequence and i keep getting 'Object invalid or no longer set' coming up at the points indicated, for some reason access keeps forgetting that the MyCurrentValues table is open, or am i just missing something really obvious here.... Set MyDatabase =...
  7. 4321z

    Password Entry

    Hi, I'm using an input box to get passwords and therefore control who has access to certain areas of my database, the problem is that when the password is entered any one else can see it. Is there away of using **** to denote the characters entered
  8. 4321z

    Windows Not Responding - How to Avoid

    Hi, I'm looping 2 fairly large tables say 10000 records in one and 3000 in the other and when it runs windows says access is not responding -which it isn't windows just thinks so. But the problem i've got is i want to run a progress bar which consists of a box which grows in width and a label...
  9. 4321z

    Undo changes on a sub form

    Hi, I'm trying to undo changes on a sub form if the property 'Dirty' has been triggered but as soon as you move from the sub form back to the main form the 'Dirty' property is reset and the undo on the docmd is no longer usable, any suggestion?
  10. 4321z

    Removing Quotes From String when exporting to txt file

    Hi, I'm trying to export some fields to a text file as a string and the data is getting "" around it in the text file can i stop this from happening?
  11. 4321z

    Kick users out of database

    Hi, I've got an access database which is used by multiple users and on occasion i need exclusive use of it and have to do a bit of chasing around to get all other users to log out, does anyone know of an easy way to do this?
  12. 4321z

    Copy file

    Hi, i'm using the following code to retieve a file name Set exApp = CreateObject("Excel.Application") strFileToOpen = exApp.GetOpenFilename("Picture Files (*.jpg), *.jpg") but i also want to copy the file to a new location i've tried to use the copyfile method but i'm not exactly sure how to...
  13. 4321z

    Initial Directory for GetOpenFilename method

    Hi, I'm using the GetOpenFilename method of retrieving a file name see below: Set exApp = CreateObject("Excel.Application") strFileToOpen = exApp.GetOpenFilename("Picture Files (*.jpg), *.jpg") and i want to look in an initial directory/folder for these jpg files - any ideas?
  14. 4321z

    Moving controls from tab page to another & losing events

    Hi, I've got a form, which has a tab control on it. On one of the pages I had several text boxes and combo's which each had related code, I moved these from one page to another and for some reason their (text boxes and combo's ) associated code/ events do not run, the only way I’ve found around...
  15. 4321z

    Changing Case Upper to Lower

    Hi, Is there a quick way to change the case of text in cells in an excel worksheet from lower to upper and vice versa?
  16. 4321z

    Disabling the mouse wheel

    Hi, I've got a form based on a table which i want to open for one record only in edit mode. However when i'm looking at the record and i move the mouse scroll wheel down, the form moves to a blank (i.e new) record. The only way i've stopped this from happening is to open the form in read-only...
  17. 4321z

    Mouse Scroll Wheel Disabling

    Hi, I've got a form based on a table which i want to open for one record only in edit mode. However when i'm looking at the record and i move the mouse scroll wheel down, the form moves to a blank (i.e new) record. The only way i've stopped this from happening is to open the form in read-only...
  18. 4321z

    Create Table method

    Trying to use the create table example given in the access help files below CREATE TABLE FirstTable(FirstName TEXT,LastName TEXT); and i keep getting a compile error "Expected: End of Statement" Is this not the method to use to be able to create a table on the fly?
  19. 4321z

    Passing null values to variables

    I'm trying to pass values from fields within a form to a function shown below; Function AllDataEnteredForTrade(blTradeSelected As Boolean, stTradePerson As String, dtWkStartDate As Date, intNumDays As Integer) As String If blTradeSelected = True And Len(stTradePerson) > 0 And stTradePerson...
  20. 4321z

    Filtering on sub form

    Trying to apply a filter to a sub form - thats based on a query, by using the Docmd.applyfilter but access thinks i'm trying to apply the filter to the parent form which is not linked to any query or table and tells me of this, any suggestions?

Part and Inventory Search

Back
Top