Search results

  1. missinglinq

    Solved How to create exe file of Acces database

    And just in building on Pat's reply, i.e. 'the accde is not an executable...' we're trying to help you find where to go to make the file an accde file...but, as Pat said, it won't be an exe file! Exe files are basically executable on any machine...while running an accde file requires some...
  2. missinglinq

    Solved Problems with Access 2019 after Windows 10 Update Today???

    Two more questions (Please only answer once! 😊) If you go into Design Mode then switch and run the Form, do the buttons work? If you close the Form completely...then open it by clicking on it in the Navigation Pane on the left, do the buttons work? Linq ;0>
  3. missinglinq

    Solved Problems with Access 2019 after Windows 10 Update Today???

    Don't run v2019, so can't say! But question: Does any code on the errant Form work? Linq ;0)>
  4. missinglinq

    Command Button Event Procedure Error

    While this type of error is usually associated with the opening a Form, it apparently can be caused by all kinds of things, and, to the best of my knowledge, it is very seldom, if ever, actually connected with communicating with a OLE server or ActiveX Control! The most common cause, going by...
  5. missinglinq

    Solved shutdown function

    A true photo-finish! All bettors should retain their tickets while the track stewards review the photos!:cool:
  6. missinglinq

    Is this a good start to learning VBA?

    There really is no VBA in general! VBA is actually a group of languages...VBA for Access is different than VBA for Excel. And to make matters worse...Access has many Properties and Functions with the same names as Properties and Functions in Excel...but they often perform different tasks and...
  7. missinglinq

    How to make a notification when forget to enter the date in the form of access ?

    Exactly! So by adding the If Me.Dirty Then Me.Dirty = False before the DoCmd.Close you force the Save...and if required data is missing...it'll be caught. Linq ;0)>
  8. missinglinq

    How to make a notification when forget to enter the date in the form of access ?

    Perhaps in the past @zeroaccess has been using the Command Button Wizard or the code DoCmd.Close to close his forms. In pre-2007 Access, if you used the wizard or the above code to close forms...'required fields' unpopulated were simply ignored and the form would close, dumping the errant...
  9. missinglinq

    Checking Data

    Q. And what happens if the user never enters the Control at all? A. NOTHING! The validation code never fires! Linq ;0)>
  10. missinglinq

    Opening report for last month - keep getting Runtime error 13: Type mismatch

    Short Date is how the field is formatted...not the DataType...as HTC asked! In the underlying Table is it defined as a DateTime Datatype?
  11. missinglinq

    Checking Data

    Placing it in the Control's BeforeUpdate event is useless! All the user has to do, in order to make your validation useless...is to simply not enter the Amounts Control! If the Control is never entered...none of its events are executed! Validation for determining if a Control is populated...
  12. missinglinq

    add date from calendar

    Right...like they've fixed the age old bug where using the aforementioned SendKeys turns off the Numlock key! Don't think I'll hold my breath. Linq ;0)>
  13. missinglinq

    sequential number

    Assuming that your intent is to have first item entered as Line# 1 second as Line# 2 etc. you must be doing something in the background to cause this...and I don't think we can help you with seeing your file...as sorting can be done in VBA code, Macros, or in the Property Pane...and we'd really...
  14. missinglinq

    Text box required if Check box is selected on Form

    Yes...anytime one Control's appearance, Value, etc. depends on some state of another Control, you really need to do your checking/validation in the Form_BeforeUpdate event. The reason is simple...You, as the developer, have no way to know in what order your end user will enter data! The Form's...
  15. missinglinq

    VBA Reference to field value in form recordset

    Actually...Me.FieldName works for me, in v2007, for a Field in the underlying table but not bound to a Control on the form. Or did I misunderstand the question? Linq ;0)>
  16. missinglinq

    Units Received Cant Be more than Units Ordered

    Micron is right...we have to see the exact code (Sub headers included) that you're using! I was also wondering, given your aim with this code, why you wanted to pop a warning if the Units_Recived were = Units_Ordered? Another late thought...are the Fields connected to Units_Recived and...
  17. missinglinq

    Units Received Cant Be more than Units Ordered

    I tend to do this kind of thing, when two or more Controls are involved, in the Form_BeforeUpdate event...doing it in a Control's BeforeUpdate event is dependent on the user entering data in a certain order (i.e. Units_Ordered entered before Units_Recived, in this example) and in my experience...
  18. missinglinq

    Open a form and run a procedure after the form is opened

    Try this (untested) Private Sub Form_Open(Cancel As Integer) Me.TimerInterval = 1 End Sub Private Sub Form_Timer() Me.TimerInterval = 0 'Run proceedure here End Sub Linq ;0)> Sorry...day late (well 4 minutes) and a dollar short!
  19. missinglinq

    Creating custom views (column orders) in subforms with datasheet view

    Actually you can set the Column Order in Form View! I've had situations where two different orders were required...and simply triggered the change using the Double-Click event of two of the columns. Here's an interesting article called "You Can Do That With Datasheets?"...
  20. missinglinq

    Solved Change Border color of Form

    I agree with theDBguy...this looks like a custom designed Form...not a Form with this kind of border. Do all/other Forms have a pink border? If so, this may be the result of a Theme being used. Did you design the Form...or did you inherit it from someone else? Linq ;0)>
Back
Top Bottom