It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a desktop app based on java which could upload, download and share files from google drive.
Actually I am creating a email client and file sharing client application. I want to let my users to share their files using frontend of my java app. I also want to store the gmail attachments to google drive automatically in this app.
Check the Java quickstart in the Google Drive SDK documentation to learn how write a command-line Java app that uploads files to Google Drive:
https://developers.google.com/drive/quickstart-java
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have tried to Launch Hotmail App from my app but could not do so.
Is there anyway to call/list third party application in my WP8 app?
You can use LaunchUriAsync to launch the email app (I assume this is what you mean by Hotmail app), using a mailto: format URI. See MSDN for reference and a list of other URI/files types you can use for other built-in apps.
You can't list 3rd party apps, only other applications you yourself have published in the Store.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am working on "MapView" app in iPhone
In this app the Latitude and Longitude of my current Location is send to server so other user can see this Location and display in MapView.
How to insert record or data into mysql(PHP) from iPhone?
You will need a web server in addition to your database server, to host a web application with an API that your iPhone app can access. This web app can be written in any language that can write to a MySQL database (php, python, java, ruby, perl, to name a few). You'll likely want to use a restful api, using json for data representation. There are many resources available to help you in learning to create such a thing. Good luck!
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I am creating a html5 web app. In that web app Contents are loaded dynamically from the XML feed. The feed XML has list of image URLs. I added that URLs in the cache.manifest file to support offline access. In that list of URLs if one URL is giving 404, because of that caching is not working how to solve this issue.
Manifest cache files will fail (and therefore your appcache will be incomplete) if there are any errors at all. So, if the close.png URL is throwing a 404, remove it or correct it—your cache won't work otherwise, simple as that.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I need to build a chrome extension where I can run the python program?
You cannot use Python. Google Chrome Extensions uses Web Technologies HTML/CSS/JS and NPAPI.
Please refer to the Getting Started Guide:
http://code.google.com/chrome/extensions/getstarted.html
you need to write your python code and to upload the files,
go through the documentation here
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I would like to insert an Excel spreadsheet into a Web page but would like to change some of the data at the same time to make them more user friendly.
Is it easily possible?
Thank you for your help.
Excel can export HTML files directly ("Save as...") What modification exactly do you want to do? Can you do them by hand? Do you want to automate them (how often you want to do the export?)
For small modifications, it's relatively easy to write a VBA macro (or just record it..).
If you don't mind the security risks, you can activate ActiveX and embed the Excel spreadsheet in the web page using the <object> element (see these forum posts for some pointers). Don't browse the Internet with ActiveX enabled! You will get a virus or Trojan.
Note that the spreadsheet must be on a network drive that is accessible by all users.
If that isn't an option, then try Zoho Sheet or Google Docs. Drawback: You must give your previous data to a third party.
Last option: Use a web server to convert the Excel into HTML and use a JavaScript grid control.