Printing - G1 Q&A, Help & Troubleshooting

Hello,
I am thinking of substituting Google Docs for my basic word editor as I can access and edit files through it on my phone. However, there is one function delaying me from this switch, printing. Is there any way to print a Google Doc, or any document for that matter, through a wifi connected printer from Android or one of its apps? I realize that this may be quite impossible but I would like to be assured one way or the other.
Thank you,
Evervoid

look for the "send 2 printer" in the market it might help

Related

Android Access Database

Here we go:
I use a number of Microsoft Access Databases for my work, and each one is intensely coded and designed and basically run like actual programs. What I am looking for is to be able to take these databases with me. Now understanding that Microsoft and Android are two completely different beasts, what I really am looking for is the ability to take the tables (I use all Back-end database so all my tables are in a completely separate file then all my forms, queries, and reports) and the data with me and be able to run them in a program on Android that keeps the relationships and fields and all of that sort of stuff.
Now what would be great is the ability to use forms (even if special forms for android need to be made), run queries, and even be able to run reports and print as PDFs.
now I know how to code in VBA, hence the extensive coding I have done in Access, so anybody willing to WORK WITH in creating an Android Program to basically be an extension of Microsoft Access please contact me. Please not I use the words WORK WITH loosely, while I am trying to learn how to Program for Android, I currently do not have a computer that I can use to develop programs for android on, and well I would be only able to create the "Hello World" starter program and this project seems a slight bit more complicated. But what I can bring to the table is real world experience in testing and using the program day in and day out, a number of already existing Microsoft Access Databases ranging from Complex to Simple that I use every day. Really a program that can run Microsoft Access Tables on Android would be really useful to me and I am willing to do anything to help make this happen.
kronos82 said:
Here we go:
I use a number of Microsoft Access Databases for my work, and each one is intensely coded and designed and basically run like actual programs. What I am looking for is to be able to take these databases with me. Now understanding that Microsoft and Android are two completely different beasts, what I really am looking for is the ability to take the tables (I use all Back-end database so all my tables are in a completely separate file then all my forms, queries, and reports) and the data with me and be able to run them in a program on Android that keeps the relationships and fields and all of that sort of stuff.
Now what would be great is the ability to use forms (even if special forms for android need to be made), run queries, and even be able to run reports and print as PDFs.
now I know how to code in VBA, hence the extensive coding I have done in Access, so anybody willing to WORK WITH in creating an Android Program to basically be an extension of Microsoft Access please contact me. Please not I use the words WORK WITH loosely, while I am trying to learn how to Program for Android, I currently do not have a computer that I can use to develop programs for android on, and well I would be only able to create the "Hello World" starter program and this project seems a slight bit more complicated. But what I can bring to the table is real world experience in testing and using the program day in and day out, a number of already existing Microsoft Access Databases ranging from Complex to Simple that I use every day. Really a program that can run Microsoft Access Tables on Android would be really useful to me and I am willing to do anything to help make this happen.
Click to expand...
Click to collapse
I think we must have the same job
Android utilizes an sqlite database engine and it looks like sqlite already offers a conversion utility HERE. The real question would be how to get the data in and out of the phone. Regarding forms, they definitely would need to be custom built.
Thanks this is deffenetly a start, From what I can tell this This Looks to be the most promising, It looks like all you would have to do is put a MS Access Database file on your SD CARD and have a program access it. That way you copy it back and forth. Unfortunately it doesn't support Access 2003, but I can save down. I also got a lot of learning to do in programing Java programs.
Forms would be as simply as making a program, this is great thanks much
kronos82 said:
Here we go:
I use a number of Microsoft Access Databases for my work, and each one is intensely coded and designed and basically run like actual programs. What I am looking for is to be able to take these databases with me....
Click to expand...
Click to collapse
I would like to say, "yes, please!" to this idea. I currently use Smart List to Go (the descendant of ThinkDB) on my Palm TX. The TX is dying, and I've been shopping for a replacement. HanDBase exists for the iPhone, but I don't want an iPhone. So I've been focused on WinMo - not by choice as much as by necessity.
And android option would be very welcome around my computers.
benmyers2941 said:
I think we must have the same job
Android utilizes an sqlite database engine and it looks like sqlite already offers a conversion utility HERE. The real question would be how to get the data in and out of the phone. Regarding forms, they definitely would need to be custom built.
Click to expand...
Click to collapse
androids sqlite its for applications to access and store data using java code.
try the pocket office app
Freedomcaller said:
androids sqlite its for applications to access and store data using java code.
try the pocket office app
Click to expand...
Click to collapse
Exactly and we're talking about creating an app that would enable manipulation of an sqlite database. Essentially all that would be needed would be to create a ui framework wrapper for the existing api in android. Not the least monumental task I've heard of an individual taking on but not the most either.
The versions of pocket office that I've seen for android do not currently support Access databases as far as I'm aware. If I'm wrong could you post a link and save everyone some trouble?
aaaaaaaaaaaaaaaaaaa
kronos82 said:
Thanks this is deffenetly a start, From what I can tell this looks to be the most promising, It looks like all you would have to do is put a MS Access Database file on your SD CARD and have a program access it. That way you copy it back and forth. Unfortunately it doesn't support Access 2003, but I can save down. I also got a lot of learning to do in programing Java programs.
Click to expand...
Click to collapse
Jackcess library is now patched to support android (will be in 1.2.2 release). Also seems to support 2000, 2003 and 2007 formats now.
Works great for me.
View jackcess site. Couldn't find anything on support for android. I'm using htc desire and would really like to find program to view ms access file. Can you tell me how you do it?
As I remember reading worked as on PC, while writing had some problems.
This forum prevents me from linking directly, but if you click tracker/patches on Jackcess project, check Android Compatibility Fix - ID: 3101578
The changes are in trunk and will be in the 1.2.2 release. I've added some
notes which will eventually make it to the FAQ page on the website
detailing the compatibility steps:
- Set the system property "com.healthmarketscience.jackcess.broken
Nio=true"
- Set the system property "com.healthmarketscience.jackcess.resour
cePath=res/raw/"
- Copy the *.txt, *.mdb, and *.accdb files from the
"com/healthmarketscience/jackcess/" directory in the Jackcess jar to the
"/res/raw" Android application directory.
- Before executing any Jackcess code, set the current Thread's context
classloader, e.g.
"Thread.currentThread().setContextClassLoader(Database.class.getClassLoader())".
Click to expand...
Click to collapse
Until this version (1.2.2) is released you need to build lib yourself.
You also need commons-lang and commons-logging from apache commons.
Before you use Jackcess in Android code, you set
Thread.currentThread().setContextClassLoader(
getClass().getClassLoader());
System.setProperty(
"com.healthmarketscience.jackcess.brokenNio",
"true");
System.setProperty(
"com.healthmarketscience.jackcess.resourcePath",
"res/raw/");
Click to expand...
Click to collapse
and copy those resource files to res/raw
Then you can work as on PC, for example open /sdcard/yourprogram/file.mdb
Jackcess has no GUI, it's a library to read/write access files.
Getting an Access file into Android
I keep a lot of information on a Psion Revo, which has just turned its face to the wall and is giving up the ghost, and have always backed the information up on to my pc as an Access file. It looks easier to get this into a format acceptable to Android by converting the Access .mbx file into an Excel .xls file. This can be searched readily by Column and Values. Maybe this deals with too simple a need for most enquirers to the forum, but if it helps somebody then so much the better.
hi all i have beenlooking for something the same for some time now and just the other day i came accross this site cellica.com
the android app is free and the desktop application has a 5 day trial period or its $50 to buy it works great the only thing you can not do is create a report from the phone
i have emailed support team and they said they will be adding it on in the future.
Any Updates???
I currently build and use databases in MS Access and was wondering if there are any updates on this topic now that Tablets are in use now. Looking to get the Motorola Xoom (2nd version) in the future, but would love to be able to use a program that I would be able to access my MS Access databases while "on-the-go".
Anyone? This would be huge (I believe), since we now have tablets.
Thanks a bunch,
~Kilch~
Access to MS Access by Android
Hi,
I'm also looking to get on-the-go access to my Access databases on my Android HTC Tattoo.
The file is on it, I just need a tool to access it in read-only / search mode, but judging from the previous comments, there doesn't seem to be an oversupply in applications.
The "convert to Excel format" may be OK for me. I want to use a 3 language Access DB (dictionary) on my phone, so I'll try the Excel solution.
It would be nice if we had an ACCESS reader though...
John
Panacea Database
I know XDA frowns upon excessively hawking your own products here, but I do seem to be directly answering more than one of the reply questions, it just happens that the answer is an application my company released.
The Panacea Database application can handle Access from Access 2000 to Access 2007. It has also worked so far on every Access 2010 database we've tested, and we've received no complaints in that department yet. We release updates from time to time as we improve its functionality and features, often guided in our priorities by user e-mail and market comments. Our next update will be focused on improving screen layout for a variety of Android devices - from small QVGA smartphones, to large WXGA tablets. After that we may move onto other functionality.
In the interest of fairness, I'll point out arafa1209's post. He mentions Celicca Database, which is the only other application that I know of that deals with Access databases on Android. It has features Panacea does not have (yet) - ability to work with forms, ability to create and modify databases, ability to connect to your PC etc. Like us, they also send out updates improving their app regularly. So you can compare the apps, and use which one fits your needs better (or use both). If anyone knows of any others they can post here as well, but these are the only two I know of currently.
Just tried Panacea. Although it is more basic and annoyingly doesn't remember the last files you'be opened necessitating finding the file each time you open the app I prefer it for the simple reason you don't have to convert the Access database to another format.
amwebby said:
doesn't remember the last files you'be opened necessitating finding the file each time you open the app
Click to expand...
Click to collapse
If you update the app, this should be fixed, the last version should have this feature.
Got the update last week. Certainly goes a long way to making it more user-friendly. Keep up the great work!
Since the last update it seems to be broken. Although it remembers the last database I cannot open a table within any database.
Edit: It appears the file was corrupted. Loaded a new file and all working again.
Any news in this topic.
I tried panacea Database, works fine. But not very effective. Searching data is a must for me however I didnt manage to find a search option. When I search for tables, it cant even locate the tables by names.

