Search results

  1. A

    Convert sharepoint linked table to local table

    Hi, I wish to convert an imported sharepoint list to local table via vba. the import is successful, however converting the list to a local table is my headache. This is the code I used: DoCmd.TransferDatabase acImport, "Microsoft Access", FPath, acTable, "SchoolList", "AccessTbl", 0...
  2. A

    Sharepoint to Azure

    Hi everyone, I've migrated my access backend data to sharepoint. I however wish to migrate to Azure now. Please idea how to do that? The migration assistance only shows Sql-Server and sharepoint. If i migrated can I work offline and synchronize when I come online like I do with sharepoint...
  3. A

    Compile a project at start

    Hi, I have developed an access project for multi user access through the split db. As I am compiling the front end on my 64 bit HP laptop, any time a user using 32 bit windows installs the front end, it wont run until I give him a copy that I compiled on a computer running 32 bit windows. Is...
  4. A

    Convert sharepoint linked table to local table

    Hi. I have a FE DB and a sharepoint BE. Due to our poor network nature I most of the time converts the sharepoint table on the FE to local table. I usually do this from the navigation pane once I right click on the linked table the command (Convert To Local Table) pops up. I however wants to...
  5. A

    Question Front end not opening on 32 bit computers

    Hi, The distributed Front End of my App doesn't open and display the above error on 32Bit computers. However if I compile the vba project on the computer (32bit) the App opens fine. How do I avoid this error?
  6. A

    UnLoad a ribbon on logout

    I have a distributed FE with getVisible callback function on the most of the ribbon controls. So depending on user permission, some controls are visible to some users and not visible to others. The ribbon is attached to the main form that stays open. I created a logout function that closes the...
  7. A

    Capture picture from webcam

    Hi, I am developing a Student Database that shall capture Biometric and Pictures. I got the fingerprint on an access form. However I cannot get image directly from the webcam to an access form. I have to use the manufacturer's software to capture the image before importing to access using...
  8. A

    Data access over network very slow

    Hi., I developed a software for managing Junior Secondary School Examination using access 2010. Total number of registered candidates were less than 60,000. I split the db into back-end and runtime front-end. I distributed the front-end to various local clients for entry of examination marks...
  9. A

    Deploying Access DB

    Hi, I want to distribute my application to various clients at multiple remote locations for data input. After capturing the data a copy is to be returned to me so that I can synchronize input from various location into a master DB. I used Access 2010. My problem is, the remote computers may or...
  10. A

    Hide File tab in Access 2010

    Hi, I just upgraded to Access 2010. I was able to solve all migrational issues, but my custom ribbon is showing two File tabs, one that I created and the default access file tab. Any idea on how to get rid of the default File tab or at least disable it?
  11. A

    BE in the Clouds

    Hi, I am developing a DB for an organisation with branches all over the country. Is it possible to deploy the Back-end DB in a clouds server so the it can be accessed by all branches with a local copy of the Front-end? :banghead:
  12. A

    Question Find if a Network Server is on

    Hi, My DB is split into BE and FE into about 5 Laptops. The DB is for entering personal information of pensioners. sometimes it becomes necessary to take a computer away from the office to capture data of sick and aged pensioners. Now if you take the server (BE) out all the other clients (FE)...
  13. A

    Viewing a WebCam Picture on a form.

    Hi, I want to view webcam image on a form with a command button to save the still pic as a bmp file. Can anybody help?
  14. A

    Display a number in accounting format in a message box

    Hi Everyone, As we all know Access do not display numbers in accounting format (NGN1,234.78) in a message box. I developed thes functions to do just that. The functions are Putcommas and IntCommas. The Listings are as follows: Function PutCommas(Amt As String) Dim DotPos As Long, StrLen As...
  15. A

    Question Custom Ribbon not showing

    Hello; I want to display a custom ribbon when I open a report in print preview mode. The ribbon name is PrintRibbon with the following xml: <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon startFromScratch="true"> <tabs> <tab id="printMenu" label="PRINT" >...
  16. A

    Update Records from Email

    Hi All, I have a DB for monitoring housing loans. Customers make monthly repayments to my bankers, who sends me an instant email notifying me of the payment. Is there a way I can extract the contents of such mail automatically, so that I can update the my table? I read much about the email...
  17. A

    Email Data

    Hi all, I have a Database that track repayment for housing loans. Each customer usually pays directly to my bank, and the bank sends me an email with customer name and amount paid. Is there a way to update my table using this email?
  18. A

    Question Access2007 Ribbon not working in Access 2010

    Hi After much hussle I got my custom ribbon working in 2007 version. Now that I upgrade to 2010 my call back functions are not seen. The office help isn't helpful. Can anybody tell me why? :confused: Engr. Aliyu
  19. A

    Question Ribbon customization

    I have created a custom ribbon using the following XML <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon startFromScratch="true"> <tabs> <tab id="tabMain" label="Pension Commands"> <group id="grpGeneral" label="General"> <button...
  20. A

    Question Arrange Months January - December

    I have a table with a date field, a form with two combo boxes (cmbYear and cmbMonth). cmbYear extracts distinct Years from the date field, and cmbMonth display month names based on the year selected in cmbYear. My problem is the months are not arranged January to December in the combo box rather...
Top Bottom