Recent content by chaimribs

  1. C

    Create a new label on Access Report programatically

    You can change the caption if you make it a textbox that looks like a label. If the textbox is set to not visable you could make it visable and change the caption. .visable = True .caption = ???
  2. C

    Form_Delete

    Unable to write in to record on delete event I'm still trying to find an answer to this unusual situation. I would really appreciate if someone one knows why this happens, how to get around this, and what else can't be done during this event.
  3. C

    Form_Delete

    I don't want to delete the record. I will write the date in this field. If this field is not null all my queries ignore it. If I ever need it or if I need to know when It was deleted I have the time and date.
  4. C

    Form_Delete

    It still doesn't work. I just put in dirty for testing. When I took out dirty both fields didn't update. It doesn't seem to make a difference whether the cancel is first or not. I you put the cancel on top other things like msgbox seem to work. I tried all diffrent setting but it would never...
  5. C

    Form_Delete

    I'm trying to add a date into a field instead of deleting the record. The form delete event doesn't allow me to write the date into this field but the form dirty event does. How can I write this and why doesn't this work? Thanx. Private Sub Form_Delete(Cancel As Integer) Cancel = True...
  6. C

    Duplicate Lines Occurring Due to Relationship

    Reson for adding the second Table All the data I need is in the first table but I need to sort it base in related records in the second table. The second table is a one to many therefore I get repeated results. Is there any other way to sort from a second table without including that in the query?
  7. C

    Duplicate Lines Occurring Due to Relationship

    Duplicate results I have a similar problem. I would like to sort a table through a relationship with another query but I dont want all the results of the query only the first time every record in the table shows up in the query.
Back
Top Bottom