Costs Keeper (Update to version 2.0.0.4) - Windows 8 General

EDIT: Removed

I'll try it out now then.
Could you do an app for managing and working out my car's fuel mileage like "Road Trip" for iOS?
What are the requirements to become a developer for the Windows App store?

Anonymously_Unknown said:
I'll try it out now then.
Could you do an app for managing and working out my car's fuel mileage like "Road Trip" for iOS?
What are the requirements to become a developer for the Windows App store?
Click to expand...
Click to collapse
I use an excel spreadsheet for this purpose.

stevedebi said:
I use an excel spreadsheet for this purpose.
Click to expand...
Click to collapse
I do this too. The issue is that I sometimes find it annoying to keep adding new rows each time I need to make a new entry.

Anonymously_Unknown said:
I do this too. The issue is that I sometimes find it annoying to keep adding new rows each time I need to make a new entry.
Click to expand...
Click to collapse
The only column that needs a formula is the one that actually calculates the MPG. I use a formula there that keeps the values hidden until I fill in the date (avoids the zero or "/div!" coming up when there are no values). Then I simply copy that formula down for a hundred rows or so. Thus I only have to fill in the next date - not add rows.
This is formula for the MPG column:
=IF(ISBLANK(A1),"",B1/C1)
The "A" column contains the dates, the "B" column contains the miles driven, and the "C" column contains the gallons put into the tank.

It seems like a really neat and useful application for people who need to balance things. I'll be sure to check it out in the morning. Great job!

EDIT: Removed

Anonymously_Unknown said:
What are the requirements to become a developer for the Windows App store?
Click to expand...
Click to collapse
Buying a developer license from Microsoft

will try this asap and report feedback, thank you for sharing.

EDIT: Removed

EDIT: Removed

Related

[APP][2009-08-17] Departure - get & filter train departures for german stations

