Search results

  1. B

    Form not viewable

    you get those mysys* tables in the workgroup file - maybe you have secured your database and don't have sufficient permissions?
  2. B

    Form Size Problems

    Try set the modal properties of the members and comitee forms to true. cheers, Ewen
  3. B

    Enabled/Locked Property Settings

    in the form current event if isNull(product.width) then controlName.enabled = false end if putting this in form current means that the test will be perform when you change records cheers, Ewen
  4. B

    corrupted workgroup

    Hi, I am currently developing a database for our test department to enter and track bugs. They are currently testing it and twice now it has become unusable. They said it was working OK but when they tried to log in again after logging out they couldn't. When I tried to log in I got a message...
  5. B

    RE:Form, SubForm, DataEntry issue

    If you have defined your relationships with the main form as the one side and the sub form as the many side and enforced referential integrity then you need to create a record in the main form before the sub form. Ewen
  6. B

    How to link 2 forms??

    if both of your forms have an id field you could do it like this in the form_current of the first assign a global variable(declare in module) with the current ID like this If Not IsNull(Me.Form!ApplicantID) Then globalApplicantID = Me.Form!ApplicantID End If then in the...
  7. B

    Horiz Scroll bar on List View

    Hello, On one of my forms I have an Microsoft ListView Control v6.0 that is used to display a summary of information. What I would like to have is a horizontal scroll bar appear when all the data cannot be seen at once so the user can scroll the list view without having to resize the...
  8. B

    Text Box & Combo Search Function

    Scott, have I look here: http://www.mvps.org/access/forms/frm0045.htm maybe sort of what you want. cheers, Ewen.
  9. B

    Subform does not get on current event

    Hi, I have a form which contains four subforms. Whenever I change records on the main form the on current event only occurs for 3 of the 4 subforms. Also when I change records on the subform its on current event never occurs. All the subforms have the same parent-child relationship and where...
Back
Top Bottom