Recent content by bitsbb01

  1. B

    Help adding new records using a Query

    Hi all, well i've got myself really confused.. and have a major headache.. I have 2 tables.. 1st is Cases and 2nd is NETANFImports i've already got an update query that works perfectly.. it updates fields in Cases from that of NETANFImports however.. the problem i'm having is, i cannot seem...
  2. B

    DCount Problem.. in form load

    Lol.. i wont say how many time i've been trying things like that and even did intStore = DCount("[ID]", "[RWSlipsTable]", "[Active] =True AND Caseworker = " & Me.Text42) and still didnt work.. always seem to forget the simplist things like ' lol Thank you for making my night a lot better..
  3. B

    DCount Problem.. in form load

    Hello Everyone, Hope everyone is having a better day than me.. as i just cannot get this to work... This is the problem, I have a table for tickets, and want a popup to show for the current user.. if i take out the & Me.Text42) it shows theres 90 Active tickets, but thats for all the...
  4. B

    Limit number of clients in date range

    Ok, not sure if this is even possible or where to even start.. I've got a form that has all the info for a client, eg.. Client First Name Client Last Name Client Hours Client WE/CS/EE Client Day And Times Client Phone Client Comments Begin Date & End Date (2 boxs) on there for date input...
  5. B

    goto form with current user and current date

    ok, i found a way of bypassing.. i think.. Private Sub Form_Open(Cancel As Integer) Text524.Value = Environ("username") Me.Filter = "username =" & Me.Text524 Me.FilterOn = True End Sub except now i'm getting the value box with the username as the title, and if i type in a username then it...
  6. B

    goto form with current user and current date

    ok, how do i explain this... what i really need is for when the form opens, it looks at todays date, then matches current user and then goes to that record for today, if no current user there, then will goto new record.. i know, sounds complicated, and probably is really easy, but my heads...
  7. B

    Creating a Sign in Form..

    ok plog the way i currently have it, and so Reports can be created easily.. ID, Date, User1, User1 Sign-in, User1 Lunch, User1 Sign-in PM, User1 EOD, User2, User2 Sign-in, User2 Lunch, User2 Sign-in PM, User2 EOD, And So on.. so once you got 60+ you easily hit 255 Columns.. so basicly each...
  8. B

    Creating a Sign in Form..

    Ok i'm having a few problems, as Access only allows 255 collumns and not sure how else to do this.. so hopefully someone else has already had this problem or even knows a way round it.. I've been tasked with building a sign-in form for staff to use daily.. with multiple fields.. Date...
  9. B

    Weird problem, code works with in built however in VBA doesnt.

    ok, opening the Main form on its own works fine, but yes it does have code, none to make it hidden though. see the text included in first post.. We've been using this for awhile with no problems, i'm just trying to clean up things.. etc and also having it automaticly goto to the main menu...
  10. B

    Weird problem, code works with in built however in VBA doesnt.

    because wanted them to see the notice that pops up, letting them know that they need to keep Outlook open due to being used in the DB.. Also if i do that excatly like you've shown it doesnt show the frmMenu at all..
  11. B

    Weird problem, code works with in built however in VBA doesnt.

    Good Morning everyone.. Ok i've come accross a weird problem.. lol i have a countdown on 1 of my main startup forms, that checks to see if outlook is running if not then it'll auto start-it outlook, then when the counter gets to 0 it continues to load the main menu... Now if i have a...
  12. B

    Merge a spreadsheet into an already created table

    i ended up using the following code.. Dim retval retval = Shell("G:\IT Information\Backups\Dont_Delete\Splashscreen", 1) 'Call module to hide access application close button HideAccessCloseButton Call fSetAccessWindow(0) DoCmd.Quit acQuitSaveAll the Splashscreen i had created using...
  13. B

    Merge a spreadsheet into an already created table

    ok i added a splash screen that runs from an external app whilst Access is shutting down... it doesnt stop them from closing them both, but at least it warns them..
  14. B

    Merge a spreadsheet into an already created table

    Ok the import went well I wanted to add the name of the person importing and the date, but that dont work.. so oh well.. Cases.[Imported By] = "Graham 7-23-2013" as for the message when closing, its when its packing/compressing that people seem to force kill, and any message box's by then have...
  15. B

    Merge a spreadsheet into an already created table

    Ok, so i removed the Comments Section and re-made a new Comments section, changed the interperter section, and now it works fine.. so far.. however the main test will be tommorow morning, when i do the first main update from the online datebase that exports to excel to this access database...
Back
Top Bottom