• WSnevwill

    WSnevwill

    @wsnevwill

    Viewing 15 replies - 1 through 15 (of 21 total)
    Author
    Replies
    • in reply to: Appforge 2.1.1 EditRecord and Hotsync on Palm OS 3 #852272

      Thanks for the replies. As usual immediately after posting my brain kicks into gear & I solve most of my problems. The delete after hotsync is now working, I had placed my code in the wrong place.

      The editing has still got me stumped though. Definitely using PDBUpdateRecord.

      Neville

    • in reply to: Appforge 2.1.1 EditRecord and Hotsync on Palm OS 3 #852273

      Thanks for the replies. As usual immediately after posting my brain kicks into gear & I solve most of my problems. The delete after hotsync is now working, I had placed my code in the wrong place.

      The editing has still got me stumped though. Definitely using PDBUpdateRecord.

      Neville

    • in reply to: IMPLEMENTING plagiarism #746956

      Or you could try this

      http://www.copernic.com/en/products/summarizer/index.html%5B/url%5D

    • in reply to: IMPLEMENTING plagiarism #746957

      Or you could try this

      http://www.copernic.com/en/products/summarizer/index.html%5B/url%5D

    • in reply to: Subforms in Design View (Acces2000) #612487

      This happens to me also but I don’t have 97 installed and haven’t figured out why.
      Neville

    • in reply to: Combo – NotInList (2K-SR2) #601791

      That was simple, Thanks

    • in reply to: VBA Out of memory (2000 (SR-1)) #601686

      Have you left any recordsets open, and then re-opened them? It also pays to set them to ‘Nothing’ after closing.

      Failing to do the above will gobble up your memory.

    • in reply to: Register ActiveX (O2K SR1 ) #554724

      I still need help. What has got me bluffed is that the same code works in my working database on the same PC.

    • in reply to: SubForm Links #529901

      I usually place the list/combo box on the main form to select whatever record I require, the subform data automatically displays provided the parent child fields are set correctly.
      It seems to me you’re trying to work back to front, finding one record from many rather than many from one. It may be able to be done but I’ve never tried.

    • in reply to: Columns in reports #528961

      Thanks Charlotte, that’s what I regard as clever thinking.

    • in reply to: E-mailing an Access Report #1784292

      In O2K under File menu there is a Send To option. However if the data for each recipient differs, this method will send the complete report to each recipient. The other alternative is to use automation.

      It may be easier to filter the report for each recipient and then email.

    • in reply to: Columns in reports #528850

      The number of columns is set under page setup. If the parent report is set to one column the all subreports are also set to one column.

      I know of no way around this, as I attempted to do the same recently.

    • in reply to: Calling a function from another function #528848

      Public Function f1(args) As Boolean

      if args=whatever then
      f1=true
      else
      f1=false
      endif

      End Function
      ===========================
      This function is triggered by the onclick event of a control on a form like this
      ======================
      Private Sub Command472_Click()
      DoCmd.OpenReport “R1”, acViewPreview
      End Sub
      ============================

      Public Function beepit()
      DoCmd.Beep
      End Function
      ==========================

      Private Sub Report_Open(Cancel As Integer)
      If F1(args) Then
      Beepit
      End If
      End Sub
      ==========================

    • in reply to: SetFocus event #512300

      If you don’t want the user to change an existing record, you could use the NewRecord property to check for an existing record, display a message box to infrom the user, and then use the OldValue property to reset to original value in the OnChange Event.
      There’s probably better ways of doing this, but its the first thing that came to my mind.
      Neville

    • in reply to: Access Form Navigation Control #511712

      Actually Charlotte mentioned using the sub-forms ‘on exit’ event, but was unable to find it on the forms property sheet. Well I have now, tried it, but apparently it isn’t activated if the subform isn’t entered.
      Kevin mentioned a ‘query close’ event, where do I find that? I’ve never heard of it.
      Anyway, I decided to do some deep thinking (God it hurts), and explore using the main forms ‘on current’ event to solve the problem, as this is the only event I found to be activated if the navigations controls are used to move to another record.
      Thanks again.
      Neville

    Viewing 15 replies - 1 through 15 (of 21 total)