ICal link with Microsoft access on OS X

want to have a Date/time column in Microsoft access to have an event appear in iCal and update automatically.

I've found a fix - it's all explained in this article.
If the page gets deleted: the fix is to add 127.0.0.1 port 10010 as HTTP & SSL proxy (SOCKS5) in FF. This uses the Parental Controls proxy server (which provides filtering).
Link: [http://faq.mathletics.com/questions.php?questionid=77 here].

Similar Messages

  • Can I use Web Services with Microsoft Access?

    I'm somewhat handy with Microsoft Access (2003 in particular), but not an expert. Macros? No problem. VBA? I'd be hard pressed to code anything from scratch, but I'm not too bad with modifying code/examples to fit my particular scenario. So, if anything about this doesn't ring quite right, now you'll know why. Some years ago I worked with another guy to develop a module that used REST(?) to query some web services at Yahoo!. If that worked, I was hoping that I could do similar things with CRMOD I was thinking, for example, I might want to get the Opportunity Sales Stage for a number of records. And since there are tools for Excel and Word, I thought Access might work, too. As a starting point, I imagine I need to use the Web Services Toolkit for Office 2003. But frankly, I don't even know where to go beyond that.
    Am I wasting my time? Any suggestions for an intro to web services?

    Probably not through USB.
    But likely if its anytihng like the Microsoft Sync in my Ford Explorer you can play audio from it through Bluetooth.
    You can read here for compatibilites, and features.
    http://www.ford.com/technology/sync/
    I connect My iPad to the Sync media center with no issues and can play my musci from the iPad thorugh the car stereo speakers.

  • How to link dataTable component with Microsoft Access Database?

    Please mail me @ [email protected]

    Creator might not support MS Access yet but use this code for an access database connection will always work even through notepad or textpad:
    import java.io.BufferedInputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    import java.util.Properties;
    * @author Mark Hennessy
    public class MyDataSource {
    private static MyDataSource ds = null;
    private static java.sql.Connection connection = null;
    /** Creates a new singleton instance of MyDataSource */
    private MyDataSource() {
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connection = java.sql.DriverManager.getConnection("jdbc:odbc:<db name>", "guest", "guest");
    }catch(ClassNotFoundException cnf){
    cnf.printStackTrace();
    }catch(java.sql.SQLException sqle){
    sqle.printStackTrace();
    public static DataSource getInstance() {
    if(ds == null)
    ds = new DataSource();
    return ds;
    public java.sql.Connection getConnection() {
    return this.connection;
    public static void closeConnection() {
         try{
              connection.close();
         }catch(java.sql.SQLException sqle){
              sqle.printStackTrace();
    plus set up the ODBC connection via click start , click run and then copy and paste the following "odbcad32.exe" without the quotes, click ok, click user DSN tab, click Add...button select Microsoft Access Driver (*.mdb) click finish, give <db name> name of ur access database, give any description <whatever> or leave blank click the select... button navigate to the access database u want to connect to in your java code and select it.
    in calling program
    public class CustomersImplimentation {
    private static java.sql.Connection connection = null;
    private java.sql.ResultSet rs = null;
    public CustomersImplimentation(){
    connection = MyDataSource.getInstance().getConnection();
    public Customers[] findAll(){
    java.util.ArrayList list = new java.util.ArrayList();
    String sql = "SELECT * FROM CUSTOMERS";
    try{
    java.sql.Statement stmt = connection.createStatement();
    rs = stmt.executeQuery(sql);
    while(rs.next()){
    list.add(new Customers(rs.getInt(1), rs.getString(2), rs.getString(3)));
    }catch(java.sql.SQLException sqle) {
    System.out.println((new StringBuilder()).append(
    "SQLException :: executeQuery Cannot find all Customers:").append(sqle).toString());
    Customers[] customers = new Customers[list.size()];
    for(int i = 0; i < list.size(); i++){
    customers[i] = (Customers)list.get(i);
    return customers;
    if you have a Customers class created with set and get methods and a constructor that takes an int string string i.e.
    public Customers(int ID, String firstName, String lastName){}
    then u should be able to run these classes from within creator with an access database. hope this helps?
    regards
    Henno

  • Remote Desktop - Pinch and Zoom compatibility with Microsoft Access

    Hi guys, not sure which forum to place this into but here we go.
    We use Windows 8.1 tablets and RDP to a 2012 R2 Remote Desktop Server, we can pinch and zoom with Office 2007 Excel, Word without issues.
    I would like to know if there is a list of programs that's compatible with pinch and zoom because it looks to me like Microsoft Access (2007 version) isn't compatible with pinch and zoom but I need proof for my IT manager.
    Can you tell me if I should be able to pinch and zoom a database windows within MS Access?

    Hi,
    As per my research there is no such description whether which program compatible with pinch and zoom but still as this seems more relate to tablet question. You can ask your comment over there for more perfect answering.
    https://social.technet.microsoft.com/Forums/en-US/home?category=surface
    http://answers.microsoft.com/en-us/surface/forum?auth=1
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Login codes using java database (validates with Microsoft Access File)

    hi all pro-programmer, can you show me the code to login with the username and password using java database. When the user enters the username and password in the login page then it will go to the requested page. may i know how to do it?

    no one will give you complete code.
    i'll lay out the pieces for you, though:
    (1) start with a User object. give it username and password attributes.
    (2) write a UserDAO interface with CRUD operations for a User object.
    (3) write a UserDAOImpl for your Microsoft Access database
    (4) write an AuthenticationService interface
    (5) write an implementation of the AuthenicationService that works with the UserDAO to authorize a User.
    Use a servlet to accept request from your login page and pass it off to the service. Voila.
    PS - Here's skeleton to start with. UI, servlet, and controller are your responsibility:
    package model;
    public class User implements Serializable
        private String username;
        private String password;
        public User(String u, String p)
            this.username = u;
            this.password = p;
        public String getUsername() { return username; }
        public String getPassword() { return password; }
    public interface UserDAO
        public User findByUsername(String username);
        public void saveOrUpdate(User user);
        public void delete(User user);
    public class UserDAOImpl implements UserDAO
        private Connection connection;
        public UserDAOImpl(Connection connection)
            this.connection = connection;
        public User findByUsername(String username)
            String password = "";
            // logic for querying the database for a User
            return new User(username, password);
        public void saveOrUpdate(User user)
            // save or update a User
        public void delete(User user)
            // delete a User
    public interface AuthenticationService
        public boolean isAuthorized(String username);
    public class AuthenticationServiceImpl implements AuthenticationService
        private UserDAO userDAO;
        public AuthenticationServiceImpl()
            // Create a database connection here and the UserDAO, too.
        public boolean isAuthorized(String username)
            boolean isAuthorized = false;
            // Add logic to do the database query and decide if the username is authorized
            return isAuthorized;       
    }

  • ODBC Cartridge works with MicroSoft Access?

    I need to access data from the MicroSoft Access database. Will
    the ODBC Cartridge work? From the Release Note, it says only
    RDBMS like Sysbase, Informix... it didn't say much on the
    Access database.
    Any suggestion of how to do it will be helpful... Thanks.
    ** I appreciate any reply asap... Thanks.
    Frankie
    null

    Frankie,
    I am not sure what you mean by 'ODBC Cartridge' . In JDeveloper
    (as with the JDK) you would connecto to an ODBC datasource using
    the JDBC-ODBC bridge. This works for MS Access.
    Hope this helps.
    Regards,
    Frankie Lau (guest) wrote:
    : I need to access data from the MicroSoft Access database. Will
    : the ODBC Cartridge work? From the Release Note, it says only
    : RDBMS like Sysbase, Informix... it didn't say much on the
    : Access database.
    : Any suggestion of how to do it will be helpful... Thanks.
    : ** I appreciate any reply asap... Thanks.
    : Frankie
    null

  • Non-technical user needs help with Microsoft Access/MS-Query connection

    I've read through some of the other threads on problems with the ODBC connection from MS Access to an Oracle database but as a non-techie I'm afraid I need to ask based on the steps I have always used. I'm not totally inexperienced as I have gone through the same steps on multiple Windows XP machine running different versions of Oracle and Office over the past 10 years but the steps aren't working this time. If there are settings that need to be checked or changed (path, etc.) I'm afraid I'll need specific instructions as to where I need to look for them.
    I'm currently trying to set up a connection on a new laptop running a 64-bit version of Windows 2007 Professional.
    1) I've installed a full 64 bit Oracle 11g client and 32 bit copy of Microsoft Office Professional Plus 2013.
    2) I set up the Oracle data source using the client Net Manager. I can connect from there.
    3) I added it in the Oracle-provided Microsoft ODBC Administrator and can connect from there.
    I the past, after doing this, the was automatically included in the list of ODBC Databases in MS Acess but this time it's not. I tried adding it as a new data source by selecting the Microsoft ODBC for Oracle driver but receive the same  "The Oracle(tm) client and networking components were not found" error message that has plagued so many others.

    This is bad code, for lots of reasons:
    (1) Scriptlet code like this should not be used. Learn JSTL and use its <sql> tags if you must.
    (2) This code belongs in a Java object that you can test outside of a JSP. JSPs are for display only. Let server-side objects do the database work for you.
    (3) You don't close any ResultSet, Statement, or Connection that I can see. Microsoft Access doesn't save any records until you close the Connection.
    (4) You don't have any transactional logic. When you write to a database, you usually want it to be a unit of work that is committed or rolled back together.
    %

  • How to connect with Microsoft Access Database with JAVA

    I want to know the command and query to connect between MSAccess and JDBC.
    Is it beter way to make connection with MSAccess comparing with other Databases such as SQL and Oracle.
    Which Database will be the best with Java?
    I also want to know to be platform indepadent which database is suitable?

    On Windows, you can use MS Access database by:
    Set up a System Data Source using the ODBC control panel applet.
    Use the jdbc:odbc bridge JDBC driver, and specify a jdbc url that points to the data source name you just specified.
    It's been too long since I've done this, so I don't remember the syntax of the jdbc url, but I'm sure that if you do a search for the jdbc:odbc bridge that you will find what you are looking for.
    As far as the question about which database is best, you will need to determine that based on your project requirements.
    If you want a quick and dirty, open source, cross-platform database, take a look at HyperSonic SQL.
    - K

  • Connection with Microsoft Access using Java on Linux

    Hi,
    I am very new to Linux & trying to move my application from Windows to Linux.
    I am downloading one database(*.mdb) file from an url & want to select records from tables & add them to my My Sql database.
    Is there any way to connect to Access database on Linux machine ( Without using different Windows machine having Ms Access installed).
    Thanks in advance.
    Regards,
    Veena

    I am having the same problem.
    jackcess worked fine with Access 2000.
    But i want to work with Access having previous version (probably 97).
    Is there any way to do this?

  • ODBC Cartridge works with MicroSoft Access database?

    I need to work with data saved in the Access Database, I wonder
    if the ODBC Cartridge will work with Access? From the
    documentation, it only mentions Informix, System.... it didn't
    mention Access or Excel ...
    Any suggestion or prior experience to share will be appreciated.
    Your asap response is much appreciated...thanks.
    Frankie
    null

    Hi,
    I'm using OAS407 with ODBC cartridge and connecting to
    Access. Also, Oracle support put an enhancement request
    in for us to modify the ODBC cartridge to return BODY
    tags thru ICX, so ODBC cartridge can be used with
    LiveHTML. Is that what you want to know?
    Regards,
    Mike Thomas
    Frankie (guest) wrote:
    : I need to work with data saved in the Access Database, I
    wonder
    : if the ODBC Cartridge will work with Access? From the
    : documentation, it only mentions Informix, System.... it didn't
    : mention Access or Excel ...
    : Any suggestion or prior experience to share will be
    appreciated.
    : Your asap response is much appreciated...thanks.
    : Frankie
    null

  • Anybody here any good with Microsoft Access

    I have a project I am working on for work and it was written in Access. I have no problem opening it at work. If I try to open it on my laptop I get "Error in kc_Decrypt (2): 5 - Invalid procedure call or argument". When open the file on mt laptop the security warning comes up warning me that the file may contain code intended to harm you computer, then when I click ok to open the file, since I know what it is and that it's safe to open, I get Error in kc_Decrypt (2): 5 - Invalid procedure call or argument. If I push OK 47 times the error goes away and the file opens. The once it opens, when I try to use any of the functions of the database, the same error comes back up. Any help you can lend will greatly appreciated.

    Hi,
    did you already checked the Microsoft support forum? Since this is a Toshiba user-to-user forum I am not sure if anybody here has a clue about this issue.
    I think it would make more sense to check the Microsoft support for any help regarding your problem.
    Cheers

  • PowerPoint 2013 / 365 hangs with Microsoft Accessibility

    I am not sure whether it is a correct place to post such problem.
    Please point me to the correct place for this bug.
    Download Microsoft tool:
    Accessible Event Watcher
    Run it with the following configuration:
    WinEvent (Out of context) , Event: OBJ_FOCUS , Properties: Name, Role, State.
    See the following video:
    Run Power Point , click on the splash screen with left and right mouse clicks.
    Press Alt+F4 to close it.
    After few runs PowerPoint hangs and won't exit.
    It is easy to notice that thread of Accessible Events hangs as well.
    The repoduction video:
    Dump file with hang is located here:
    https://mega.co.nz/#F!B583QQhY!wDsaWN6SCMDAgsW0kMW-Bw
    I am not the only one encoutering this issue, many people have the same problem with using UI Automation for PowerPoint.

    Hi,
    I have downloaded your dump, and troubleshoot it. Please see part of the result:
    0:000> !analyze -v
    * Exception Analysis *
    GetPageUrlData2 failed, server returned HTTP status 500
    URL requested: http://watson.microsoft.com/StageOne/POWERPNT_EXE/15_0_4655_1000/540569cc/unknown/0_0_0_0/bbbbbbb4/80000003/00000000.htm?Retriage=1
    GetUrlPageData2 (WinHttp) failed: 31.
    FAULTING_IP:
    +543297df2533
    00000000 ?? ???
    EXCEPTION_RECORD: ffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 00000000
    ExceptionCode: 80000003 (Break instruction exception)
    ExceptionFlags: 00000000
    NumberParameters: 0
    CONTEXT: 00000000 -- (.cxr 0x0;r)
    eax=00000000 ebx=0022f3e8 ecx=00000000 edx=00000000 esi=00000000 edi=0022f3e8
    eip=779aa83c esp=0022f3a8 ebp=0022f40c iopl=0 nv up ei pl nz na po nc
    cs=0023 ss=002b ds=002b es=002b fs=0053 gs=002b efl=00200202
    ntdll!NtDelayExecution+0xc:
    779aa83c c20800 ret 8
    FAULTING_THREAD: 00000dbc
    DEFAULT_BUCKET_ID: STATUS_BREAKPOINT
    PROCESS_NAME: POWERPNT.EXE
    ERROR_CODE: (NTSTATUS) 0x80000003 - {EXCEPTION} Breakpoint A breakpoint has been reached.
    EXCEPTION_CODE: (HRESULT) 0x80000003 (2147483651) - One or more arguments are invalid
    NTGLOBALFLAG: 0
    APPLICATION_VERIFIER_FLAGS: 0
    APP: powerpnt.exe
    ANALYSIS_VERSION: 6.3.9600.16384 (debuggers(dbg).130821-1623) amd64fre
    PRIMARY_PROBLEM_CLASS: STATUS_BREAKPOINT
    BUGCHECK_STR: APPLICATION_FAULT_STATUS_BREAKPOINT
    LAST_CONTROL_TRANSFER: from 75b41182 to 779aa83c
    STACK_TEXT:
    0022f3a4 75b41182 00000000 0022f3e8 88567dbf ntdll!NtDelayExecution+0xc
    0022f40c 75b4103a 000001f4 00000000 0022f458 KERNELBASE!SleepEx+0x4b
    0022f41c 755416c9 000001f4 004abea8 004d8d98 KERNELBASE!Sleep+0xf
    0022f458 75526fef 004abea8 00000000 00000001 rpcrt4!SVR_BINDING_HANDLE::PrepareBindingHandle+0xac67
    0022f470 77602341 004abea8 00000000 00000001 rpcrt4!RpcServerUnregisterIf+0x27
    0022f490 77603cf3 004d8d98 0022f4b0 77603df1 combase!CRIFTable::UnregisterServerInterface+0x58
    0022f49c 77603df1 004d8d98 00000000 00000000 combase!CRIFTable::CleanupRIFEntry+0x15
    0022f4b0 77603da5 77603cde 776a38d8 0022f51c combase!CHashTable::Cleanup+0xee2
    0022f4b8 776a38d8 0022f51c ffffffff 0022f4e0 combase!CRIFTable::Cleanup+0x26
    0022f4c8 77602b43 00000000 0022f51c ffffffff combase!ChannelProcessUninitialize+0x4f
    0022f4e0 77602ab8 00000000 77594a09 00000000 combase!ProcessUninitialize+0x71
    0022f4e8 77594a09 00000000 004c6850 0022f6bc combase!DecrementProcessInitializeCount+0x37
    0022f4f8 77594930 01133034 00000000 00000001 combase!wCoUninitialize+0x7f
    0022f6bc 70f009e7 8d1d69fa 01133034 00000001 combase!CoUninitialize+0xb2
    WARNING: Stack unwind information not available. Following frames may be wrong.
    0022f7ac 67294d01 67157a0e b93acd35 01133034 AppVIsvSubsystems32!APIExportForDetours+0x14fc0
    0022f81c 01131572 00471e7c 0022f8bc 0113154a PPCORE!PPMain+0x13d35d
    0022f828 0113154a 01130000 00000000 00471e7c POWERPNT+0x1572
    0022f8bc 75a1919f fede7000 0022f90c 779c0bbb POWERPNT+0x154a
    0022f8c8 779c0bbb fede7000 8a4f7741 00000000 kernel32!BaseThreadInitThunk+0xe
    0022f90c 779c0b91 ffffffff 779ac9c9 00000000 ntdll!__RtlUserThreadStart+0x20
    0022f91c 00000000 011312bb fede7000 00000000 ntdll!_RtlUserThreadStart+0x1b
    STACK_COMMAND: ~0s; .ecxr ; kb
    FOLLOWUP_IP:
    AppVIsvSubsystems32!APIExportForDetours+14fc0
    70f009e7 e8cbfbf9ff call AppVIsvSubsystems32!VirtualizeCurrentProcess+0x45d4 (70ea05b7)
    SYMBOL_STACK_INDEX: e
    SYMBOL_NAME: appvisvsubsystems32!APIExportForDetours+14fc0
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: AppVIsvSubsystems32
    IMAGE_NAME: AppVIsvSubsystems32.dll
    DEBUG_FLR_IMAGE_TIMESTAMP: 53d037a4
    FAILURE_BUCKET_ID: STATUS_BREAKPOINT_80000003_AppVIsvSubsystems32.dll!APIExportForDetours
    BUCKET_ID: APPLICATION_FAULT_STATUS_BREAKPOINT_appvisvsubsystems32!APIExportForDetours+14fc0
    ANALYSIS_SOURCE: UM
    FAILURE_ID_HASH_STRING: um:status_breakpoint_80000003_appvisvsubsystems32.dll!apiexportfordetours
    FAILURE_ID_HASH: {193d76b6-6281-c85b-3be5-09ed7f6ec56e}
    Based on it, there are one suspicious caused this issue:
    PowerPoint hang when call AppVIsvSubsystems32.dll. There are Breakpoint in the process: "status_breakpoint_80000003_appvisvsubsystems32.dll".
    Thus, this issue might be caused by the AppVIsvSubsystems32.dll. Please try to see the two threads and try the methods:
    https://social.technet.microsoft.com/Forums/office/en-US/4fdea64f-e7c8-4e08-95b2-fb54984d617f/appvisvsubsystems32dll-error?forum=officesetupdeploy
    http://answers.microsoft.com/en-us/office/forum/officeonline-word_online/appvisvsubsystems32dll/75c4067b-d23f-4d50-bd23-82934852fed8
    Full dump analyze:
    http://1drv.ms/1zO3au3
    Hope it's helpful.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Problem with Microsoft Access and prompts

    In the past I have used the following prompt to retrieve details for an indivdual location or a total of all the locations from an sql database:
    @Select(Claim DetailLocation) IN @Prompt('Select Location(s) or type ALL:','a','Claim DetailLocation',multi,free) OR  'ALL' IN @Prompt('Select Location(s) or type ALL:','a','Claim DetailLocation',multi,free)
    E.G
    When 'All' is selected the data retrieved would be total sales for All locations = £100
    When I attempt to use the same prompt on an Access database it works when I select an indivdual location, but when I select 'All' it retrieves the data for the individual locations
    E.G. 
    When 'All' is selected the data retrieved would be total sales for location 1 = £20                                                                               
    total sales for location 2 = £80
    Does anyone know how I can retrieve the data from Access using 'All' and obtain one total figue (as per SQL) and not  as a series of location amounts?
    Regards
    Jason

    Just a question of clarification:
    Are all the columns of ttype String?
    Make sure only value of String type should be in single quotes.
    Other primitives such as int, double, short, etc should not be in
    single quote.
    Are MemberID, Age String type? If not take out the single quote around
    their respective value.
    Its in order. but it still cant work correctly.
    heres my code:
    String addNewMember = "INSERT INTO Member(MemberID,
    First_Name, Last_Name, Nric,Gender, Age, BirthDate,
    Address, PostalCode, Res_Phone, Email, DateOfRegister,
    DateOfExpiry)";
    addNewMember += "values('"+memberID+"',
    D+"', '"+firstname+"', '"+lastname+"', '"+nric+"',
    '"+gender+"', '"+age+"', '"+birthdate+"',
    '"+address+"', '"+postalcode+"',";
    addNewMember += "'"+resphone+"', '"+email+"',
    l+"', '"+registerDate+"', '"+expiryDate+"');";
    stmt.executeUpdate(addNewMember);

  • Scanning, managing pdf docs with Microsoft Access

    I'm an experienced Access developer, but new to Acrobat SDK. Is it possible to create an application in Access (VBA) that tags documents as they are scanned into pdf files, then retreive/display those documents using those tags or searching the pdf files? If this is possible, could someone point me to documentation or code examples where I can learn how to do this?
    Thanks much in advance for any suggestions and guidance.

    By "tag" I mean a short descriptor field that can be filled in by an operator for each document that is scanned, then can be used to pull up and view the document later. Specifically, the application would store scanned copies of prescriptions. Here's how it would work: The operator would load one or more prescriptions into a scanner. As each prescription is scanned, the scanner would pause to let the operator enter the prescription number into a database. The database would store the tag field and either an actual copy of the prescription or a pointer to the pdf file. Later, the operator could enter a prescription number into the database app and the image or pdf file would be displayed.
    Thanks again for any advice you can give me.

  • Connection problem with Microsoft Access DB to portal

    I build a system to connect a Access DB to the portal to use it for a query IView.
    In the connection tests everything went right even DQE.
    But the Metadata Loader shows unable to connect to system.
    When I choose the System as System Alias the tables form the Access DB are listet as null. Tablename in the Business Object column. It is possible to move some item to the right but after clicking on the SAVE button the Object vanished.
    Does somebody knows the error?

    Hello Gregor,
    We are using a Stack13 Portal and I am using the JDBC ODBC Bridge function.
    The Connection Properties are as follows:
    Connection URL:
    jdbc:odbc:telefonbuch
    Driver Class Name :sun.jdbc.odbc.JdbcOdbcDriver
    telefonbuch is the dsn of the Access DB (no password on the DB)
    The Connection Test are both green and in the DQE Dialogs - MetadataLoader the System Alias apears as Available System. When I click on the Buisiness Object I got the message "unable to connect to system".
    And now the strange thing: I could choose my system in the System Alias pulldown box: And as Results I get every Table and View from my DB but the names all looks like null.faxe, null.Abfrage ....
    It ist impossible to Add these Items to the loaded Side on the right.
    The same happends when I tried to build a Query Iview.
    Regards Jörg

Maybe you are looking for