few problems, user fixable or need to wait for update?

Love Windows Phone 7, don't really love the hardware quality of the HD7. There are a few software issue that I am hoping are user fixable and not something I have to wait for an update to address.
1. Search button behavior in Internet Explorer - it irritates me immensely that when you hit the search button on the HD7, it brings up the Google desktop website. Similarly if you enter text in the address bar it searches Google, not Bing. If I wanted to use Google, I'd have kept my Android device. Is there a way to change this yet, and set the T-Mobile USA HD7 to default to the Bing app and not the Google website? Its especially annoying because the results bring you to mobile formatted pages.
2. This is more of a complaint than a fixable issue until copy and paste comes, but I have noticed that the text type recognition doesn't work all the time. In some places if I click an address it goes to Bing Maps but other times it does nothing, it looks like it highlights the word I touch. I haven't been able to find any pattern in which sites work and which don't, but its frustrating.
3. Sometimes when I get a text message the notification sound plays all choppy. It does seem to happen only where service is bad. Is there a fix for this?
4. Office and Skydrive. Maybe I am just retarded but I feel like there should be a way to access my Office files online, specifically through SkyDrive since I can save to it from Office on the computer. Do I have to have a Sharepoint server to do this? Can I really not access my SkyDrive files?
If I remember more I will post.
Also, is there an ETA for Flash?
I have been playing with the skydrive and I added a few files to it to try and see if I could open them on the HD7. The thing is I can open them but have yet to figure out how to open them with Word on the HD7 so that I can edit them and save them back to the skydrive(copy & paste would be nice...meh...soon I hope). But I opened IE and logged into my Windows Live account and I can open anything I have saved on the skydrive, PDFs, word files, excel sheets, ppt presentation, pictures, etc. Now the only issue is editing those files, I haven't tried sending files Word, Excel, etc. to the skydrive and trying to open them on my PC. Will update later with results of further tinkering.
My issues with HD7
Like many people I love this phone but coming from Windows Mobile 6.5 and donw (isn't that weird to say), this phone is really lacking.
1) The Zune software is crap for lack of a better word. No Smart DJ; No Artist photos; no random track play etc. These are not deal breakers but if you came from the Zune HD like me then you'll feel let down.
2) Font Size. It might just be me, but not being able to set a minimal font size is ridiculous. I use the word ridiculous because even my first pocket Pc phone edition in 2001 allowed font resize.
3) No ability to sync my desktop mobile favs. Yes! I know of the work around but wasn't the point of the new OS to avoid all that crap.
4) I want to be able to sync with my local address book. This whole facebook and windows live thing . . . .Look at it this way, if your contacts are based through FB then if one of those contacts cancels their FB acct then you automatically loose all that data. Of course this is not a MS thing.
4) With my HD2 and HTC Sense, I was used to seeing ALL my FB contact photos. Again not an MS thing but . . . .
5) This is really more of a gripe than anything but the battery icon doesn't tell much.How come I can't see exactly how much juice I have left.
6) Unified Inbox, flash, cut and paste. These are all things MS was kind enough to make us aware off so they get a pass on those.
Where is the File Explorer?
c0wb0ycliche said:
Love Windows Phone 7, don't really love the hardware quality of the HD7. There are a few software issue that I am hoping are user fixable and not something I have to wait for an update to address.
1. Search button behavior in Internet Explorer - it irritates me immensely that when you hit the search button on the HD7, it brings up the Google desktop website. Similarly if you enter text in the address bar it searches Google, not Bing. If I wanted to use Google, I'd have kept my Android device. Is there a way to change this yet, and set the T-Mobile USA HD7 to default to the Bing app and not the Google website? Its especially annoying because the results bring you to mobile formatted pages.
2. This is more of a complaint than a fixable issue until copy and paste comes, but I have noticed that the text type recognition doesn't work all the time. In some places if I click an address it goes to Bing Maps but other times it does nothing, it looks like it highlights the word I touch. I haven't been able to find any pattern in which sites work and which don't, but its frustrating.
3. Sometimes when I get a text message the notification sound plays all choppy. It does seem to happen only where service is bad. Is there a fix for this?
4. Office and Skydrive. Maybe I am just retarded but I feel like there should be a way to access my Office files online, specifically through SkyDrive since I can save to it from Office on the computer. Do I have to have a Sharepoint server to do this? Can I really not access my SkyDrive files?
If I remember more I will post.
Also, is there an ETA for Flash?
Click to expand...
Click to collapse
1. Apparently carriers can change the search engine within Internet Explorer, and we can't do anything about it. Once someone gets access to editing the registry, maybe we will be able to change that. BUT I do have some help for you: Search something in Google, and then scroll down to the bottom, find the "Settings" link. Then you can change it to NOT format sites for mobile phones. That should make the experience better!
2. Addresses have to be in a certain format: #### N Street Rd, Zip Code. Like this address, 6362 N Calle Campeche, 85750. If it doesn't have the zip code after the street, it sadly doesn't recognize it. Hopefully they fix that, it's a great feature otherwise.
3. Idk, never had that happen.
4. You can access your Skydrive files and download them to your phone by going to the SkyDrive website (they have a mobile version), but you can't upload any documents from your phone or upload the changes you make in a doc you download. It has been rumored that SkyDrive integration will be implemented at some point.
alabij said:
My issues with HD7
Like many people I love this phone but coming from Windows Mobile 6.5 and donw (isn't that weird to say), this phone is really lacking.
1) The Zune software is crap for lack of a better word. No Smart DJ; No Artist photos; no random track play etc. These are not deal breakers but if you came from the Zune HD like me then you'll feel let down.
2) Font Size. It might just be me, but not being able to set a minimal font size is ridiculous. I use the word ridiculous because even my first pocket Pc phone edition in 2001 allowed font resize.
3) No ability to sync my desktop mobile favs. Yes! I know of the work around but wasn't the point of the new OS to avoid all that crap.
4) I want to be able to sync with my local address book. This whole facebook and windows live thing . . . .Look at it this way, if your contacts are based through FB then if one of those contacts cancels their FB acct then you automatically loose all that data. Of course this is not a MS thing.
4) With my HD2 and HTC Sense, I was used to seeing ALL my FB contact photos. Again not an MS thing but . . . .
5) This is really more of a gripe than anything but the battery icon doesn't tell much.How come I can't see exactly how much juice I have left.
6) Unified Inbox, flash, cut and paste. These are all things MS was kind enough to make us aware off so they get a pass on those.
Where is the File Explorer?
Click to expand...
Click to collapse
1. Yeah, I miss SmartDJ too. I never looked at an artist's pictures however. Their picture does load as a background image, but I know that's not what you're referring to. By random track playing, you mean Shuffle? In the now playing screen, tap on the album art, and then click the shuffle icon.
2. Font size depends on the user of course. I'm good with it as it is, but they should have made an option to change it. Maybe a future update.
3. Eh yeah. I don't use favorites honestly
4. You mean how the HTC Album app in WinMo could access all of your friends online Facebook photo albums, right from their contact card? Yeah I loveeeed that in HTC Sense. I was really disappointed when my WP7 didn't have something like that.
4.2. Umm, if a friend cancels their Facebook account, you don't loose anything that you stored yourself. Just add a contact's info into your Windows Live contacts, it will never disappear.
5. Maybe someone will write a battery percentage app. Idk.
6. I personally can't wait for copy/paste!
7. Microsoft made it decetly clear months ago that there wouldn't be a file explorer.
Thanks for the tips, and I'm really hoping someone figures out how to change the search option. It's annoying when my bosses WP7 (HTC Surround) pulls up the bing app in IE, and mine goes to the Google site. You can remove all carrier and manufacture apps (1 step forward) but can't choose your default internet search while your carrier can (2 steps back.)
Hardware wise, the issues I have are these:
After a couple days, the back and battery color have some discoloration. I don't have particularly dirty or clammy hands, so I don't know why this is. It weirdly also doesn't look like where my fingers actually are, so maybe it's heat related. I've seen similar issues on the Touch Pro and the G2. I think it has something to do with the soft touch material.
There is also a gap between the two pieces of the battery cover. This I have seen on literally every unit I've touched. Mine, my boyfriends, the demo unit at T-Mobile, and the ones at Best Buy.
Likewise, if you press search a little hard, you see like a ripple in the bottom right hand corner. This also was on every device I played with, so it's a general thing.
These things, for me at least, aren't deal breakers, but they are annoying, especially compared to the absolutely astounding build quality of the HD2.
...
anyway.
All of this stuff aside, I must say, my actual general usage experience with the device (again, more WP7 than the HD7 specifically) has been honestly, wonderful.
I've found that in my experience,true to Microsoft's goal, everything just works, and works quickly. Coming from Android (recently, after the HD2 I just couldn't deal with WM6.5) and having had every phone in between (iPhone, Palm Pre, a crap ton of Android phones, even a Symbian phone) I must say that I have had the fewest problems, and most fluid experience of all, on WP7. General usage stuff like calls, texts, e-mail, web browsing, social networking etc. are all just super fast and efficient (with maybe the only exception being Facebook's annoying load time, but its not horribly necessary with the "what's new" section in People. Also, despite some issues (like it taking me a week to realize you can click on the song list under now playing) the media and gaming is hands down the best I've had on a phone.
Ugh, is the T-Mobile HD7 locked into Google?
I thought the whole idea of the Search button was to get quick access to the Bing Search Application. Is this so or is it only the search in IE?
Hoping they'll add a way to change that ASAP.
Jonno2343 said:
Ugh, is the T-Mobile HD7 locked into Google?
I thought the whole idea of the Search button was to get quick access to the Bing Search Application. Is this so or is it only the search in IE?
Hoping they'll add a way to change that ASAP.
Click to expand...
Click to collapse
Only in IE. Press Search from the start screen and it'll work like you expect (opening Bing)
Jonno2343 said:
Ugh, is the T-Mobile HD7 locked into Google?
I thought the whole idea of the Search button was to get quick access to the Bing Search Application. Is this so or is it only the search in IE?
Hoping they'll add a way to change that ASAP.
Click to expand...
Click to collapse
The T-Mobile US variant of the HD7 works like this, in all places other than a) Internet Explorer or b) app that override the search button (like contacts) when you press the search key it bring up Bing. When in IE, it goes to google.com. When in an app with an override, it searches within that app.
c0wb0ycliche said:
The T-Mobile US variant of the HD7 works like this, in all places other than a) Internet Explorer or b) app that override the search button (like contacts) when you press the search key it bring up Bing. When in IE, it goes to google.com. When in an app with an override, it searches within that app.
Click to expand...
Click to collapse
About your part B... that's how the search button is supposed to work, Windows Phone was designed like that. The T-Mobile USA HD7 is only different than other phones in part A.
as a few more days have passed, I also noticed that sometimes the Marketplace will lock up. The phone doesn't, I can still go back to the start screen, use all other apps etc, but when I go into Marketplace again it says loading and then goes back into to start unless I restart the device. Not a big deal, not too common, but still a bug. I think its related to the small freezes while browsing apps when it's loading the icons.
To clarify, you can upload and save your changes to SkyDrive. Simply tap down at the application settings and select synchronize. That will sync any changes with SkyDrive.
Sent from my HD7 using Board Express
Edit: it just works with OneNote.
But I think if you download excel doc from SkyDrive and make changes it will sync with SkyDrive?
Sent from my HD7 using Board Express
c0wb0ycliche said:
as a few more days have passed, I also noticed that sometimes the Marketplace will lock up. The phone doesn't, I can still go back to the start screen, use all other apps etc, but when I go into Marketplace again it says loading and then goes back into to start unless I restart the device. Not a big deal, not too common, but still a bug. I think its related to the small freezes while browsing apps when it's loading the icons.
Click to expand...
Click to collapse
Yep, that's a problem with just about everyone that has an HTC phone. I'm not sure if it affects Samsung and LG too, but I wouldn't be surprised if it does too.

