Search results

  1. apr pillai

    How does Access create a continuous form?

    The Form and Report Wizards are VBA based creation of Tabular Form and Report. The attached Database is in Zip format. Both Form and Report Wizards are there in the same Database.
  2. apr pillai

    How does Access create a continuous form?

    Please Try again.
  3. apr pillai

    How does Access create a continuous form?

    I forgot about the Report Wizard, here it is: https://www.msaccesstips.com/2008/12/custom-report-wizard.html
  4. apr pillai

    How does Access create a continuous form?

    I asked this Question myself once and tried find out myself. You may download a Demo database of Form Wizard Code from the Link given below: https://www.msaccesstips.com/2008/12/custom-made-form-wizard.html?m=1
  5. apr pillai

    Solved Working with time: Showing elapsed time as base 10 number

    A detailed explanation of time conversions and a User-Defined Function: https://www.msaccesstips.com/2016/08/time-value-formatting-beyond-twenty.html
  6. apr pillai

    MS Access Chart Label Color

    Apply gradient color to Chart Series For j = 1 To grphChart.SeriesCollection.Count With grphChart.SeriesCollection(j) '.Interior.Color = RGB(Int(Rnd(j) * 200), Int(Rnd(j) * 150), Int(Rnd(j) * 175)) .Fill.OneColorGradient msoGradientVertical, 4, 0.231372549019608...
  7. apr pillai

    Can't make program go to new record in sub form

    Setting focus on a Textbox/Control on the subform from the main Form is a two-step process. Once you set focus to the subform you can use that focus event to move to a new Record. The details are there in the following link: Setting Focus on a Field inside a subform.
  8. apr pillai

    To know that back up is complete

    The FileCopy Source, Destination statement of VBA copies an external file (not the Currentdb) from Source location to Target location.
  9. apr pillai

    Find as we typed

    Need more examples then get the attached demo database. For details refer to this link: https://www.msaccesstips.com/2009/04/filter-by-character-and-sort.html
  10. apr pillai

    Updating Table

    With three Queries The Customers Table can be updated with the Rank Values, taking your qryRank Query as Source (taking MajP's attachment as an example), rather than manually updating each record. SELECT Query1 SQL: SELECT Customers.*, qryRank.CustomerRank AS Rank FROM Customers INNER JOIN...
  11. apr pillai

    using modulename in code

    Me. works within the loaded Form/Report Module. How do we Call/Reference a Public Function from another Form/Report Module? Form_Form1.myFunction()
  12. apr pillai

    Totals Query VBA

    You may use Tempvars (temporary Global Variables) to store the value and use it in TextBoxes on Forms, Reports, or in VBA. Example Syntax: Tempvars.Add VariableName, Value Tempvars.Add "Total",DSum("Amt","QueryName") To display the Value in Variable 'Total' - assuming the value in variable...
  13. apr pillai

    Unsolved: Manipulate chart object via code (MS Graph) on a FORM

    I hope the following links will be helpful for referencing the Graph Chart Object Properties in VBA Code: Working With Chart Object in VBA Column Chart and VBA PIE Chart Object and VBA The Code snippets were taken from Microsoft Access Graph Chart Documentation.
  14. apr pillai

    Solved Form problems with OpenArgs

    You are welcome. Good luck to your Project.
  15. apr pillai

    Solved Form problems with OpenArgs

    When the Form is open it goes through several phases of Actions/Events internally, like the following: Open → Load → Resize → Activate → Current One of the actions in these phases of actions is loading the Form's RecordsetClone with BookMark for each record. This process is interrupted by...
  16. apr pillai

    Solved Form problems with OpenArgs

    The following Commands pair, Selects the Navigation Pane (or activates it) first, then the second Command Hides it. 'following Command selects the Navigation Pane DoCmd.NavigateTo "acNavigationCategoryObjectType 'This Command Hides the Nagivation Pane DoCmd.RunCommand acCmdWindowHide The...
  17. apr pillai

    Solved Form problems with OpenArgs

    Disable the On Error Goto statement; 'On Error GoTo Form_Load_Err in the Form_Load() Event Procedure, to put the code in debug mode and try again. Disable the following lines also for test run. 'FilterList 'Call FormStartUp: Call IssueRewards
  18. apr pillai

    Solved Form problems with OpenArgs

    Change the statement: rst.Clone to rst.Close. Besides that I think the code looks ok.
  19. apr pillai

    Solved Form problems with OpenArgs

    As a sample method there is a Text Box and a Command Button on the first Form. Employee Code is entered into the Text Box and the user clicks on the Command Button to Open the Employees Form. The Command Button-Click Event opens the Employees Form and passes the EmployeeID as OpenArgs. If the...
Back
Top Bottom