PPcBank v1.00 Finanzmanager-Programm

D

Deleted member 103

Guest
Hi,

Today, I would like to make aviable my application "PPcBank" for all.
PPcbank is a financial manager with it is possible to manage all bank account (but not really all).
This application is completely on the PocketPC MDA-Pro developed and is of course also for the MDA-Pro.
This shows again how powerful Basic4ppc can be.

What doesn't exist now:
1. More than just one currency, currently only the euro
2. A help file
3. More than one language, currently only German

Who want and has the time,can also develop the program.
I hope to get a lot of suggestions and improvements.

The complete source code with bank account examples is in it.

Ciao,
Filippo
 

Attachments

  • PPcBank_v1.00.zip
    292.8 KB · Views: 617
  • Bild_1.jpg
    Bild_1.jpg
    19.6 KB · Views: 610
  • Bild_2.jpg
    Bild_2.jpg
    20.2 KB · Views: 475
  • Bild_3.jpg
    Bild_3.jpg
    15.3 KB · Views: 489
  • Bild_4.jpg
    Bild_4.jpg
    23.6 KB · Views: 452
  • Bild_5.jpg
    Bild_5.jpg
    24.8 KB · Views: 412
  • Bild_6.jpg
    Bild_6.jpg
    16.5 KB · Views: 412
D

Deleted member 103

Guest
109 times downloaded and not a single comment?

Neither good or bad?:confused:
 

Cableguy

Expert
Licensed User
Longtime User
I never even noticed this before, sorry Filippo..
The truth is that I AM looking for something like this for a while, so if you can put the textes in englis, at least, I will have a go with it and comment..
 

snoman

Member
Licensed User
Longtime User
Eine prima Leistung, besten Dank Filippo!
Well done Filippo!

Did you already started the translation into English or do you need a hand doing that? Let me know. I think, thats a chance to give back some of what u gave us.

And by the way: I'd really like to add some funcs to your prog, i.e. debit calculation, effective interest and other useful stuff when dealing with credit offers and personal financial planning. Your project could be a propper host for that.

Is that ok for you?

so short
snoman
 
D

Deleted member 103

Guest
Hi snoman,

vielen Dank für dein feedback.
Nein, ich habe es noch Englisch übersetzt, du kannst aber gerne anfangen.
Du kannst auch zusätzliche Funktionen hinzufügen.

Thanks for your feedback.
No, I have yet translated English, but like you can start.
You can also add additional features.


Ciao,
Filippo
 

snoman

Member
Licensed User
Longtime User
Hi snoman,

vielen Dank für dein feedback.
Nein, ich habe es noch Englisch übersetzt, du kannst aber gerne anfangen.
Du kannst auch zusätzliche Funktionen hinzufügen.

Thanks for your feedback.
No, I have yet translated English, but like you can start.
You can also add additional features.


Ciao,
Filippo

Sorry man, havnt replied for ages... :)

So, I started developing a "Lohnrechner" (Salary Calculator) for Germans, incl. Firmenwagenberechnung and that kinda stuff. and some finance analytics stuff. Mainly I'm doing nothing else than putting my excel formulas into your code + some forms.

I give you an early beta at the end of january.

What do you think of putting some stocks portfolio functions in, i.e.: paying monthly rates onto an fonds account and additionally give user the chance to valuate that by getting online rate from the stock market?

Shared creations like "fgaktien" or "ngstocks" already have coded such procedures. Perhaps it's worth a message. just to think about.

best
snoman
 

Ida

Member
Licensed User
Longtime User
Hi Filippo,

gratuliere zu Deinem Programm! Sieht auch toll aus.
Habe es aber leider nicht geschafft zu kompilieren.
Es kommt eine Fehlermeldung:

Zeile 472: Unknown control type ...

Leider bin ich noch nicht so weit, dass ich etwas ändern kann.

Mache ich etwas verkehrt?

Danke und Gruß

Ida
 
D

Deleted member 103

Guest
Hallo Ida,

vielen Dank für komplimenten.:)

Kannst du auch schreiben bei welcher Control es abbricht?


Ciao,
Filippo
 

Ida

Member
Licensed User
Longtime User
Hallo Filippo,

Hallo Ida,

vielen Dank für komplimenten.:)

Kannst du auch schreiben bei welcher Control es abbricht?


Ciao,
Filippo

wie ich schon schrieb:
Zeile 472: ... control(controlName).count -1

Ida
 

klaus

Expert
Licensed User
Longtime User
Hallo Filippo und Ida,
Das Problem liegt in der Control Funktion.
Zum Beispiel Zeile 472 muss so aussehen:
B4X:
[FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]Control[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2](ControlName,ComboBox).count-[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080]1[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]
und nicht so:
B4X:
[FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]Control[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2](ControlName).count-[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080]1[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]

Gemäss dem Helpfile:
Control keyword allows you to access a control using a string instead of its name.
The Control keyword can be used with objects as well.
Syntax: Control (Control Name [,Type])

As of version 6.00, the compiler may ask you to specify the control's or object's type.

Der optimized Komipler ist in diesem Bereich etwas strikter als der non optimized Kompiler und verlangt für mehrere Controls die Angabe dessen Types.