[Q] Few questions before buying an HD7

I'm really thinking of buying an HD7, but im stuck in between a dell streak.
Im using it to replace my cruddy netbook so i'll be luggin a bluetooth keyboard around.
The dell streak can connect with a bluetooth keyboard but can an HD7 do that? cuz it will otherwise be perfect for word processing with the kickstand and office.
You pose a good question but at this early stage it's like comparing apples to oranges. The HD7 right now is just a phone, literally. The Dell streak is really a tablet and full featured.
There are a million threads all over the forum about pro's and con's of the HD7. I would suggest glancing through those threads to see if any of the attributes apply to you.
How about you wait for gingerbread tablets coming out next year or maybe a honeycomb one t0o
iphonepimp said:
cuz it will otherwise be perfect for word processing with the kickstand and office.
Click to expand...
Click to collapse
You should also check how easy it will be to get the Word document on/off the phone. From what I read the document has to be upload to your Skydrive account first. And the mobile Skydrive page loaded in IE, not the Office hub, from where the Word document is opened. And, I may be wrong, any edits are NOT saved back to Skydrive. I'm sure I read this but hope I'm wrong.
I'm guessing editing documents will be a lot easier on Android as you'll have direct / easier access to your Google Docs.
Mujja said:
You should also check how easy it will be to get the Word document on/off the phone. From what I read the document has to be upload to your Skydrive account first. And the mobile Skydrive page loaded in IE, not the Office hub, from where the Word document is opened. And, I may be wrong, any edits are NOT saved back to Skydrive. I'm sure I read this but hope I'm wrong.
I'm guessing editing documents will be a lot easier on Android as you'll have direct / easier access to your Google Docs.
Click to expand...
Click to collapse
microsoft have moved my Live office to skydrive, so now all my office live documents will be saved in my skydrive now...

