Search results

  1. supercharge

    Pop Up Form Question

    What does the subform do, alert when there's a "conflict"? What do you mean by "conflict"? Duplicate? If all the query does is to "notify" of a "conflict", why need a subform to base on it?
  2. supercharge

    Get combo box values into string array

    Didn't get a thing after reading the post! Please rephrase. Also, please delete the duplicated post. Thank you.
  3. supercharge

    Now () when adding (form), in a table NOW () must 'freeze'

    Or you can default the Date field in your table as Date() then add a control on your form with its control source is your Date field and make the control's enabled to false. There won't need to enter anything. It will always be filled in with the current date.
  4. supercharge

    How do I repeat a process for many db's?

    I'm just brainstorming this. One way to accomplish it is to create a new .mdb; link all others tables and run a macro. The linking part might take a while too unless it can be automatically done also which I think is doable, isn't it?
  5. supercharge

    Refreshing combo list

    Requery The idea here is to just requery the combo box itself. See attached. It's a very simple sample, created just for you. Try add a new number and see if it've been added to the combo box after you close the new-entry form.
  6. supercharge

    Function called after, not before loop

    Adding that works out great. Thank you. I'd still like to know why it isn't called before the looop though. I understand that adding DoEvents really forces it to do so but logically, the function should be called first then the loop. I also do not think that using DoEvents is the perfect...
  7. supercharge

    Function called after, not before loop

    Hi all, Does anyone have any idea why a function does not get called before a loop such as a for loop eventhough the Call is placed ahead of the loop? Example: Function ShowWait is placed before the For loop but when you run the example (attached), the calculation takes about 1 second but...
  8. supercharge

    Wierd Subform behavior (Please help)

    Have you tried this to see if it works Okay. If it indeed works okay, you will have to use a different way to filter the form, will get on that later. Private Sub New_Project_Click() On Error GoTo Err_New_Project_Click Dim stDocName As String Dim stLinkCriteria As String...
  9. supercharge

    Changing sub-forms on the same form?

    You mean you didn't know which attachment was the most updated one? Thanks for sharing.
  10. supercharge

    Wierd Subform behavior (Please help)

    Ok now, let's try this. Using the sample I sent you, directly from the tables, enter some dummy data for projectID 0 and 1 then try loading the form again to see what happens. This will not solve your prob but just try to see what'll show. The reason you're getting a white, blank subform is...
  11. supercharge

    Changing sub-forms on the same form?

    Ok, now try it.
  12. supercharge

    Wierd Subform behavior (Please help)

    No! it was loaded via a command button which uses your posted codes. See attached.
  13. supercharge

    Wierd Subform behavior (Please help)

    Every loads fine to me. No white, blank subform. See picture.
  14. supercharge

    Changing sub-forms on the same form?

    Here you go, a small sample, created just for you.
  15. supercharge

    Wierd Subform behavior (Please help)

    Can you include the tables, please? (make copies of the tables as structure only, no data) Or you can try (for now) using table's name instead of SQL statement (Select statements) for the RecordSource of the subform.
  16. supercharge

    DSUM problem

    How about this, IMHO: Dim str As String Dim n As Variant Dim FD As Date, TD As Date FD = Forms![Report Menu].FromDate.Value TD = Forms![Report Menu].ToDate.Value str = "[RemitDate] >= FD AND [RemitDate] <= TD" n = DSum("[GSTPaid]", "queryJobRemittance", str) ... Haven't tried it...
  17. supercharge

    Changing sub-forms on the same form?

    In your button's onclick sub, change your subform's SourceObject to whatever subform's name. subfrmMenu.SourceObject = "subform's name goes here"
  18. supercharge

    Special form

    I'm having a hard time picturing what your form would look like. Can you draw it up somehow? or explain more.
  19. supercharge

    Opening one Access database from the other

    In addition to the above, if you want to just open it, use hyperlink.
  20. supercharge

    Multiple Field help

    Quicker way Here is a quicker way to solve your problem - see attached.
Back
Top Bottom