Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. interacting with google calendar

interacting with google calendar

Scheduled Pinned Locked Moved C / C++ / MFC
c++questionjavaxmltutorial
8 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    theCPkid
    wrote on last edited by
    #1

    I am working on an MFC SDI applicaiton similar to ToDO list where user can enter various tasks for the day and retrieve them. I want to synchronize it with google calendar so that user can retrieve any tasks from google calendar into my application. Can anyone tell me how can I do it in C++? Google provides calendar APIs but I have not found anything on how to use them or even interacting with them using C++ code. I know xml and my application can parse and write into xml but no experience in interacting with websites or internet programming. Any input will be highly appreciated. Thanks.

    the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

    R 1 Reply Last reply
    0
    • T theCPkid

      I am working on an MFC SDI applicaiton similar to ToDO list where user can enter various tasks for the day and retrieve them. I want to synchronize it with google calendar so that user can retrieve any tasks from google calendar into my application. Can anyone tell me how can I do it in C++? Google provides calendar APIs but I have not found anything on how to use them or even interacting with them using C++ code. I know xml and my application can parse and write into xml but no experience in interacting with websites or internet programming. Any input will be highly appreciated. Thanks.

      the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

      R Offline
      R Offline
      Rajesh R Subramanian
      wrote on last edited by
      #2

      theCPkid wrote:

      Can anyone tell me how can I do it in C++?

      AFAIK, the closest thing for you would be CLI/C++ (or may be Objective-C, if you are into that?). Here[^] is the API, just in case it could be of help. :)

      Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

      T 1 Reply Last reply
      0
      • R Rajesh R Subramanian

        theCPkid wrote:

        Can anyone tell me how can I do it in C++?

        AFAIK, the closest thing for you would be CLI/C++ (or may be Objective-C, if you are into that?). Here[^] is the API, just in case it could be of help. :)

        Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

        T Offline
        T Offline
        theCPkid
        wrote on last edited by
        #3

        I am new to .Net as well. So, just wondering whether I can add .net support to my mfc application. I downloaded the calendar sdk and in the sources folder, all files are in C# but there are some dlls also. I hope I should be able to use those dlls in my application directly provided these are COM dlls. Thanks for the reply.

        the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

        R 1 Reply Last reply
        0
        • T theCPkid

          I am new to .Net as well. So, just wondering whether I can add .net support to my mfc application. I downloaded the calendar sdk and in the sources folder, all files are in C# but there are some dlls also. I hope I should be able to use those dlls in my application directly provided these are COM dlls. Thanks for the reply.

          the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

          R Offline
          R Offline
          Rajesh R Subramanian
          wrote on last edited by
          #4

          theCPkid wrote:

          So, just wondering whether I can add .net support to my mfc application.

          .NET support for your MFC app? There is no such thing. :) Your app is either native or managed. To deal with the discussed Google APIs, your app must be managed. Hope that helps.

          Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

          T 1 Reply Last reply
          0
          • R Rajesh R Subramanian

            theCPkid wrote:

            So, just wondering whether I can add .net support to my mfc application.

            .NET support for your MFC app? There is no such thing. :) Your app is either native or managed. To deal with the discussed Google APIs, your app must be managed. Hope that helps.

            Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

            T Offline
            T Offline
            theCPkid
            wrote on last edited by
            #5

            Thanks for the info. But still scratching my head about how can I interact with GData in my MFC application as it is not possible for me to do it in .Net It seems like it will be possible for me to do simple query and get response as described in this link. Since all this is totally new to me, so I am still trying to understand it. Thanks for the help.

            the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

            R 1 Reply Last reply
            0
            • T theCPkid

              Thanks for the info. But still scratching my head about how can I interact with GData in my MFC application as it is not possible for me to do it in .Net It seems like it will be possible for me to do simple query and get response as described in this link. Since all this is totally new to me, so I am still trying to understand it. Thanks for the help.

              the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

              R Offline
              R Offline
              Rajesh R Subramanian
              wrote on last edited by
              #6

              Why are you repeating the word "MFC"? I simply don't get it. The core of the application that you are looking to develop is already written in managed code. So, there is no point in just writing the UI in MFC (I'm presuming you're doing this), for at least the reason that you can build feature rich UI with much lesser efforts with the help of .NET. I believe there must be samples too at code.google.com; just do a search.

              Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

              T 1 Reply Last reply
              0
              • R Rajesh R Subramanian

                Why are you repeating the word "MFC"? I simply don't get it. The core of the application that you are looking to develop is already written in managed code. So, there is no point in just writing the UI in MFC (I'm presuming you're doing this), for at least the reason that you can build feature rich UI with much lesser efforts with the help of .NET. I believe there must be samples too at code.google.com; just do a search.

                Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

                T Offline
                T Offline
                theCPkid
                wrote on last edited by
                #7

                No, whole of my application is using COM & MFC. My todo list is just a small part of it and my whole project does not use .Net in any way. So, i do not think using .Net will be possible. I hope I have understood you properly. :^)

                the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

                R 1 Reply Last reply
                0
                • T theCPkid

                  No, whole of my application is using COM & MFC. My todo list is just a small part of it and my whole project does not use .Net in any way. So, i do not think using .Net will be possible. I hope I have understood you properly. :^)

                  the fruits of your success will be in direct ratio to the honesty and sincerity of your own efforts in keeping your own records, doing your own thinking and, reaching your own conclusions. ..surviving in autumn..in love with spring..

                  R Offline
                  R Offline
                  Rajesh R Subramanian
                  wrote on last edited by
                  #8

                  OK, I get you now. I thought todo list was your entire application. And that's why I asked you to write your app in managed code. Besides that, I don't see a way you could use the google calendar APIs in your application, because that is entirely managed code. :)

                  Nobody can give you wiser advice than yourself. - Cicero .·´¯`·->Rajesh<-·´¯`·. Codeproject.com: Visual C++ MVP

                  1 Reply Last reply
                  0
                  Reply
                  • Reply as topic
                  Log in to reply
                  • Oldest to Newest
                  • Newest to Oldest
                  • Most Votes


                  • Login

                  • Don't have an account? Register

                  • Login or register to search.
                  • First post
                    Last post
                  0
                  • Categories
                  • Recent
                  • Tags
                  • Popular
                  • World
                  • Users
                  • Groups