Recent content by aiikahn

  1. A

    Search or Filter form using embedded macro

    Good evening, everyone! My company has disabled vba for our access database due to security reasons so I've only been able to use embedded macro actions for a tracking database I've created recently to better organize our electronic records. I'm trying to create a search form in which I could...
  2. A

    Capture username (login ID) using macro if VBA is disabled

    Thank you so much, boblarson! Sorry for the delay in response - got too caught with work. I was really hoping there was a way. Thank you again!!!
  3. A

    Capture username (login ID) using macro if VBA is disabled

    Hi...we've put together a database to annotate our daily workload. Unfortunately, our group policy since we migrated into Office 2010 has changed to where we can no longer use VBA scripting. The database has stopped working but managed to still run its basic functions using macro except for...
  4. A

    Allow Edit but not To Insert Record

    Thank you gwunta. I will surely try that. I'm somewhat rusty with running SQL in access so I'm hoping I'll be able to do this. I just thought this was possible from the form itself. @booty thanks for pointing out to use Date() instead. I will change it.
  5. A

    Allow Edit but not To Insert Record

    I'm sure this probably has a simple solution but somehow I'm having some issues trying to figure out how to prevent a form to insert a record once it has been updated that day; yet still allow edit For example: If a record has been entered for today and someone tried to add a new one later...
  6. A

    Date and Time Stamp On Main Form

    Sorry for the late response. I will try that. Thank you so very much!
  7. A

    Date and Time Stamp On Main Form

    Hello Everyone, Just wondering if anyone might be able to help me with my dilemma? I'm trying to put a timestamp on my main form to record the date and time a user created a record. I only have one table consisting all of the data to include the date and user. The mainform has two tab...
  8. A

    SetFocus to a specific record in a continuous form from another form

    Thank you so very much, Paul and Linq! I can't believe I never thought of that in the beginning...I guess I wanted to find out more on how to do it! Thank you again!!! :)
  9. A

    SetFocus to a specific record in a continuous form from another form

    I have a tabbed continuous form from which I double-click on a record and displays all the details of the record in a separate form. When I close the form, I can go back as far as opening up the continuous form but focus is set on the first record with the code below: Private Sub Form_Close()...
  10. A

    Extract strings from textfield

    I'll try that. Thank you so much. Now, how would do this using the split function?
  11. A

    Extract strings from textfield

    I was hoping if anyone could help extract strings from a textfield. In a textfield(textfield1) I would like to be able to extract words separated by delimiters and put in a separate textfield (textfield2) without the delimiter. For example: textfield1.value = "Apple, Orange, Tomatoes" After...
  12. A

    Function won't work

    I was wondering if anyone can help me with my dilemma. I have this report which I'd like for it to call a function every time it loads (see codes below): Private Sub Report_Load() lblCC.Caption = getSignBlock() End Sub This function is from a module I created (which I'm not even sure if I...
  13. A

    Assign a record to a table

    Hmm?...I'm not sure...it's giving me an error saying that the table is currently being using by another program or user even though the form is already closed and the only form that's open is the filter form...I'll have to check that out again...
  14. A

    Assign a record to a table

    I think I figured it out but thank you so much for the response. The way it's supposed to work is that when I open the dept_form and click on a command button to open a tabular form with a list of employees not assign to any department, when checkbox is checked it would assign the particular...
  15. A

    Assign a record to a table

    I was wondering if anyone could help me with a problem I'm having with a form... I have 2 tables, one called 'dept' and the other called 'employee.' These tables have a one-to-many relationship; basically, one department to many employees. Instead of using a combo box, how do I assign an...
Back
Top Bottom