Departure
I've created this little application for my own needs and thought maybe someone likes it too.
The main purpose is to get the latest departures for specified train stations and filter the ones you want to see.
Download at http://departure.codeplex.com
Current Version: 0.5.3 (Released 17 Aug 2009)
Features:
unlimited number of stations
each station has its own filters
filter by train name, train direction, station platform
countdown for selected departure
shows if a train is late
kinetic scrolling
FAQ:
How do I use the filters?
You need to seperate them using a ";".
Why I can't see Train XYZ?
First make sure you selected the transports for this station.
Check that you set up the filters correctly.
The data the tool retrieves is only available for the next hour.
How to use the webservice?
This is currently tested by some friends and myself.
If it works well I might open it to all.
How can I add my country?
This is currently not possible but in a future version I will add plugins for other data sources.
It would be a great app for french users especially at the moment since we've got a rude strike lol
Bingoig11 said:
It would be a great app for french users especially at the moment since we've got a rude strike lol
Click to expand...
Click to collapse
Same here in Germany - crazy days
Is there a source where I could get this information from?
Deutsche Bahn has released an ultimate java tool for all trasportation in Germany (and possibly beyond) some time ago: DB Railnavigator. http://www.bahn.de/p/view/planen/reiseplanung/mobileservices/railnavigator.shtml
Great app! Specially for me that i travel a lot from Barcelona to Berlin, and i have to use the train to go from the airports to my place and viceversa.
I will use it for sure each time i travel to Germany.
What would make it perfect is the feature to calculate the arriving time to a place such as the airport (SXL-Schoenefeld) as some german or berliner web site does.
do you think is possible to include this feature in your planning? or too much difficult?
thanks a lot for this handy tool.
When trying to refresh the info.
i get this message:
An error occurred
No departures found
of course i have connection, and i've setup 4 stations and marked the transports
any ideas?
thanks in advance
fourcc said:
When trying to refresh the info.
i get this message:
An error occurred
No departures found
of course i have connection, and i've setup 4 stations and marked the transports
any ideas?
thanks in advance
Click to expand...
Click to collapse
Can you send me the content of your settings.xml in a private message?
Thanks
New version is out -> 0.2.0.1
See first post.
Using Departure now for two days and really enjoying its simplicity and usefulness.
Good job!
new release - check the first post
Does anyone know why the thread subject doesn't update even the subject for the first post is changed?
Wow, this is probably going to be the most usefull application on my new Touch HD!!!
Thanks a lot for the great program!
/Tommi
thomasschaz said:
Wow, this is probably going to be the most usefull application on my new Touch HD!!!
Thanks a lot for the great program!
/Tommi
Click to expand...
Click to collapse
Let me know how it works on a WVGA device. I never tested this.
Hi Marc,
I tested all functions and everything works perfect.
Only the list scrolling is a bit rusty but that does not affect the usability.
I had a look into your code for the KLIstControl and ctrlStationItem to compare to functionality with the fingerflick list I am currently writing
I had quite a speed improvement when I changed the rendering from not render every item everytime the list refreshes but instead copy the items that moved down/up to a 2nd buffer in a with a copyRect and only render the new items that appear on the top or bottom and the selected items. Perhaps you can integrate that too. Or if you have a better solution for speed up, let me know
/Tommi
thomasschaz said:
Hi Marc,
I tested all functions and everything works perfect.
Only the list scrolling is a bit rusty but that does not affect the usability.
I had a look into your code for the KLIstControl and ctrlStationItem to compare to functionality with the fingerflick list I am currently writing
I had quite a speed improvement when I changed the rendering from not render every item everytime the list refreshes but instead copy the items that moved down/up to a 2nd buffer in a with a copyRect and only render the new items that appear on the top or bottom and the selected items. Perhaps you can integrate that too. Or if you have a better solution for speed up, let me know
/Tommi
Click to expand...
Click to collapse
Using your method might be faster but I assume that it will consume more memory if you keep the already rendered items in a buffer.
Hi Marc,
sorry for my missleading explanation. I did not mean buffering every Item, but using a second buffer for the list (e.g. m_backBuffer2 in your case) and then copy the old items from the m_backBuffer to m_backBuffer2 to their new position after scrolling (in one copyrect) and then only render the new item/selected items to m_backBuffer2. Afterwards use the m_backBuffer2 to bring it to the usercontrol's graphics container.
/Tommi
thomasschaz said:
Hi Marc,
sorry for my missleading explanation. I did not mean buffering every Item, but using a second buffer for the list (e.g. m_backBuffer2 in your case) and then copy the old items from the m_backBuffer to m_backBuffer2 to their new position after scrolling (in one copyrect) and then only render the new item/selected items to m_backBuffer2. Afterwards use the m_backBuffer2 to bring it to the usercontrol's graphics container.
/Tommi
Click to expand...
Click to collapse
Now I got it.
If you want you can join the project. I am always open to get help.
MarcLandis said:
Now I got it.
If you want you can join the project. I am always open to get help.
Click to expand...
Click to collapse
Thanks for the offer! But unfortunately I am currently completely filled up with my own small projects and work, so I don't think I'd have much spare time to do a real contribution.
/Tommi
This also would be nice for your neighbour holland
I could do some dutch translation, and i think this is the site you would get your info from http://www.9292ov.nl.
(the iphone already got the app (with gps support), but they don't care about WM )
It would be great if you considder it
Greetz,
Re-Mi said:
This also would be nice for your neighbour holland
I could do some dutch translation, and i think this is the site you would get your info from http://www.9292ov.nl.
(the iphone already got the app (with gps support), but they don't care about WM )
It would be great if you considder it
Greetz,
Click to expand...
Click to collapse
Looking at that site I can't find an option to show just the departures of a train station.

Developing new application, need help/suggestions

MAJOR EDIT: Started over, I need fresh ideas!
I'm bored, I got Basic4PPC andI want to make a little freeware app. Seeing how much people wanted another unit converter, I dropped the towel before entering the shower (pushing the metaphor to far...) and decided to consult the experts.
What would be THE best idea for a Pocket PC application? I was thinking about a small app to launch many applications from a single hardware button with some cool UI and all, but it's been down quite a couple of times.
I don't think that a unit converter can be sold easily... I mean: I don't need it, and if I would: there are so much freeware alternatives.
And about your goals:
- only one file... why?
- Try to make it modulair: easier to extend
sounds like a good idea, but why not have currency converter, in fact what would be a cool idea is if it can download a table of exchange rates on startup so that it gives you an accurate conversion figure.
Rhapsody said:
I don't think that a unit converter can be sold easily... I mean: I don't need it, and if I would: there are so much freeware alternatives.
And about your goals:
- only one file... why?
- Try to make it modulair: easier to extend
Click to expand...
Click to collapse
I agree, who would buy a unit converter... for instance I use google to convert for me on my phone. Easy and fast to use. I don't really know why I would need to convert a number fast.
I chose a unit converter for ease of use, but since the project is a day old or so, it's the right time to tell me what to make!
N1c0_ds said:
I chose a unit converter for ease of use, but since the project is a day old or so, it's the right time to tell me what to make!
Click to expand...
Click to collapse
No I think if you want to make something which you want to sell, you have to come up with the ideas yourself
I think you start at the wrong side. First think about what you want to make (what are you missing at the moment on your phone?), then try to create it and when it's finished you can always decide what to do with it. (shareware or freeware).
The thing is that most of the things are already available freeware.
I don't quite correspond to the typical PDA user. I'm 15 years-old, part time worker...
I can get ideas myself, but I can't really know what the average user wants. The best thing I can of right now would be a hardware button launcher.
When you'd press the button you'd be presented a big touch keyboard from which you could filter the available apps. It would launch the app then close itself. Good or no good?
Timesheet application?
Well, since you asked... This is the only app I used on my old palm device that I have not been able to replace on my PPC. It is a simple timesheet program that allows the user to record time spent on definable projects.
I have tried several of the commercial programs out there and they are all too complex or geared more for billable time and invoice generation. I just need something simple. The PALM program was freeware and can be seen here.
If you are interested in giving this a try I will be glad to give some more details on the desired functionality. The PALM program was not 100% of what I needed, just the best fit from what I could find.
Interesting. I actually made something similar in one of my Palm apps (which was never finished because I switched to WM).
I'll have a look at that. I'll try it as a filler, waiting for a great project.
P.S.: your themes are awesome!
That would be wonderful! The biggest things I would need are below:
Multiple projects with name and number (13 digit)
Ability to delete project from available list but keep past history
Day and Week summary view reports
Easy selection / clock in / clock out on main screen
Those are the main things. There are lots of ways to do this and I have ideas, but part of the fun of coding is UI design and code structuring. If you decide to take this one please let me know. I will be very happy to test for you.
Woah, calm down, I'm only about to complete the table. It looks like the screenshots for Timesheet right now (without final total, project selection and "today" button).
what about an app that can install automatically and in silent mode a big list of cabs. we should just have to select the destination : phone storage or sdcard. it would make reinstalls easier after rom updates .....
perhaps it already exist, i don't know ...
PROGRESS!!!
The thing is now useable! It saves date, in time, out time and calculates the difference between the two. When you exit it save your current data to load it when you launch.
Looks like this:
Date In Out Time
08/08/2008 17:15 17:20 00:05
And it adds one row for each in/out.
Sample coming soon.
kaiser47 said:
what about an app that can install automatically and in silent mode a big list of cabs. we should just have to select the destination : phone storage or sdcard. it would make reinstalls easier after rom updates .....
perhaps it already exist, i don't know ...
Click to expand...
Click to collapse
Interesting idea, but I doubt people would pay for it.
CAB File!
Here's the working version. It yet has to show total time, money owed and all, but that's a good start!
Does anyone know a better CAB making app? This one sucks.
N1c0_ds said:
Interesting idea, but I doubt people would pay for it.
Click to expand...
Click to collapse
basically exists as user customisation... a new thing where cabs from storage card can be installed if u basically make an xml file with links to all the needed cabs
N1c0_ds said:
Here's the working version. It yet has to show total time, money owed and all, but that's a good start!
Click to expand...
Click to collapse
I am impressed. Then again, I don't have a WM dev environment. It is running fine so far on my P4300 WM6. Thanks for taking this on! There is nothing out there right now that is simple and clean.
I'm about to cancel all that crap right now. After a hard day of work, it was all made useless because Basic4PPC can't freakin' handle tables as it should. Thus instead of getting the standard plain white tables with grey headers, I get some ugly dark gray filling where there is no data. Then thing get even uglier when scrolling is needed. That kind of crap is enough to make me quit.
Unless you guys can get me something actually worth its price, forget about my app, I'm too pissed off to continue and all the files went straight to the bin.

[Q] Microsoft Word? View & Edit?

Hi all,
I am looking at purchasing either a netbook, or this Acer Iconia Tablet. One reason I am buying either of these is for viewing and editing/creating word documents. Obviously this can be done on a netbook, but can this similarly be done using this/any android tablet?
I have read about Documents to Go app however not fully aware of the functionalities etc (are you able to create new documents?). If yes, is the editing and viewing of the documents on the app/tablet good, i.e. easy? (with a USB keyboard)?
I'm not interested in the full editing found in desktop PC's or anything, just the basic write, read, edit, create.
Thanks for your time, appreciate all input.
Sent from my GT-I9000 using Tapatalk
I use Documents to Go on my Iconia, very pleased with it. Thus far, I haven't found anything of substance that I can't do. I have a Bluetooth keyboard, but rarely use it.
I got docs to go and it has been able to do everything I need so far. I have only edited my resume on it, but it has worked perfectly. I also set up my printer to use with my tablet.
Ok thank you very much for your fast responses! Are you able to create a new document? or are you only able to edit other documents already on the device?
Sent from my GT-I9000 using Tapatalk
i use quick office hd version, it's customized for the honeycomb and works well
beaver2233 said:
Hi all,
I am looking at purchasing either a netbook, or this Acer Iconia Tablet. One reason I am buying either of these is for viewing and editing/creating word documents. Obviously this can be done on a netbook, but can this similarly be done using this/any android tablet?
I have read about Documents to Go app however not fully aware of the functionalities etc (are you able to create new documents?). If yes, is the editing and viewing of the documents on the app/tablet good, i.e. easy? (with a USB keyboard)?
I'm not interested in the full editing found in desktop PC's or anything, just the basic write, read, edit, create.
Thanks for your time, appreciate all input.
Sent from my GT-I9000 using Tapatalk
Click to expand...
Click to collapse
I also use docs to go. I love it. You can create new docs...but it should be noted you need paid version to edit/create. You prob already knew that
gmpdmd said:
I also use docs to go. I love it. You can create new docs...but it should be noted you need paid version to edit/create. You prob already knew that
Click to expand...
Click to collapse
Hehe yeah sure did. Thanks heaps everyone for your replies gah now decision time, Toshiba nb550d netbook or the iconia... :/
Sent from my GT-I9000 using Tapatalk
What about google docs, I think its pretty nice having my documents in the cloud.
I can't read maths equation on my tab no matter what apps I use. Any suggestion?
dhruvmp said:
What about google docs, I think its pretty nice having my documents in the cloud.
Click to expand...
Click to collapse
Docs to go will work with your google docs, but the google docs app is pretty craptastic itself.
How about a decent software keyboard? One that has 5 rows for a change for those damn numbers.
All keyboards I've seen are simply mobile ones scaled up. They just won't do.
Bec07 said:
How about a decent software keyboard? One that has 5 rows for a change for those damn numbers.
All keyboards I've seen are simply mobile ones scaled up. They just won't do.
Click to expand...
Click to collapse
Been using Tswipe-Pro. It's free (with a minor nag once in blue moon) customizable (size, type, color) with T9 up top along with number keys and cursor keys as well.
I also concur on the Google Docs app. For viewing, everything else is better. But you can do edits in GDocs, I suppose. I think I missed the big 50% off sale for Docs to Go too--the free app included is good enough for referrence checks for me.
Bec07 said:
How about a decent software keyboard? One that has 5 rows for a change for those damn numbers.
All keyboards I've seen are simply mobile ones scaled up. They just won't do.
Click to expand...
Click to collapse
Hackers Keyboard, available in the Market.
gtriever said:
Hackers Keyboard, available in the Market.
Click to expand...
Click to collapse
1+ Been using this for about a week!
Both look awesome!
Nothing compares to MS Word or even OpenOffice.
All the Android office apps have major features missing and problems displaying certain things correctly.
For casual use it's ok, but if this is a major part of your work then I'm afraid an Android tablet wont do it for you.
I have used Docs to go and Quick Office HD. Quick Office HD works better and is the only one I have found that show headers and footers in word docs. Also it works with Dropbox so I sync my work docs and can see and edit them if need be.
Maddmatt said:
Nothing compares to MS Word or even OpenOffice.
Click to expand...
Click to collapse
I beg to differ.
Open office, office 2010 and 2007 just don't display right on earlier versions and unfortunately many institutions don't bother updating since a plug-in is enough for docx or pptx.
I've found open office to misalign lines in pptx over and over again.
Since things don't shine on PCs either and you always have to worry a little about the target device, I thing a tablet is perfect for content creation.
You can always set the paragraphs straight and change styles at home in 2 minutes.

[Q] Screen View - Java ADT Eclipse

Hello, I am developing my very first app using the latest Android bundle (SDK + Eclipse included). I also installed LibGDx since it will be a game. Upon following some tutorials online it dawned on me, how the hell can I SEE what I'm doing? Meaning I have no room/screen view. So when I render an object onto the screen I just have to wing it when it comes to where it should start on the screen. This is obviously not a good way to make games, its kinda tedious. Precise placement of objects as in "Angry Birds" will be very hard. I'm well aware of emulation but that only shows things after the fact. There has to be a way to do it, maybe a plugin or something? Being able to drag/drop and interact with objects on this screen w/out code would also help a lot. Much thanks!
Eclipse shows the layouts at runtime. You don't have to run it on the emulator each time to manage layouts. Double click on the layout file and it will open in a side view. At the bottom, there will be 2 options, viz Layout.xml and Graphical Layout. Choose Graphical Layout.
EatHeat said:
Eclipse shows the layouts at runtime. You don't have to run it on the emulator each time to manage layouts. Double click on the layout file and it will open in a side view. At the bottom, there will be 2 options, viz Layout.xml and Graphical Layout. Choose Graphical Layout.
Click to expand...
Click to collapse
Thanks for replying, but I should've mentioned that I'm aware of this. This view only shows things I drag and drop onto from the same window. It doesn't show anything rendered in the code from other classes. So anything important like the main characters aren't there. Is there perhaps some way to make them show up in here?
Android3000 said:
Thanks for replying, but I should've mentioned that I'm aware of this. This view only shows things I drag and drop onto from the same window. It doesn't show anything rendered in the code from other classes. So anything important like the main characters aren't there. Is there perhaps some way to make them show up in here?
Click to expand...
Click to collapse
Layouts managed by code isn't showed. Only the xml layouts are show up.
EatHeat said:
Layouts managed by code isn't showed. Only the xml layouts are show up.
Click to expand...
Click to collapse
This is what bothers me. How in the world am I suppose to develop complex levels and what not without being able to see placement of things live? I can't imagine trying to make angry birds or something like that by only having coordinates and no visuals. So there isn't any add-on or plugin that can provide such capabilities?
There isn't any official visual level editor by LibGDX.
But maybe you find an Editor that saves your level in xml or sth. and you can parse that xml in ur LibGDX-App. I wrote my own Level-Editor specially for my LibGDX-Game and it wasn't so hard to code.
Regards
Android3000 said:
This is what bothers me. How in the world am I suppose to develop complex levels and what not without being able to see placement of things live? I can't imagine trying to make angry birds or something like that by only having coordinates and no visuals. So there isn't any add-on or plugin that can provide such capabilities?
Click to expand...
Click to collapse
Not that I know of. You can just create the whole layout in xml to get it correct first. Then use those coordinates in your code accordingly.
Apparently various types of 3rd party apps do exist for this task . Thanks for the help guys.
just try another game engine

[Q] Advice regarding optimizing app performance since it consists of lots of views.

Hey guys, I'm an amateur at android development and this is my first app. I'm trying to make an app which you could basically think of like a book. It will consist of verses from a certain scripture one verse per screen, the screen will have the verse in it's original language "sanskrit", and these three things: 1 it's meaning in english, 2. it's meaning in hindi, and 3. the word meaning of each of the sanskrit words in hindi and english. I want these three things inside a tabhost.
Now the scripture has like 500 verses divided into 18 chapters. Each verse is like 10 words long. So there will be like 500 different views (if that's the right word for it... what I mean is 500 "screens" if that makes any sense) What I've done till now is, I made a sliding drawer that would take you to one of the 18 chapters. Now choosing one of the chapters will take you to a fragment, in which there will be a viewflipper, and it will consist of the verses in that chapter and a title page for that chapter which will consist of links to each of the verses. (I've done everything upto here there's just one sample chapter and 2 sample verses and it works fine) Also in the actionbar there will be a dropdown menu kind of thing clicking on which will give a list of verse numbers, and you can navigate to any verse from there. (I haven't done that yet)
So the thing is, 500 verses, 500 "views" (if i'm using that correctly) I don't know if that will make the device slow or what. I wanted to know am I using the right tools for it? Like the sliding drawer, fragment, tabhost, viewflipper? And the way I've structured the app, what do you feel about that? Will doing it differently could make it faster? I haven't had any problem yet with 1 chapter and 2 verses, I'm going to try adding a bunch of sample chapter and verses and see how it affects the performance. Still I just wanted to know ahead of time if I'm making any huge mistake in using one of the tools that I'm using.
I'd really really really appreciate if someone would take his/her time and give some valuable advice. Thanks in advance.
EDIT: So initially I was planning to have minSdkVersion = "11" and targetSdkVersion = "21", but if that would be impossible due to the large number of verses, I might reconsider that. And I'm using Eclipse to code, and AVD (Android Virtual device) manager to test the app.
EDIT: Also, using maybe sqlite to get the verses (I've just heard a bit about it never used it), would that help?
I'm just replying because I would like to know the same thing...
It shouldn't make your app slow if you're managing View's lifecycle properly. Basically you need to make sure that you're reusing views instead of creating new ones, same thing for Fragments (take a look at android.support.v4.app.FragmentStatePagerAdapter).
surlac said:
It shouldn't make your app slow if you're managing View's lifecycle properly. Basically you need to make sure that you're reusing views instead of creating new ones, same thing for Fragments (take a look at android.support.v4.app.FragmentStatePagerAdapter).
Click to expand...
Click to collapse
Okay so you mean when one navigates to a view it should not create a new view but it should reuse the existing ones? I actually made the sliding drawer (which navigates to the chapters) from a tutorial titled "android sliding menu using navigation drawer" (can't post links since me a newbie here ), I hope they managed View's lifecycle properly. And I'm using ViewFlipper to navigate between verses in individual chapters. So I hope that would be okay.
And I haven't used Sqlite but I vaguely know what it does. Will using that to extract the verses from a database then displaying them be of any help? Would it make the app any faster?
Thanks a lot for your help man, really appreciate it. :good::good:
kumar935 said:
So I hope that would be okay.
Click to expand...
Click to collapse
Just give it a try, man. You will never know till you have it tried. Implement, test, improve. Don't be a victim of premature optimization . Good luck!

Categories

Resources