Search results

  1. apr pillai

    Upload data from Excel via a button into Access DB

    The easiest way to bring Excel data into Access (2007 or above) is to copy and paste into the Access Tables' Navigation Panel.. Keep Excel and MS-Access in Open state. Highlight the Excel Range (including header labels, if exists). Right-click the highlighted Range and select Copy. Select...
  2. apr pillai

    Day,Month in date form control reversed after update of form

    It looks like your Windows 'Region & Language' settings (Date & Time settings) are changed to U.S. Format. Do the following and check whether this is true or not: Start --->Control Panel --->Region and Language and check the Language and Date Formats are set to the correct form that your...
  3. apr pillai

    conditional formating duplicates

    Create a SELECT Query using the source table of the form. Use [StockNumber] Field Reference of the Form (Forms!FormName![StockNumber]) as Criteria in the Query column of StockNumber to filter the data in the query, based on the current record on the form. Add a Unbound Textbox on the Form...
  4. apr pillai

    Synchronized Copies of the Same Database

    Database Replication is the feature used for this kind of operations and works only with .MDB Databases. This feature creates a Master Database and Replicas to take out off-line or install the Master on LAN Server and Replicas on workstations online. Data changes are done on replicas...
  5. apr pillai

    Linking Access data to Excel

    The following link discusses how to bring Access Data into Excel and keep it live to reflect the changes takes places in Access instantly: MS-Access Live Data in Excel
  6. apr pillai

    Date/Age Field in Months

    Check the usage of MRound() Function of Excel in Access: Rounding Function MRound() of Excel
  7. apr pillai

    Any idea how to start text file on remote computer

    You can do it by installing Team Viewer Software on your computer and on remote computer as well. You will need the remote computer's access ID & password to connect to the remote computer. VNC Viewer is another Software.
  8. apr pillai

    Meeting management

    Try out MS-Access EVENTS database template, under Business category (image attached to find the location of the db template). I have not tried this but I think it will serve your purpose. You may modify the structure of the table to include other details you need.
  9. apr pillai

    unbound textbox storing value

    Based on your Code, the Unbound Text Box (Me.Text1307) value will be set with the Window's Username. This is true if the Combo box (Me.Combo1309.Value) value is Yes or No. You said it is an unbound text box, if that is true then it's control source property is not set with a field name and the...
  10. apr pillai

    Copying all objects, data, relationship, and security to a new MDB file

    When you import the objects into a new .MDB database the security settings are not transferred. You have to assign them again at Group/User level. The following procedure works for .MDB databases in Access2007. It may work in 2010 as well. Open the .MDB File and display the VBA Window. Run...
  11. apr pillai

    Report margins change between computers

    Take a look at the following links: Network and Report Page Setup Network and Report Page Setup-2 Network and Report Page Setup-3
  12. apr pillai

    Tab Contol auto opens when hovering

    Mouse-Move or Tab Page Click will not fire the required event to execute whatever you write in the Event Procedure. But you can create methods that gives the required effect. Check the following link and use Mouse-Move Event Procedure for the Command Buttons rather than click event procedure...
  13. apr pillai

    how to scrolldown mouse with record in the continuous form ?

    Open the Form in Design View. Display the Form's Property Sheet. Set the Scroll Bars Property Value to Both. Save and Close the Form. Open the Form in Normal View and check.
  14. apr pillai

    Transfer sub total to the next page and limited record

    Check the following example: www.msaccesstips.com/2009/07/msaccess-report-and-page-totals.html
  15. apr pillai

    Column totals

    It looks like that you have entered the expression (summary functions like Sum(), count() etc.) in Page Header/Page Footer Section. In that case it will end up in Errors. But you can write expressions like: =[Page] & "/" & [Pages] and it will show the result correctly. The expression must be...
  16. apr pillai

    create letter

    Check this out: MS-Access and Mail-merge MS-Access and Mail-merge-2 MS-Access and Mail-merge-3
  17. apr pillai

    Linking two unrelated subforms

    I am not sure whether I understood you correctly. If you are trying to link the second sub-form to the first sub-form directly, rather than linking it to the main form, then check the attached image for clues. The image comes from an article explaining some different tricks. The link to the...
  18. apr pillai

    Accessing code window where is an error

    Try pressing ALT+F11 Keys. Repeating this shortcut keys should toggle the windows.
  19. apr pillai

    get the symbol Ø chr(157)

    Try this: Open a new MS-Word Document. Select More Symbols... from the Symbols button from Insert Menu. Select the required Font in the Fonts control. Move the Vertical Scroll-bar and find the symbol you want. Double-Click on it to insert the symbol on the document. Copy the symbol and paste...
  20. apr pillai

    btn to run on form open

    When you open the form you want to show the last record on the form automatically, right? Copy and paste the following VBA Code into the Form's Module: Private Sub Form_Load() Dim rst As Recordset Set rst = Me.RecordsetClone rst.MoveLast Me.Bookmark = rst.Bookmark rst.Close End Sub
Back
Top Bottom