Search results

  1. J

    when switching between form and subform get a 'the data has been changed ... re-edit'

    When switching between main form and subform get a 'the data has been changed ... another user edited this record ... re-edit' Hi Folks, I have an elusive issue with a set of forms I am trying to figure out. A main for with a tab control and a few tabs is opened and maximized via a command...
  2. J

    validation rule creation not working as expected

    Thank you for the reply boblarson. I tried the code and it didn't seem to work so I verified the code by using it on other dates in a different form and it did work perfectly - thank you. This to me indicates that some other code that was being used on the same date fields that I was trying to...
  3. J

    validation rule creation not working as expected

    Hi Folks, Due to a glitch I am working around, I need to create validation rules for certain fields in VBA versus using the validation rule property in the field property. For some reason, this code I am using below isn't working properly ... any ideas would be appreciated! Private Sub...
  4. J

    brute force change dates because nothing else works

    This seems to work: Dim FormatEmploymentDate As Date If IsNull(Me.Needs_Assessed_by_Instrument___Employment__Date) Then Else FormatEmploymentDate = Format([Needs_Assessed_by_Instrument___Employment__Date], "mm/dd/yyyy") Me.Needs_Assessed_by_Instrument___Employment__Date =...
  5. J

    brute force change dates because nothing else works

    Folks, What I am basically looking on trying to do is perhaps on the load current aspect of the form use something like this: Format(Me.Needs_Assessed_by_Instrument___Employment__Date.value, "mm/dd/yyyy") So that I attempt to alter the formatting, when all else failed, at the very last step...
  6. J

    brute force change dates because nothing else works

    Hi Folks, Basically what is happening is that if I manually created the link for the SQL Server tables in question, the dates on the forms are properly displayed as MM-DD-YYYY. However, if I via tried and true code that has worked for years automatically link the SQL Server tables in question...
  7. J

    brute force change dates because nothing else works

    Hi Folks, I am trying to slap a few on this issue rather than figuring it out, as I tried to figure it out for hours and hours on end and just need a bit of code to 'patch' it right now. I have a huge Microsoft access database front-end tied to a massive sql server back end. Tons of fields...
  8. J

    If no results returned via search to stay on search module

    Hi Folks, I have a search form that opens up as soon as the database is opened, if the search renders results those results are displayed in a different (results) form otherwise the "results" form opens but it is blank/void of any records but still useful in that the command buttons on the top...
  9. J

    current record count and total record count on form

    Hi Folks, I currently have a form with a tab control on it, I have disabled the navigation bar on the bottom of the form to force compliance with specific controls and data flow on the form and tabs and didn't want the user to circumvent that security by using the navigation buttons of first...
  10. J

    lots and lots of fields need to be set to visible or invisible based on field content

    Hi Folks, I got lots and lots of fields need to be set to visible or invisible based on field content. Manually coding all of this is possible it just takes forever. This is what I am wondering (if this is possible or exists or not): If I had say 10 fields all all those 10 fields were to be...
  11. J

    visible and invisible logic

    Hi Folks, I got a form that has quite a few areas where I am trying to make certain fields visible or invisible contingent/based upon the user selection in other fields. For instance, if a user selects a specific item from a combo box, the relevant and associated fields with that answer would...
  12. J

    Big form with 5 tabbed control 1 tab via 1 table and the other tabs via another table

    Figured it out ... I just used filter on load and [Subform]![IDField] = [Forms]![FormName] :)
  13. J

    Big form with 5 tabbed control 1 tab via 1 table and the other tabs via another table

    Hi Folks, I have a form with a 5 tabs in it via tab control, 4 of the tabs are based on one table and one of the tabs is based on another table. The two tables share a unique key, both named 'ID' that allow me to join the data from both tables successfully. I have been trying everything to...
  14. J

    Bypassing 255 field limit in table and forms by splitting out large table into two?

    Hey Folks, I got a complicated issue here ... this has to do with tables and forms. I am using MS Access front end linked to SQL Server back end for a gigantic survey for a non-profit. The survey is so large that it goes well over the 255 field limit per table/form with Access. In order to...
  15. J

    Write conflict for no reason at all :( ?

    Hi Folks, I got a strange issue: I am attempting to develop a Microsoft Access front end tied to a SQL Server back end via a linked table for a non-profit organization ... I have done a few of these programs before, but never ran into this problem I am having now. If I try to enter a new...
  16. J

    visible/invisible based on combo box selection

    Folks, Thank you for the quick reply. I have tried the code found below with different 'key words' to find that nothing seems to be working. The code produces an error or does not render and error but does nothing. Any help would be appreciated: If Me.Combo188.[*KEYWORD] = "Other" Then...
  17. J

    visible/invisible based on combo box selection

    Hi Folks, I have a combo box that accepts a single value from a list of items (no free entry allowed). One of the items a user can select is 'Other'. If a user selects the 'Other' item from the aforementioned combo box, it is expected that the user populates what 'Other' is in a text field...
  18. J

    Form size limitation

    Hey Folks, I am wondering if there is a quick and easy way to bypass the size limitations on forms. I notice that forms are maxed out at 22 inches in width and 22 inches in length. If I would like to use perhaps 12 inches in width and 60 inches in length to be able to place the needed...
  19. J

    multi lined shell command?

    Hi Folks, I have some VBA in a MS Access module that properly and successfully executes a shell command that executes a batch file in the following manner: Shell("C:\runthisfile.bat") I am trying to actually place the contents of the batch file into the module. The problem is that the batch...
  20. J

    Embedding batch File into vba in module kicked off by a macro?

    Hey Folks, I have a few Access database applications that are basically just some VBA modules that are kicked off by a macro trigger ... at the end of some of these modules I kick off a shell command that essentially runs a batch file resident on the machine. These apps have worked very well...
Back
Top Bottom