Search results

  1. G

    Question Pivot Chart Problem

    On the startup form of either attached mdb, select "Portata Povo" then, on the calendar, select 1 September 2009, click on the button that says, "set start date", on the calendar select 30 September 2009 and click on the button that says, "set end date" and click the Chart button. In one mdb...
  2. G

    Deleting New Records on Subforms

    In the attached mdb, is there a way to avoid the RecordSource of the subform being incremented by one day every time you open the main Dezzo form? Try opening and closing the Dezzo form a few times; you'll see records being added to the g1dez and g2dez tables. I'm using the following code in the...
  3. G

    Reproducing Clicking a Form Button Via Code

    The attached mdb opens two forms on startup. Is there a way to reproduce clicking the Command0 button on the Form3 form via VBA code? I'm asking this because I intend to hide the Form3 form on startup and I'm also forced to use this procedure because the Ricarica subroutine in Module1 works...
  4. G

    Write Conflict in Subform Text Boxes

    If, on the startup form of the attached mdb, you type anything in any of the text boxes of the FPersonale subform(which, in form view, is labeled "Shift schedule") you get a message titled "Write Conflict" saying that during the current session the record had been modified by another user...
  5. G

    ADO Recordset Find Method Behaviour

    If I put a breakpoint before the code line rst.Find ("Giorno=#" & Format(Forms!Prev!CGior, "mm/dd/yyyy") & "# ") in the Private Sub Comando255_Click() of the attached mdb, select March 8, 2006 on the calendar and then click the Agenda button on the startup form, I can see that the conditional...
  6. G

    Closing Recorsets Left Hanging Open

    In the Click event for the Comando50 button on the startup form of the attached mdb, I'm trying to use the line If rst.State = adStateOpen Then rst.Close but I get the Ado runtime error 3219: The operation requested by the application is not allowed in this context. when the...
  7. G

    Rarefying Pivot Chart Tick Labels When the X Axis Gets Crowded

    I'm having a problem with a possible bug that seemingly prevents the TickLabelUnitType property from working properly. I'm trying to use the TickLabelUnitType property to display a tick label for every month on the time-scaled category axis but when I open the chart, the code stops at the line...
Back
Top Bottom