gnucash request

2009-08-17 Thread Gabriel Gabak Technologies
hi I m Gabriel and i would like to watch some video tutorial about this nice software can it be posible? best regards ___ gnucash-devel mailing list gnucash-devel@gnucash.org https://lists.gnucash.org/mailman/listinfo/gnucash-devel

Re: Gnucash doesn't start anymore in Windows

2009-08-17 Thread Phil Longstaff
On August 17, 2009 12:34:36 pm C. D. wrote: > Sorry for not replying, I got a digest. > > With the help of warlord I could create a more meaningful backtrace. > Hope it helps to solve the problem. > > ---Type to continue, or q to quit--- > Backtrace: > In unknown file: Thanks for reporting this.

Re: Possible improvement to budgets using budget rules

2009-08-17 Thread Tim Abell
Hi Bryce, Yes, that's pretty much it, though it's as much for day to day <£100 decisions as for larger purchases. I plan to schedule everything I that I know the amounts and dates for (eg yearly car insurance and monthly rent/mortgage, income), and use the budget system for planning what I ex

Re: MySQL sync

2009-08-17 Thread Vladimir Bashkirtsev
Derek Atkins wrote: Vladimir Bashkirtsev writes: Derek Atkins wrote: Vladimir Bashkirtsev writes: However, changing the architecture of GnuCash to be a pure DB app would entail rewriting MOST of the engine. I wouldn't recommend going that route in the short term.

Re: r18254 - gnucash/trunk/src/backend/sql - Fix CRIT messages when loading budgets

2009-08-17 Thread Phil Longstaff
No, it should be info->period_num = GPOINTER_TO_UINT(val). It is passed by value, not reference. Phil From: Herbert Thoma To: gnucash-devel@gnucash.org; Phil Longstaff Sent: Monday, August 17, 2009 10:49:11 AM Subject: Re: r18254 - gnucash/trunk/src/backend

Gnucash doesn't start anymore in Windows

2009-08-17 Thread C. D.
Sorry for not replying, I got a digest. With the help of warlord I could create a more meaningful backtrace. Hope it helps to solve the problem. ---Type to continue, or q to quit--- Backtrace: In unknown file: ?: 11* (if (or # #) (try-load-module name)) ?: 12 [try-load-module (gnucash re

Gnucash doesn't start anymore in Windows

2009-08-17 Thread C. D.
Hi, something between r18248 and 18253 causes, that the gnucash nightly build for Windows doesn't start anymore. I can see the Tip of the day Box and some loading then it exits with code 2. Under http://bugzilla.gnome.org/show_bug.cgi?id=591761#c1 you can find most informations, additionaly I put

Re: r18254 - gnucash/trunk/src/backend/sql - Fix CRIT messages when loading budgets

2009-08-17 Thread Phil Longstaff
It can. It is supposed to match type QofSetterFunc which takes a gpointer 2nd argument. There are plenty of places that I cast to/from QofSetterFunc, though. When I check in the fix, I'll use gint to match the other "set int" functions. From: Herbert Thoma

Re: r18254 - gnucash/trunk/src/backend/sql - Fix CRIT messages when loading budgets

2009-08-17 Thread Herbert Thoma
One more (may be stupid) question: Herbert Thoma schrieb: > Phil Longstaff schrieb: >> No, it should be info->period_num = GPOINTER_TO_UINT(val). It is passed >> by value, not reference. Why is val a gpointer then? Why can't the type just be uint? static void set_period_num( gpointer pObj, gpoi

Re: Problem with win32 build of 2.3.4

2009-08-17 Thread Derek Atkins
Hi, Phil Longstaff writes: > Hi Derek, > > the build failed. Some problem with Qt/aqbanking, I think. Could you take a > look at it? > > Phil I started looking at the build and I saw some problems with the docs. In particular, I see these errors in the it_IT help and guide: `htmlhelp.chm' ->

Re: r18254 - gnucash/trunk/src/backend/sql - Fix CRIT messages when loading budgets

2009-08-17 Thread Herbert Thoma
Phil Longstaff schrieb: > No, it should be info->period_num = GPOINTER_TO_UINT(val). It is passed > by value, not reference. OK, that fixed the compiler error. I guess you will commit the fix to svn. Thanks, Herbert. > Phil > >

Re: r18254 - gnucash/trunk/src/backend/sql - Fix CRIT messages when loading budgets

2009-08-17 Thread Herbert Thoma
Hi Phil, I don't know if it is caused by this change, but I get a compiler error: gnc-budget-sql.c: In function ‘set_period_num’: gnc-budget-sql.c:156: error: cast from pointer to integer of different size The offending line is: info->period_num = (guint)val; Perhaps you meant somethin

Re: MySQL sync

2009-08-17 Thread Derek Atkins
Vladimir Bashkirtsev writes: > Derek Atkins wrote: >> Vladimir Bashkirtsev writes: >> >> However, changing the architecture of GnuCash to be a pure DB app would entail rewriting MOST of the engine. I wouldn't recommend going that route in the short term. >>> Well

Re: MySQL sync

2009-08-17 Thread Derek Atkins
Marcus, Marcus Wolschon writes: > There must be a way without violating 1st normal form and storing > everything twice. > Maybe an "updated"-timstamp or something may help. Maybe... I was thinking about ways to avoid using timestamps per se, because the current time can vary machine-to-machine

Re: MySQL sync

2009-08-17 Thread Vladimir Bashkirtsev
Derek Atkins wrote: Vladimir Bashkirtsev writes: However, changing the architecture of GnuCash to be a pure DB app would entail rewriting MOST of the engine. I wouldn't recommend going that route in the short term. Well... Rewriting most of engine is definitely not something I p

Re: MySQL sync

2009-08-17 Thread Derek Atkins
Vladimir Bashkirtsev writes: >> However, changing the architecture of GnuCash to be a pure DB app would >> entail rewriting MOST of the engine. I wouldn't recommend going that >> route in the short term. >> > Well... Rewriting most of engine is definitely not something I plan. :) > > So I sho