[Q] "Complete" Word Processor for G-Tab

I have both DocumentsToGo, and QuickOffice on my G-Tab. DocsToGo will let you open a Word Doc, but when you go to edit, it opens a new edit dialog with the previous sentence (at most) visible. It does not seem to allow you to edit many formatting options, and I can't see any way to use it to insert an image file into a document. QuickOffice lets you edit inline, but otherwise seems to have the same limitations.
Is there a "complete" word processing program for the G-Tab that will let me do some formatting and insert pictures, as well as produce a .DOC or .DOCX compatible file?
Is there some way to setup Google Docs like this, and have it be available if I don't have a connection (maybe through dropbox)?
TIA!
I'm using the QuickOffice HD from the Notion Ink Adam and it works great!
It's available via this thread:
http://forum.xda-developers.com/showthread.php?t=928832
Right now, the current version lets you connect to Google Docs and both edit AND create new documents (Word, Excel, PPT) as well as read PDFs
You could easily open a document up and re-save it internal to your gTablet for offline use -- or as you suggest use Dropbox to keep a local folder synced up for offline use...
Google only recently added support for the XML office files to GDocs -- so creation of new documents in those formats isn't natively supported in this version (but may be available in a newer version of QuickOffice HD I suppose)
Long Pressing in a Word document brings up a dialog with the following options:
- Add Image from Gallery
- Add Image from Camera
- Select Text
- Input Method
You can also change Fonts (inc. set Bold, Underline, Italic, etc), Alignment, Colour...
I think that just about meets your requirements (?) -- give it a try...
+1 for quickoffice tablet addition from notion ink. Works great for me!
OK, have given it a try. To begin with, I feel a little odd using it since I can't find the HD version in the market, so have to wonder if it won't up and die on me at some point.
In any event, I was able to insert and resize a picture, but couldn't find any way to select just the picture so I could try to center it. Selection handles seem a bit difficult to operate. Also could not find any way to edit my headers or footers, or to apply my document styles for chapter hearings.
Tool may support all this, but the online help isn't the greatest either. Half tempted to register and see if there have been any updates.
FWIW
The HD version is great. Use it for my college classes and I love it. Have the USB case and this and ur good to go. Being integrated with google docs and dropbox is a nice feature too
Sent from my Evo 4G using Tapatalk Pro
I just side loaded the Notion Ink Quick Office app, but I can't for the life of me figure out how to create a document. Am I supposed to create a Google Docs account or something? Or should I just be able to create a document on my G tab?
goog64 said:
I just side loaded the Notion Ink Quick Office app, but I can't for the life of me figure out how to create a document. Am I supposed to create a Google Docs account or something? Or should I just be able to create a document on my G tab?
Click to expand...
Click to collapse
I think you click the app (e.g., word), then select SDCARD, then press the small + at the bottom, which will popup file or folder choice.
Jim
Got it, thanks. Very cool!
Wow i must say the Quickoffice HD is way better than my DocstoGo full at this moment. Wasted my money on Docstogo...
I like the ported canvas app as well.
This seems to be much better than doctogo.
It asked about registering it do I need to?
Nope it's optional.
Sent from my Evo 4G using Tapatalk Pro