Das gleiche Problem tritt in etlichen anderen Zeilen auf, auch in den txt Dateien. Zum Beisliel Zeilen 473, 326, 327, 5555.

Beste Grüsse.
 
D

Deleted member 103

Guest
Hallo Ida,

wie ich schon schrieb:
Zeile 472: ... control(controlName).count -1
tut mir leid, ich habe es übersehen.:sign0013:

Es ist aber genau so wie der Klaus schreibt, er ist nur etwas schneller als ich gewesen.:BangHead:


Ciao,
Filippo
 

Ida

Member
Licensed User
Longtime User
Danke Klaus für Deine Antwort!

Hallo Filippo und Ida,
Das Problem liegt in der Control Funktion.
Zum Beispiel Zeile 472 muss so aussehen:
B4X:
[FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]Control[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2](ControlName,ComboBox).count-[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080]1[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]
und nicht so:
B4X:
[FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff][FONT=Courier New][SIZE=2][COLOR=#0000ff]Control[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][FONT=Courier New][SIZE=2][FONT=Courier New][SIZE=2](ControlName).count-[/SIZE][/FONT][/SIZE][/FONT][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080][FONT=Courier New][SIZE=2][COLOR=#800080]1[/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT][/COLOR][/SIZE][/FONT]

Gemäss dem Helpfile:
Control keyword allows you to access a control using a string instead of its name.
The Control keyword can be used with objects as well.
Syntax: Control (Control Name [,Type])

As of version 6.00, the compiler may ask you to specify the control's or object's type.

Der optimized Komipler ist in diesem Bereich etwas strikter als der non optimized Kompiler und verlangt für mehrere Controls die Angabe dessen Types.

Das gleiche Problem tritt in etlichen anderen Zeilen auf, auch in den txt Dateien. Zum Beisliel Zeilen 473, 326, 327, 5555.

Beste Grüsse.


Habe in den Zeilen 472,473,326 und 327 ComboBox dahinter geschrieben.
Die Zeile 5555 finde ich aber nicht ...

Was bedeutet denn "in den Textdateien"?

Ich mühe mich wirklich, aber ich bin doch noch Programmier-Anfängerin.

Was soll ich nun weiter machen?

Danke für Hilfe

Ida
 

Ida

Member
Licensed User
Longtime User
Hallo Filippo,


Hallo Ida,


tut mir leid, ich habe es übersehen.:sign0013:

Es ist aber genau so wie der Klaus schreibt, er ist nur etwas schneller als ich gewesen.:BangHead:


Ciao,
Filippo

Vielleicht wäre es für mich Anfängerin - und evtl. auch für andere User - nicht so schwierig, wenn Du die "richtigen" Änderungen einfügst und in dem 1. Beitrag dieses Threads - oder im nächsten T. - als Anlage mitschickst.
Ich komme halt immer noch nicht weiter, würde aber gerne mit Deinem Programm arbeiten, weil es auch so hübsch aussieht.

Danke

Ida
 

specci48

Well-Known Member
Licensed User
Longtime User
Hallo zusammen,

wie ich sehe, hat Klaus wieder einmal das Rennen gemacht ;), während ich noch ein wenig an Filippo's Programm "herumgedoktort" habe.

Das Ergebnis befindet sich im Anhang zu diesem Post und ist nun fehlerfrei mit der Option "Optimized Compilation" zu übersetzen. Allerdings habe ich nicht alles im Detail getestet, daher keine Gewähr auf Fehlerfreiheit... :)

@Filippo:
Hoffentlich findet meine Programmüberarbeitung auch Deine Zustimmung. Die eigentliche Funktionalität habe ich nicht angetastet, selbst der About-Dialog hat noch den alten Stand.


Viele Grüße
specci48
 

klaus

Expert
Licensed User
Longtime User
Hallo Ida,
Die Textdateien von denen Ich gesprochen habe sind Sourcecode Datein im txt Format die man zum generellen Sourcecode dazu laden kann. Wenn Du in Filippo's Programm im IDE Menü unter Tool/Components schaust, findest Du eine Anzahl von solchen Textdateien.
In den Zeilen 326 und 327 muss man nicht ComboBox einfügen sondern ListView den in diesem Fall ist der Contril ein ListView.

Hallo Filippo,
Ich denke auch dass es für Dich einfacher ist diese Control Funktionen zu ergänzen den Du weisst ja am Besten welche Controltypen Du verwendet hast.

Beste Grüsse.
 

Ida

Member
Licensed User
Longtime User
Jetzt habe ich 20 Min. geschrieben hier mit viel Kommentar etc - und als ich es abschicken will, Meldung: nicht mehr eingeloggt.
So ein Mi..!!

Also melde ich mich jetzt wieder ab, schreibe dann später noch einmal extern alles zusammen und melde mich dann wieder.

Oh, sehr ärgerlich, aber dadurch werde ich ja nur schlauer.
 

Ida

Member
Licensed User
Longtime User
in Kurzform:


Hallo specci48:

Vielen Dank für Deine richtigen Änderungen - und die Anlage!

Gruß

Ida
 
Top