[Q] Need gradebook/spreadsheet app

No responses when it was first posted in the general android section and got swallowed up quickly by the other threads.
Does anyone know if there is an app that would act like a gradebook/spreadsheet function?
I'm a school teacher, and have been using a gradebook to mark completed tasks. For example, when doing the 1.5 mile, it takes each student 3 laps around the school to complete. So as they pass, I put a check by their name. However, I'd like to ditch carrying around the paper and pen. I could create a spreadsheet and upload to docs but I'd like something that's already pre-existing so I don't have to spend a ton of time creating it. Plus it'd be a pain unclicking checks or entered data for each reoccurring class.
I don't know about a gradebook, but there are tons of spreadsheet programs. Docs to go, quick office just to name a few. The stock ROM had Polaris office, I never looked to see what it did.
Unfortunately the programs that will edit the sheets seem to be pay versions. You could also do a notepad, but you would have to transfer that back into your computer later.
Another thought: Google docs. I have played with word docs, but not spreadsheets, Google docs may work for you, for free.
Sent from my LG Thrill Faux G
I have the paid version of word docs/spreadsheet/ppt/etc and google docs would work. I thought about that but I'd still have to enter all the names and everything manually...that seems like more work for trying to get out of work.
What I need is way to copy and paste my attendance sheets onto an excel sheet and have it be editable. Is that even workable?
That should be workable several ways. Create the spreadsheet on the computer and use USB, dropbox, an email "draft", or Google docs to open and edit the document on your phone.
If you use USB to copy you can edit with the office app, then copy back over USB. If you use dropbox with a folder on your computer you should be able to edit it, and save it on your phone, and the copy on your computer should automatically update. Google docs would be similar except you would need to download the file.
Sent from my LG Thrill Faux G
Alright! Thanks for the suggestion. I'll work on it this weekend.
I wonder sometimes if with all the technology we don't end up making things more difficult on ourselves while trying to make things easier.

Categories

Resources