Re: [GNC] Corrupt security information

2020-01-04 Thread John Ralls


> On Jan 4, 2020, at 6:39 PM, Bruno Acklin  wrote:
> 
> Best wishes for 2020!
> 
> I am struggling with a stock account, where I am unable to enter any valid 
> transactions, and suspect the security information may be corrupted:
> 
> Whenever I enter a trade from the account (declared as stock for an existing 
> security INTC) and press return, Gnucash completes a transaction (cf 
> attachment), which looks ok, except there is no shares traded and there is no 
> way to enter any quantity on the trading account. Gnucash insists on 
> balancing the transaction, after which there is a huge number in the 
> trading/share account, but still no quantity of shares traded, and no way to 
> complete the transaction, other than closing the account tab.
> 
> I checked the security and my price information which looks ok and updates w/ 
> finance::quote. If I have to recreate the account and reenter all 
> transactions, I’d like to save the historic price information, but don’t know 
> of a way to export it.
> 

That sounds like a variation on https://bugs.gnucash.org/show_bug.cgi?id=797512.

Regards,
John Ralls


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Corrupt security information

2020-01-04 Thread Bruno Acklin
Best wishes for 2020!

I am struggling with a stock account, where I am unable to enter any valid 
transactions, and suspect the security information may be corrupted:

Whenever I enter a trade from the account (declared as stock for an existing 
security INTC) and press return, Gnucash completes a transaction (cf 
attachment), which looks ok, except there is no shares traded and there is no 
way to enter any quantity on the trading account. Gnucash insists on balancing 
the transaction, after which there is a huge number in the trading/share 
account, but still no quantity of shares traded, and no way to complete the 
transaction, other than closing the account tab.

I checked the security and my price information which looks ok and updates w/ 
finance::quote. If I have to recreate the account and reenter all transactions, 
I’d like to save the historic price information, but don’t know of a way to 
export it.

Thanks for any suggestions,
Bruno




___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread D via gnucash-user
Adrien,

I'm intrigued. You have given the relevant css nodes simply as "tab" off 
"tabs". The earlier thread that I cited had the nodes as "notebook tab" and 
"notebook tabs". Has the css been changed, are these different elements, or 
does the difference not matter, I wonder?

David T.

On January 5, 2020, at 12:54 AM, Adrien Monteleone 
 wrote:

Bill,

Sorry this took some time, but I finally got a chance to fire up the GTK 
Inspector.

The CSS nodes you’re looking for are called ’tabs’ (for the whole tab 
bar/column) and ’tab’ for each individual tab.

You can modify both padding and margin separately. Margin will affect the 
spacing between the tabs, padding will affect the spacing from the text to the 
outline of the tab.

You can also adjust left, right, top & bottom independently, or set them all to 
the same value.

For example, consider the following CSS declaration:

tabs, tab {

  margin: 0px;
  padding: 0px;

}

This will pack everything about as tight as you can get it. (save for changing 
the font size) This gets me a tab height equal to about 1 register row with a 
12px Apple system font.

The individual adjustments would be:

margin-top
margin-bottom
margin-left
margin-right

padding-top
padding-bottom
padding-left
padding-right

You can specify pixels (px) or ems (em), the latter being proportional to the 
font used. Other CSS units for these might work, but GTK hasn’t fully 
implemented ‘web’ CSS, so they might not. (such as ‘ex’, ‘pt’, ‘vw’, ‘vh’ and 
‘%’)



If you want to shrink the tabs & tab column even further you can play with the 
tab images and close buttons.

The following will hide the tab image off the left edge of the screen:

tab image {

  margin-left: -50px;

}

This next one will make the close button invisible (but still reserve space for 
it):

tab button {

  opacity: 0;

}

Finally, you can tighten things up to remove the reserved space that the images 
& buttons were using:

tab label {

  margin-left: -15px;
  margin-right: -35px;

}

Note that doing so will remove your ability to see at a glance, by the icon, 
what kind of tab it is. (report, account, etc.)

You’ll also lose your close button, but can either use the ‘close’ toolbar 
button or the ⌘W keyboard shortcut to close a tab instead.

Finally, also notice when you hide the tab images that your ‘Accounts’ tab 
label will not be centered. I haven’t found a way around this since GTK doesn’t 
seem to implement the ':first-child’ selector which would be used to target the 
label on that first tab only. (it needs a different left negative margin 
because it doesn’t have an image)

Hope that helps, let me know if you are still having trouble.

Note, you might have to restart GnuCash after making changes to your 
gtk-3.0.css file to see the difference.

Regards,
Adrien


> On Jan 3, 2020 w1d3, at 10:45 AM, William Marshall via gnucash-user 
>  wrote:
> 
> HI David,
> 
> I forgot to clarify that the file I referenced DOES impact the appearance.  I 
> just can’t seem to get anything to change the sidebar in any way.
> 
> Bill


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Tracking Currency Investments

2020-01-04 Thread David Cousens
I don't have any experience with share sales in foreign currencies but i have
a little with foreign currency transactions themselves. 

One issue may be that the view presented in the Table is as if from the
register for the USD account. AFAIK in that register display, any amounts
from account in other currencies will normally appear as USD amounts
converted from the other currency amounts using the appropriate exchange
rate/price. There will be two prices involved, the share price at sale in
the foreign currency and the exchange rate between the foreign currency and
USD as well as the fee charged for the currency conversion.

There is one error in the documentation in the previous section on the
accounts as when tracking capital gains/losses you will need both

Assets:Investments:Currency:Bank (USD)
Assets:Investments:Currency:XXX (XXX)

and not just the Assets:Investments:Currency:Bank (USD) as listed in the
documentation as well as the additional accounts for the capital gains/loss
recording.  It would have been a bit more instructive to have shown in the
documentation the same transaction from one of the XXX currency account
registers (in which all the amounts will be in currency XXX and the price
for conversion to USD normally appears in the price column.

Don't know if this is enough to sort it out until someone with foreign
currency share transaction experience can reply.

David Cousens



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread AEG via gnucash-user
Colin Law wrote
> By comparing the heights of the register lines and the tabs I see that
> I get 9 tabs in the height of 14 register lines whereas the photo
> shows only about 6.5 tabs in 14 register lines.
> 
> Colin

I'm also seeing only 6.5 tabs in 14 register lines with Windows 10 and GC
version 3.5, whereas the tabs in version 2.6.21 were significantly smaller
and more convenient to use.

I've looked at the possibility of editing the css settings as described in
the GTK3 wiki page but don't appear to have the relevant files on my
computer (the css folder is empty).

Alan





--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Mouse

2020-01-04 Thread David Cousens
https://en.wikipedia.org/wiki/List_of_GTK_applications



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Mouse

2020-01-04 Thread David Cousens
I have just tested this in Linux Mint with GnuCash 3.8 and it works fine. The
button functions reverse as expected when the mouse preferences are changed
for the logged in user, so it looks like it is a Windows specific problem.
It may be something specific to do with the implementation of the GTK+
library on Windows in the way it receives events from windows on the
display. If that bypasses the system /and or user's mouse preferences, which
it shouldn't, it would ignore the mouse button reversal. If you have other
programs which are based on GTK+ V3 check to see if they have the same
behavior and perhaps see if there are any updates available for the GTK+ V3
libraries on Windows. 

One of the developers who works on the Windows version may be able to offer
more specific advice.

David Cousens



-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Jack Slater
I agree!

On Sat, Jan 4, 2020 at 4:47 PM David Carlson 
wrote:

> Bummer.  I would call that a bug.
>
> On Sat, Jan 4, 2020 at 4:25 PM Jack Slater  wrote:
>
>> It does not.
>>
>> On Sat, Jan 4, 2020 at 3:58 PM David Carlson 
>> wrote:
>>
>>> Generally, to make register defaults per account stick, you need to
>>> close the GnuCash program, just saving the file will not save register
>>> settings.  I do not know if that also applies to the date column.  It may
>>> not.
>>>
>>> David Carlson
>>>
>>> On Sat, Jan 4, 2020 at 2:49 PM Jack Slater 
>>> wrote:
>>>
 OK thank you! I'll try that out.

 On Sat, Jan 4, 2020 at 2:35 PM Adrien Monteleone <
 adrien.montele...@lusfiber.net> wrote:

 > That is something entirely different.
 >
 > There are threads about this issue, though I’m not sure what the
 situation
 > currently is on Win10. There might also be a bug filed on it already.
 As
 > far as I am aware, the registers *should* remember your column width
 > settings.
 >
 > If not, a temporary work around is:
 >
 > 1 - don’t shut down GnuCash
 > 2 - don’t close the registers you are interested in before shutting
 down.
 > (they will be re-opened on the next start, and *might* retain your
 custom
 > width)
 >
 > Otherwise, it is likely something the devs will have to fix. You can’t
 > adjust this with a custom CSS file. (that I am aware of, others may
 have
 > found out how)
 >
 > Regards,
 > Adrien
 >
 > > On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater <
 theillini...@gmail.com>
 > wrote:
 > >
 > > I'm getting in on this thread late and not sure if my question is
 > related or not.
 > >
 > > Latest GC on Win 10. I resize the left column (date) to a wider
 width.
 > When I close and reopen, its back to original width.  Nuisance having
 to
 > resize every time. Can I resize once and then save that format?
 > >
 >
 >
 > ___
 > gnucash-user mailing list
 > gnucash-user@gnucash.org
 > To update your subscription preferences or to unsubscribe:
 > https://lists.gnucash.org/mailman/listinfo/gnucash-user
 > If you are using Nabble or Gmane, please see
 > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
 > -
 > Please remember to CC this list on all your replies.
 > You can do this by using Reply-To-List or Reply-All.
 >
 ___
 gnucash-user mailing list
 gnucash-user@gnucash.org
 To update your subscription preferences or to unsubscribe:
 https://lists.gnucash.org/mailman/listinfo/gnucash-user
 If you are using Nabble or Gmane, please see
 https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
 -
 Please remember to CC this list on all your replies.
 You can do this by using Reply-To-List or Reply-All.

>>>
>>>
>>> --
>>> David Carlson
>>>
>>
>
> --
> David Carlson
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread David Carlson
Bummer.  I would call that a bug.

On Sat, Jan 4, 2020 at 4:25 PM Jack Slater  wrote:

> It does not.
>
> On Sat, Jan 4, 2020 at 3:58 PM David Carlson 
> wrote:
>
>> Generally, to make register defaults per account stick, you need to close
>> the GnuCash program, just saving the file will not save register settings.
>> I do not know if that also applies to the date column.  It may not.
>>
>> David Carlson
>>
>> On Sat, Jan 4, 2020 at 2:49 PM Jack Slater 
>> wrote:
>>
>>> OK thank you! I'll try that out.
>>>
>>> On Sat, Jan 4, 2020 at 2:35 PM Adrien Monteleone <
>>> adrien.montele...@lusfiber.net> wrote:
>>>
>>> > That is something entirely different.
>>> >
>>> > There are threads about this issue, though I’m not sure what the
>>> situation
>>> > currently is on Win10. There might also be a bug filed on it already.
>>> As
>>> > far as I am aware, the registers *should* remember your column width
>>> > settings.
>>> >
>>> > If not, a temporary work around is:
>>> >
>>> > 1 - don’t shut down GnuCash
>>> > 2 - don’t close the registers you are interested in before shutting
>>> down.
>>> > (they will be re-opened on the next start, and *might* retain your
>>> custom
>>> > width)
>>> >
>>> > Otherwise, it is likely something the devs will have to fix. You can’t
>>> > adjust this with a custom CSS file. (that I am aware of, others may
>>> have
>>> > found out how)
>>> >
>>> > Regards,
>>> > Adrien
>>> >
>>> > > On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater >> >
>>> > wrote:
>>> > >
>>> > > I'm getting in on this thread late and not sure if my question is
>>> > related or not.
>>> > >
>>> > > Latest GC on Win 10. I resize the left column (date) to a wider
>>> width.
>>> > When I close and reopen, its back to original width.  Nuisance having
>>> to
>>> > resize every time. Can I resize once and then save that format?
>>> > >
>>> >
>>> >
>>> > ___
>>> > gnucash-user mailing list
>>> > gnucash-user@gnucash.org
>>> > To update your subscription preferences or to unsubscribe:
>>> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
>>> > If you are using Nabble or Gmane, please see
>>> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>>> > -
>>> > Please remember to CC this list on all your replies.
>>> > You can do this by using Reply-To-List or Reply-All.
>>> >
>>> ___
>>> gnucash-user mailing list
>>> gnucash-user@gnucash.org
>>> To update your subscription preferences or to unsubscribe:
>>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>>> If you are using Nabble or Gmane, please see
>>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>>> -
>>> Please remember to CC this list on all your replies.
>>> You can do this by using Reply-To-List or Reply-All.
>>>
>>
>>
>> --
>> David Carlson
>>
>

-- 
David Carlson
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread William Marshall via gnucash-user
Um, I not a Gtk person, but I did get then inspector.  I can’t make heads or 
tails of what it’s making.  I do see now that what I’m focused on are 
“horizontal” GtkBox’s in a notebook, but I still can’t seem to be able to 
change anything.

I guess I’m giving up; but I appreciate everyone’s help.

Bill


> On Jan 4, 2020, at 12:03 PM, John Ralls  wrote:
> 
> MacOS version shouldn't matter for this.
> 
> Have you tried using the Gtk Inspector (see 
> https://wiki.gnucash.org/wiki/GTK3#Using_the_GTK_Inspector) to find the right 
> control? Note that it isn't a sidebar, it's the notebook tabs that you happen 
> to have put on the side instead of across the top.
> 
> Regards,
> John Ralls
> 
> 
>> On Jan 3, 2020, at 8:50 AM, William Marshall via gnucash-user 
>>  wrote:
>> 
>> Let me add that I’m not running the latest Mac OS version; I’m running 
>> 10.13.6.  I’m behind because with each SW change, Apple giveth and Apple 
>> taketh away; os I’m typically slow to change because of what goes away.
>> 
>>> On Jan 3, 2020, at 11:43 AM, Colin Law  wrote:
>>> 
>>> Has anyone else confirmed whether they are seeing this issue, and if
>>> so on what OS.  Certainly with 3.6 on Ubuntu 19.10 my tabs are
>>> noticeably more packed.
>>> 
>>> Colin
>>> 
>>> On Fri, 3 Jan 2020 at 14:11, William Marshall  wrote:
 
 No.  I can’t seem to find a way to make a change in ~/Library/Application 
 Support/Gnucash/config/gtk-3.0/gtk.css that impacts the sidebar.  I did 
 find in the discussion and in other places how to set the padding around 
 the menubar icons and text, and I see discussion in various places about 
 changing the sidebar, but none of the changes I attempt have any impact.
 
 I really appreciate you taking the time to respond.
 
 Bill
 
 
> On Jan 1, 2020, at 6:45 PM, D  wrote:
> 
> William,
> 
> Did the discussion on css styling not work for you?
> 
> David T.
> 
> On January 2, 2020, at 4:05 AM, Colin Law  wrote:
> 
> I see what you mean.  On Ubuntu with Waterfox browser they are much 
> tighter
> packed (gnucash 3.6).
> 
> Colin
> 
> On Wed, 1 Jan 2020 at 17:00, William Marshall  wrote:
> 
>> Colin,
>> 
>> I can’t do a conventional capture, since I need things highlighted by
>> selection and mouse activity to show what I mean, but here’s a photo from
>> me phone of what I'm talking about.  Notice first that “USAA Sav” is
>> selected and see how high the top and bottom boundary are for that
>> selection.  Then notice that my mouse is hovering over “USAA Visa” and 
>> see
>> that it has the same excessive (to my eye) top and bottom boundaries.
>> ALSO, notice that there is a separator between the two.  I’d really like 
>> to
>> scrunch everything together like it used to be.
>> 
>> I really appreciate any help you can provide.
>> 
>> Bill
>> 
>> 
>> 
>> On Jan 1, 2020, at 10:00 AM, Colin Law  wrote:
>> 
>> Can you post a screenshot showing exactly what you mean?
>> 
>> Colin
>> 
>> On Wed, 1 Jan 2020 at 00:55, William Marshall via gnucash-user
>>  wrote:
>> 
>> 
>> Hi All,
>> 
>> I don’t know if this is the right pace to ask this or not, and I’m sure
>> it’s already been asked many times, but Googling for solutions hasn’t
>> provided me any relief.  How do I reduce the spacing on the left sidebar
>> that lists the accounts and reports that I’ve opened?  Right now, they 
>> way
>> spread out vertically, which happened when I switched to GnuCash 3.X.  
>> I’m
>> currently using GnuCash for Mac version 3.7, Build ID: 3.7+(2019-09-07).
>> 
>> Thank you,
>> Bill Marshall
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>> 
>> 
>> 
 
>> 
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see 
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
> 

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:

[GNC] Mouse

2020-01-04 Thread beanstalk--- via gnucash-user
I have my mouse set for left handed use, i.e. the left and right clicks 
are reversed.  This works for everything on my Windows 10 system except 
the GnuCash 3.8b+ program.  Is there something I can do to correct 
this?

 
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Import failing - cannot get debug file

2020-01-04 Thread Bennie Gibson
David - thanks for your input.  Regarding chunking the imports, that's 
exactly what I'm doing and am making some progress.  My primary struggle 
right now  is that GNUCash doesn't appear to be creating a debug file.  
I understand c:\ is a bad location for a user file but I wanted a 
location with minimum folders involved to ensure I was looking in the 
right place.


Any suggestions on why the below commands are not creating a debug file 
appreciated:


gnucash.exe --debug --tofile="c:\gnucash.log"

gnucash.exe --debug

as I understand the last command line should create a default tracefile 
but I don't see it either.


Thanks

On 1/4/2020 8:33 AM, David Carlson wrote:
First, in Windows 10 (or any OS, for that matter) c:\ is a bad choice 
for user file location. Try directing your error file to your desktop.


Second, hopefully you have put your data file in a folder under your 
documents or some other user location.


Third, if you have read other user suggestions about importing from 
Quicken, start with tiny chunks of transactions to see how it goes.


Fourth, in some cases it is easier to edit transactions in Quicken 
before exporting.


Fifth, consider only importing a short segment of recent history and 
leave old history in Quicken.


Sixth, back up everything first and test with disposable copies of files.

Seventh,  if you still have specific questions, ask here giving all 
details  except personal information.


Good luck

David Carlson

On Sat, Jan 4, 2020, 4:33 AM Bennie Gibson > wrote:


Hi All,

I am trying to move from quicken to gnucash and have had mixed
results
with importing qif files from quicklen.  I've been able to isolate a
couple of causes of import failures by trial and error exclusion of
specific items but it appears I have several failures to deal with
and
no messages to indicate the cause.  I tried starting gnucash with
--debug --logto="c:\gnucash.log"    it appears gnucash is recognizing
the debug command as it takes longer to start but I'm not seeing
any log
or trace file created. I've also tried leaving out the logto
command and
letting gnucash create a default file but cannot locate that either.
I've looked in AppData\Local\Temp and found no new files.

Any suggestions appreciated.  I feel like I'm close but with several
years of data, I need something to assist me me excluding the items
causing import failure.

Thank you

___
gnucash-user mailing list
gnucash-user@gnucash.org 
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Difficulty in migrating Gnucash to second computer

2020-01-04 Thread Nic Deane


On 04/01/2020 22:36, Nic Deane wrote:

Dear David,

Thank you so much for a great, simple answer! I found that whereas 
before (for whatever reason) all my gnucash files were just sitting 
(all laid out) in my Documents directory they were now all grouped in 
a Gnucash directory. When I opened that directory I found them all 
there and went immediately to the .gnucash file. I then 
copied this Gnucash directory over to my netbook. When I opened 
.gnucash file with Gnucash in the netbook everything all came together 
and, voila, everything is there - reports and all. This took me all of 
five minutes!


Thank you so much!

How good it is to be able to ask questions of knowledgeable folk and 
they come back to you so quickly. How amazing is the Linux and Gnucash 
community!


Wishing you God's richest blessing in 2020,

Nic Deane

On 04/01/2020 21:27, David Cousens wrote:

Nic

The .gnucash directory only contains user meta data about your 
preferences

in using GnuCash and any stored reports etc. The section in the Books
subdirectory  is again only meta data and not the actual data file. The
actual data file will be somewhere else in your home directory where you
saved it when you first opend GnuCash on the first computer. If you 
created

a subdirectory for your gnucash datafile (recommended practice) that
subdirectory can have any name you give it but it will contain files 
of the

following formats:
.gnucash;
.log;
.gnucash;

There should be only one .gnucash file but there may be 
several of

the
.log;
.gnucash;
files with different values of the timestamp. These are log files and 
backup
files respectively created each time the program is opened. The 
timestamps
have a "mmddhhmmss" format. You may also see files with a .LNK 
and .LCK
extension which are used to prevent the file being opened by more 
than one

user or more than one instance of the program accidentally.
If you can open the data file in GnuCash the .gnucash 
should be

displayed in the title bar. You can then search your home directory for
.gnucash to locate where it is stored in Nemo.

It is the contents of this directory that need to be copied to a new
machine. I use my accounts with several different users on two Linux 
Mint

computers and one Windows 10 box by storing them in a Dropbox accessible
from each account on each computer.

If you use customized reports and you want to migrate them or make them
available on more than one machine you should also copy the hidden 
.gnucash
directory if you are using a GnuCash version earlier than I think 
2.6.19. In

a few late 2.6 and 2.7 versions and in all 3.x versions the metadata is
stored under $HOME/.local/share/gnucash  as explained in the wiki
https://wiki.gnucash.org/wiki/Configuration_Locations

Another alternative to using dropbox is to use a file synchronization
program like Unison which is available for Linux, Windows and Macs to
synchronize your data and configs on several machines. This however can
cause confusion as to which computer has the most up to date files on it
which is why I use the Dropbox for the datafile and only sync my user
preferences with Unison.

David Cousens




-
David Cousens
--
Sent from: 
http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.

-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Jack Slater
It does not.

On Sat, Jan 4, 2020 at 3:58 PM David Carlson 
wrote:

> Generally, to make register defaults per account stick, you need to close
> the GnuCash program, just saving the file will not save register settings.
> I do not know if that also applies to the date column.  It may not.
>
> David Carlson
>
> On Sat, Jan 4, 2020 at 2:49 PM Jack Slater  wrote:
>
>> OK thank you! I'll try that out.
>>
>> On Sat, Jan 4, 2020 at 2:35 PM Adrien Monteleone <
>> adrien.montele...@lusfiber.net> wrote:
>>
>> > That is something entirely different.
>> >
>> > There are threads about this issue, though I’m not sure what the
>> situation
>> > currently is on Win10. There might also be a bug filed on it already. As
>> > far as I am aware, the registers *should* remember your column width
>> > settings.
>> >
>> > If not, a temporary work around is:
>> >
>> > 1 - don’t shut down GnuCash
>> > 2 - don’t close the registers you are interested in before shutting
>> down.
>> > (they will be re-opened on the next start, and *might* retain your
>> custom
>> > width)
>> >
>> > Otherwise, it is likely something the devs will have to fix. You can’t
>> > adjust this with a custom CSS file. (that I am aware of, others may have
>> > found out how)
>> >
>> > Regards,
>> > Adrien
>> >
>> > > On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater 
>> > wrote:
>> > >
>> > > I'm getting in on this thread late and not sure if my question is
>> > related or not.
>> > >
>> > > Latest GC on Win 10. I resize the left column (date) to a wider width.
>> > When I close and reopen, its back to original width.  Nuisance having to
>> > resize every time. Can I resize once and then save that format?
>> > >
>> >
>> >
>> > ___
>> > gnucash-user mailing list
>> > gnucash-user@gnucash.org
>> > To update your subscription preferences or to unsubscribe:
>> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> > If you are using Nabble or Gmane, please see
>> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> > -
>> > Please remember to CC this list on all your replies.
>> > You can do this by using Reply-To-List or Reply-All.
>> >
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>>
>
>
> --
> David Carlson
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread David Carlson via gnucash-user
Generally, to make register defaults per account stick, you need to close
the GnuCash program, just saving the file will not save register settings.
I do not know if that also applies to the date column.  It may not.

David Carlson

On Sat, Jan 4, 2020 at 2:49 PM Jack Slater  wrote:

> OK thank you! I'll try that out.
>
> On Sat, Jan 4, 2020 at 2:35 PM Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
>
> > That is something entirely different.
> >
> > There are threads about this issue, though I’m not sure what the
> situation
> > currently is on Win10. There might also be a bug filed on it already. As
> > far as I am aware, the registers *should* remember your column width
> > settings.
> >
> > If not, a temporary work around is:
> >
> > 1 - don’t shut down GnuCash
> > 2 - don’t close the registers you are interested in before shutting down.
> > (they will be re-opened on the next start, and *might* retain your custom
> > width)
> >
> > Otherwise, it is likely something the devs will have to fix. You can’t
> > adjust this with a custom CSS file. (that I am aware of, others may have
> > found out how)
> >
> > Regards,
> > Adrien
> >
> > > On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater 
> > wrote:
> > >
> > > I'm getting in on this thread late and not sure if my question is
> > related or not.
> > >
> > > Latest GC on Win 10. I resize the left column (date) to a wider width.
> > When I close and reopen, its back to original width.  Nuisance having to
> > resize every time. Can I resize once and then save that format?
> > >
> >
> >
> > ___
> > gnucash-user mailing list
> > gnucash-user@gnucash.org
> > To update your subscription preferences or to unsubscribe:
> > https://lists.gnucash.org/mailman/listinfo/gnucash-user
> > If you are using Nabble or Gmane, please see
> > https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> > -
> > Please remember to CC this list on all your replies.
> > You can do this by using Reply-To-List or Reply-All.
> >
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>


-- 
David Carlson
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Difficulty in migrating Gnucash to second computer

2020-01-04 Thread David Cousens
Nic

The .gnucash directory only contains user meta data about your preferences
in using GnuCash and any stored reports etc. The section in the Books
subdirectory  is again only meta data and not the actual data file. The
actual data file will be somewhere else in your home directory where you
saved it when you first opend GnuCash on the first computer. If you created
a subdirectory for your gnucash datafile (recommended practice) that
subdirectory can have any name you give it but it will contain files of the
following formats:
.gnucash;
.log;
.gnucash;

There should be only one .gnucash file but there may be several of
the
.log;
.gnucash;
files with different values of the timestamp. These are log files and backup
files respectively created each time the program is opened. The timestamps
have a "mmddhhmmss" format. You may also see files with a .LNK and .LCK
extension which are used to prevent the file being opened by more than one
user or more than one instance of the program accidentally.
If you can open the data file in GnuCash the .gnucash should be
displayed in the title bar. You can then search your home directory for
.gnucash to locate where it is stored in Nemo.

It is the contents of this directory that need to be copied to a new
machine. I use my accounts with several different users on two Linux Mint
computers and one Windows 10 box by storing them in a Dropbox accessible
from each account on each computer.

If you use customized reports and you want to migrate them or make them
available on more than one machine you should also copy the hidden .gnucash
directory if you are using a GnuCash version earlier than I think 2.6.19. In
a few late 2.6 and 2.7 versions and in all 3.x versions the metadata is
stored under $HOME/.local/share/gnucash  as explained in the wiki
https://wiki.gnucash.org/wiki/Configuration_Locations

Another alternative to using dropbox is to use a file synchronization
program like Unison which is available for Linux, Windows and Macs to
synchronize your data and configs on several machines. This however can
cause confusion as to which computer has the most up to date files on it
which is why I use the Dropbox for the datafile and only sync my user
preferences with Unison.

David Cousens




-
David Cousens
--
Sent from: http://gnucash.1415818.n4.nabble.com/GnuCash-User-f1415819.html
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Jack Slater
OK thank you! I'll try that out.

On Sat, Jan 4, 2020 at 2:35 PM Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> That is something entirely different.
>
> There are threads about this issue, though I’m not sure what the situation
> currently is on Win10. There might also be a bug filed on it already. As
> far as I am aware, the registers *should* remember your column width
> settings.
>
> If not, a temporary work around is:
>
> 1 - don’t shut down GnuCash
> 2 - don’t close the registers you are interested in before shutting down.
> (they will be re-opened on the next start, and *might* retain your custom
> width)
>
> Otherwise, it is likely something the devs will have to fix. You can’t
> adjust this with a custom CSS file. (that I am aware of, others may have
> found out how)
>
> Regards,
> Adrien
>
> > On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater 
> wrote:
> >
> > I'm getting in on this thread late and not sure if my question is
> related or not.
> >
> > Latest GC on Win 10. I resize the left column (date) to a wider width.
> When I close and reopen, its back to original width.  Nuisance having to
> resize every time. Can I resize once and then save that format?
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Adrien Monteleone
That is something entirely different.

There are threads about this issue, though I’m not sure what the situation 
currently is on Win10. There might also be a bug filed on it already. As far as 
I am aware, the registers *should* remember your column width settings.

If not, a temporary work around is:

1 - don’t shut down GnuCash
2 - don’t close the registers you are interested in before shutting down. (they 
will be re-opened on the next start, and *might* retain your custom width)

Otherwise, it is likely something the devs will have to fix. You can’t adjust 
this with a custom CSS file. (that I am aware of, others may have found out how)

Regards,
Adrien

> On Jan 4, 2020 w1d4, at 2:27 PM, Jack Slater  wrote:
> 
> I'm getting in on this thread late and not sure if my question is related or 
> not.
> 
> Latest GC on Win 10. I resize the left column (date) to a wider width. When I 
> close and reopen, its back to original width.  Nuisance having to resize 
> every time. Can I resize once and then save that format?
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Jack Slater
I'm getting in on this thread late and not sure if my question is related
or not.

Latest GC on Win 10. I resize the left column (date) to a wider width. When
I close and reopen, its back to original width.  Nuisance having to resize
every time. Can I resize once and then save that format?

On Sat, Jan 4, 2020 at 1:28 PM Adrien Monteleone <
adrien.montele...@lusfiber.net> wrote:

> Sorry, I sent that a bit too fast.
>
> Rather than moving the tab image off the left hand of the screen you could
> make it invisible like with the button:
>
> tab image {
>
>   opacity: 0;
>
> }
>
> then your final label adjustment would look like this:
>
> tab label {
>
>   margin-left: -35px;
>   margin-right: -35px;
>
> }
>
> This still doesn’t solve the uncentered “Accounts" label though.
>
> You can of course combine rules like so:
>
> tab image, tab button {
>
>   opacity: 0;
>
> }
>
> Regards,
> Adrien
>
> > On Jan 4, 2020 w1d4, at 1:22 PM, Adrien Monteleone <
> adrien.montele...@lusfiber.net> wrote:
> >
> > Bill,
> >
> > Sorry this took some time, but I finally got a chance to fire up the GTK
> Inspector.
> >
> > The CSS nodes you’re looking for are called ’tabs’ (for the whole tab
> bar/column) and ’tab’ for each individual tab.
> >
> > You can modify both padding and margin separately. Margin will affect
> the spacing between the tabs, padding will affect the spacing from the text
> to the outline of the tab.
> >
> > You can also adjust left, right, top & bottom independently, or set them
> all to the same value.
> >
> > For example, consider the following CSS declaration:
> >
> > tabs, tab {
> >
> >  margin: 0px;
> >  padding: 0px;
> >
> > }
> >
> > This will pack everything about as tight as you can get it. (save for
> changing the font size) This gets me a tab height equal to about 1 register
> row with a 12px Apple system font.
> >
> > The individual adjustments would be:
> >
> > margin-top
> > margin-bottom
> > margin-left
> > margin-right
> >
> > padding-top
> > padding-bottom
> > padding-left
> > padding-right
> >
> > You can specify pixels (px) or ems (em), the latter being proportional
> to the font used. Other CSS units for these might work, but GTK hasn’t
> fully implemented ‘web’ CSS, so they might not. (such as ‘ex’, ‘pt’, ‘vw’,
> ‘vh’ and ‘%’)
> >
> >
> >
> > If you want to shrink the tabs & tab column even further you can play
> with the tab images and close buttons.
> >
> > The following will hide the tab image off the left edge of the screen:
> >
> > tab image {
> >
> >  margin-left: -50px;
> >
> > }
> >
> > This next one will make the close button invisible (but still reserve
> space for it):
> >
> > tab button {
> >
> >  opacity: 0;
> >
> > }
> >
> > Finally, you can tighten things up to remove the reserved space that the
> images & buttons were using:
> >
> > tab label {
> >
> >  margin-left: -15px;
> >  margin-right: -35px;
> >
> > }
> >
> > Note that doing so will remove your ability to see at a glance, by the
> icon, what kind of tab it is. (report, account, etc.)
> >
> > You’ll also lose your close button, but can either use the ‘close’
> toolbar button or the ⌘W keyboard shortcut to close a tab instead.
> >
> > Finally, also notice when you hide the tab images that your ‘Accounts’
> tab label will not be centered. I haven’t found a way around this since GTK
> doesn’t seem to implement the ':first-child’ selector which would be used
> to target the label on that first tab only. (it needs a different left
> negative margin because it doesn’t have an image)
> >
> > Hope that helps, let me know if you are still having trouble.
> >
> > Note, you might have to restart GnuCash after making changes to your
> gtk-3.0.css file to see the difference.
> >
> > Regards,
> > Adrien
> >
> >
> >> On Jan 3, 2020 w1d3, at 10:45 AM, William Marshall via gnucash-user <
> gnucash-user@gnucash.org> wrote:
> >>
> >> HI David,
> >>
> >> I forgot to clarify that the file I referenced DOES impact the
> appearance.  I just can’t seem to get anything to change the sidebar in any
> way.
> >>
> >> Bill
> >
>
>
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
>
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Tracking Currency Investments

2020-01-04 Thread Bo Byrd via gnucash-user
Trying to figure out sect 12.5 of the docs:
https://www.gnucash.org/docs/v3/C/gnucash-guide/currency_invest1.html

But for the life of me I cannot get things to balance correctly for the sell 
journal entry.  The purchase entry is quite straightforward, but for the sell 
entry as described by 12.5.2 I just cannot figure it out as the accounts and 
units (units of USD versus XXX) dont quite make sense as the capital gains seem 
to be denominated by the XXX currency.  As well, the "Sold Amount" value seems 
to be used in both an USD account and an XXX account which also doesnt make 
sense.

Does anyone have any good examples/screenshot of a pair of journal entries for 
a currency buy/sell set that includes how to handle the capital gains?
___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Difficulty in migrating Gnucash to second computer

2020-01-04 Thread Nic Deane
I am running Gnucash on my desktop computer but when I try to migrate my 
files to my little netbook I can't seem to do it.


I used to do it easily by going to Documents and then copying all the 
gnucash files across. However, under Version: 3.8 Build ID: 
3.8b+(2019-12-29) I don't seem to see any of the familiar gnucash files 
in my Documents folder.


There is an .gnucash hidden file containing 8 items, totalling 45.4 kB  
but not all the files I am used to seeing. The Books folder contains my 
two items 2017 onwards.gnucash.gcm (7.5kb) and Retirement Home 
Accounts.gnucash.gcm (2.5kB).  But, when I try to migrate this directory 
to my netbook all I get is


*'No suitable backend was found for /media/nic/USB 
STICK/.gnucash/books/2017 onwards.gnucash.gcm'*


My desktop is an ACEPC AK2 mini computer running Linux Mint 19.3,  
Cinnamon 4.4.6, Linux kernel 5.0.0-37-generic,  Intel© Celeron© CPU 
J3455 @ 1.50GHz × 4, 7.6 GiB memory.


My netbook is a Samsung NC 110 running Linux Mint 19.3 MATE 1.22.2, 
Intel Atom N2800 @ 1.86 GHz x 4 with 1.9 GiB memory.


Migrating used to be a doddle before but I'm stumped now!

Can you help me?

Many thanks, in advance,

Nic Deane

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Adrien Monteleone
Sorry, I sent that a bit too fast.

Rather than moving the tab image off the left hand of the screen you could make 
it invisible like with the button:

tab image {

  opacity: 0;

}

then your final label adjustment would look like this:

tab label {

  margin-left: -35px;
  margin-right: -35px;

}

This still doesn’t solve the uncentered “Accounts" label though.

You can of course combine rules like so:

tab image, tab button {

  opacity: 0;

}

Regards,
Adrien

> On Jan 4, 2020 w1d4, at 1:22 PM, Adrien Monteleone 
>  wrote:
> 
> Bill,
> 
> Sorry this took some time, but I finally got a chance to fire up the GTK 
> Inspector.
> 
> The CSS nodes you’re looking for are called ’tabs’ (for the whole tab 
> bar/column) and ’tab’ for each individual tab.
> 
> You can modify both padding and margin separately. Margin will affect the 
> spacing between the tabs, padding will affect the spacing from the text to 
> the outline of the tab.
> 
> You can also adjust left, right, top & bottom independently, or set them all 
> to the same value.
> 
> For example, consider the following CSS declaration:
> 
> tabs, tab {
> 
>  margin: 0px;
>  padding: 0px;
> 
> }
> 
> This will pack everything about as tight as you can get it. (save for 
> changing the font size) This gets me a tab height equal to about 1 register 
> row with a 12px Apple system font.
> 
> The individual adjustments would be:
> 
> margin-top
> margin-bottom
> margin-left
> margin-right
> 
> padding-top
> padding-bottom
> padding-left
> padding-right
> 
> You can specify pixels (px) or ems (em), the latter being proportional to the 
> font used. Other CSS units for these might work, but GTK hasn’t fully 
> implemented ‘web’ CSS, so they might not. (such as ‘ex’, ‘pt’, ‘vw’, ‘vh’ and 
> ‘%’)
> 
> 
> 
> If you want to shrink the tabs & tab column even further you can play with 
> the tab images and close buttons.
> 
> The following will hide the tab image off the left edge of the screen:
> 
> tab image {
> 
>  margin-left: -50px;
> 
> }
> 
> This next one will make the close button invisible (but still reserve space 
> for it):
> 
> tab button {
> 
>  opacity: 0;
> 
> }
> 
> Finally, you can tighten things up to remove the reserved space that the 
> images & buttons were using:
> 
> tab label {
> 
>  margin-left: -15px;
>  margin-right: -35px;
> 
> }
> 
> Note that doing so will remove your ability to see at a glance, by the icon, 
> what kind of tab it is. (report, account, etc.)
> 
> You’ll also lose your close button, but can either use the ‘close’ toolbar 
> button or the ⌘W keyboard shortcut to close a tab instead.
> 
> Finally, also notice when you hide the tab images that your ‘Accounts’ tab 
> label will not be centered. I haven’t found a way around this since GTK 
> doesn’t seem to implement the ':first-child’ selector which would be used to 
> target the label on that first tab only. (it needs a different left negative 
> margin because it doesn’t have an image)
> 
> Hope that helps, let me know if you are still having trouble.
> 
> Note, you might have to restart GnuCash after making changes to your 
> gtk-3.0.css file to see the difference.
> 
> Regards,
> Adrien
> 
> 
>> On Jan 3, 2020 w1d3, at 10:45 AM, William Marshall via gnucash-user 
>>  wrote:
>> 
>> HI David,
>> 
>> I forgot to clarify that the file I referenced DOES impact the appearance.  
>> I just can’t seem to get anything to change the sidebar in any way.
>> 
>> Bill
> 


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread Adrien Monteleone
Bill,

Sorry this took some time, but I finally got a chance to fire up the GTK 
Inspector.

The CSS nodes you’re looking for are called ’tabs’ (for the whole tab 
bar/column) and ’tab’ for each individual tab.

You can modify both padding and margin separately. Margin will affect the 
spacing between the tabs, padding will affect the spacing from the text to the 
outline of the tab.

You can also adjust left, right, top & bottom independently, or set them all to 
the same value.

For example, consider the following CSS declaration:

tabs, tab {

  margin: 0px;
  padding: 0px;

}

This will pack everything about as tight as you can get it. (save for changing 
the font size) This gets me a tab height equal to about 1 register row with a 
12px Apple system font.

The individual adjustments would be:

margin-top
margin-bottom
margin-left
margin-right

padding-top
padding-bottom
padding-left
padding-right

You can specify pixels (px) or ems (em), the latter being proportional to the 
font used. Other CSS units for these might work, but GTK hasn’t fully 
implemented ‘web’ CSS, so they might not. (such as ‘ex’, ‘pt’, ‘vw’, ‘vh’ and 
‘%’)



If you want to shrink the tabs & tab column even further you can play with the 
tab images and close buttons.

The following will hide the tab image off the left edge of the screen:

tab image {

  margin-left: -50px;

}

This next one will make the close button invisible (but still reserve space for 
it):

tab button {

  opacity: 0;

}

Finally, you can tighten things up to remove the reserved space that the images 
& buttons were using:

tab label {

  margin-left: -15px;
  margin-right: -35px;

}

Note that doing so will remove your ability to see at a glance, by the icon, 
what kind of tab it is. (report, account, etc.)

You’ll also lose your close button, but can either use the ‘close’ toolbar 
button or the ⌘W keyboard shortcut to close a tab instead.

Finally, also notice when you hide the tab images that your ‘Accounts’ tab 
label will not be centered. I haven’t found a way around this since GTK doesn’t 
seem to implement the ':first-child’ selector which would be used to target the 
label on that first tab only. (it needs a different left negative margin 
because it doesn’t have an image)

Hope that helps, let me know if you are still having trouble.

Note, you might have to restart GnuCash after making changes to your 
gtk-3.0.css file to see the difference.

Regards,
Adrien


> On Jan 3, 2020 w1d3, at 10:45 AM, William Marshall via gnucash-user 
>  wrote:
> 
> HI David,
> 
> I forgot to clarify that the file I referenced DOES impact the appearance.  I 
> just can’t seem to get anything to change the sidebar in any way.
> 
> Bill


___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] v3.8 AQBanking in the US

2020-01-04 Thread Derek Robinson via gnucash-user
 All - the development you're talking about is beyond me, but I'm happy to help 
with testing or anything else that needs an extra set of hands. A couple of 
things.
- I assume you're in touch with Martin Preuss already, but if not, the README 
for aqbanking 6 points out a list of changes that consuming applications must 
consider. It's at https://github.com/aqbanking/aqbanking/blob/master/README. 
See section 11.
- The non-editable user problem that John Ralls noted seems to be because the 
backend type gets set to HBCI even when you set it to ofxconnect. This can be 
fixed by modifying aqbanking\settings6\users\.conf (change backendName to 
aqofxconnect).
- At least for my bank (USAA) account retrieval only works if there is at least 
one "dummy" account in the list of online accounts.
- I have user setup, account retrieval, and balance retrieval working. 
Transactions are retrieved and visible in the OFX log but don't show up in the 
GC transaction matcher. If there is a piece of GC code that returns a single 
transaction with date=0, amount=0 and description="Unspecified" when a crawl 
through the retrieved transactions returns nothing, that's a good place to 
start.
All best and let me know how I can help!
DerekOn Saturday, January 4, 2020, 05:37:38 AM EST, 
gnucash-user-requ...@gnucash.org  wrote:  
 
 Send gnucash-user mailing list submissions to
    gnucash-user@gnucash.org

To subscribe or unsubscribe via the World Wide Web, visit
    https://lists.gnucash.org/mailman/listinfo/gnucash-user
or, via email, send a message with subject or body 'help' to
    gnucash-user-requ...@gnucash.org

You can reach the person managing the list at
    gnucash-user-ow...@gnucash.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of gnucash-user digest..."
Today's Topics:

  1. Re:  v3.8 AQBanking in the US (John Ralls)
  2. Re:  v3.8 AQBanking in the US (Kenneth Schneider)
  3. Re:  GnuCash/AqBanking headaches (chris graves)
  4. Re:  v3.8: Budget "total" field (chris graves)
  5. Re:  GnuCash/AqBanking headaches (John Ralls)
  6. Re:  Default Invoice Config (Axel Essbaum)
  7.  Import failing - cannot get debug file (Bennie Gibson)
  8. Re:  Chaning left sidebar spacing (William Marshall)
  9. Re:  Chaning left sidebar spacing (William Marshall)
  10. Re:  Chaning left sidebar spacing (William Marshall)
No. OFX Direct Connect is a way of connecting GnuCash directly to the bank and 
retrieving the account, balance, and transaction data directly into GnuCash. 

In addition to a working AQBanking it requires that your bank provide the 
service and that it reveals enough information that you can configure AQBanking 
to connect to it.

Regards,
John Ralls


> On Jan 3, 2020, at 8:56 AM, David Carlson  wrote:
> 
> Is OFX Direct Connect linked to simple OFX or QFX downloads that are provided 
> by many US banks as one of the three ways that data can be funneled through 
> Intuit Software, hopefully to GnuCash instead of Quicken?
> 
> In other words, has Intuit found a way to kill OFX as an open source tool?
> 
> David Carlson
> 
> On Fri, Jan 3, 2020 at 10:43 AM John Ralls  wrote:
> 
> 
> > On Jan 3, 2020, at 7:09 AM, Derek Atkins  wrote:
> > 
> > John Ralls  writes:
> > 
> >> I don't know how much of that's fixable from GnuCash. Martin said last
> >> week that he's suspended development of OFX so anything that isn't is
> >> presumably broken forever.
> > 
> > Did he give a reason for suspending OFX development?
> 
> Yes: 
> https://lists.gnucash.org/pipermail/gnucash-user/2019-December/088350.html
> 
> Regards,
> John Ralls
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.
> 
> 
> -- 
> David Carlson


I have volunteered to help Martin as best I can.

I’m retired, getting old and not in the best of health but hopefully can be of 
some assistance. I’ve been working with Linux in one flavor or another for over 
25 years and would like to give back to the community in some way. If anyone 
else can also help I’m sure it would be appreciated.

Ken Schneider 

> On Jan 3, 2020, at 11:36 AM, John Ralls  wrote:
> 
> 
> 
>> On Jan 3, 2020, at 7:09 AM, Derek Atkins  wrote:
>> 
>> John Ralls  writes:
>> 
>>> I don't know how much of that's fixable from GnuCash. Martin said last
>>> week that he's suspended development of OFX so anything that isn't is
>>> presumably broken forever.
>> 
>> Did he give a reason for suspending OFX development?
> 
> Yes: 
> https://lists.gnucash.org/pipermail/gnucash-user/2019-December/088350.html
> 
> Regards,
> John Ralls
> 
> 

Re: [GNC] Default Invoice Config

2020-01-04 Thread Axel Essbaum

When I do Edit > Style Sheets and then select Head or Tail and click Edit I get 
HTML Style Sheet Properties.  There I have 5 panes where I can choose Colors, 
Fonts, General, Image, and Tables.  Where do I put in custom CSS?  I want to 
change some properties that are not listed on any of these panes.

I see what you mean about the config now.  So the procedure is create the 
config, save it, then for each invoice: open config, search for invoice, select 
invoice.  Tedious but at least it works.

- Axel

—
Axel Essbaum
a...@essbaum.com



> On 4 Jan 2020, at 12:53, Adrien Monteleone  
> wrote:
> 
> The first part of my previous reply sends you to Edit > Style Sheets
> 
> There is a custom CSS entry there. That is where you put your own CSS.
> 
> I’m not sure how the saved config worked for you before, but I think you have 
> to bring up the saved config first, then open the options and choose an 
> invoice. That’s the only way I know of to use saved report configs. It isn’t 
> something unique to invoices.
> 
> I seem to recall a thread on this a year or so ago. It isn’t ideal, since the 
> workflow is backwards, but it should work.
> 
> Regards,
> Adrien
> 
>> On Jan 4, 2020 w1d4, at 3:24 AM, Axel Essbaum  wrote:
>> 
>> 
>> Hi Adrien,
>> 
>> Blanking the invoice selection in General just gives me a blank page instead 
>> of the old Invoice #001.
>> 
>> And I ask again, where in a style sheet can I add my own CSS?  There is a 
>> way to do this in a configuration, but a configuration apparently now only 
>> applies to a single invoice (can't be re-applied to other invoices).
>> 
>> Thanks,
>> 
>> - Axel
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Default Invoice Config

2020-01-04 Thread Adrien Monteleone
The first part of my previous reply sends you to Edit > Style Sheets

There is a custom CSS entry there. That is where you put your own CSS.

I’m not sure how the saved config worked for you before, but I think you have 
to bring up the saved config first, then open the options and choose an 
invoice. That’s the only way I know of to use saved report configs. It isn’t 
something unique to invoices.

I seem to recall a thread on this a year or so ago. It isn’t ideal, since the 
workflow is backwards, but it should work.

Regards,
Adrien

> On Jan 4, 2020 w1d4, at 3:24 AM, Axel Essbaum  wrote:
> 
> 
> Hi Adrien,
> 
> Blanking the invoice selection in General just gives me a blank page instead 
> of the old Invoice #001.
> 
> And I ask again, where in a style sheet can I add my own CSS?  There is a way 
> to do this in a configuration, but a configuration apparently now only 
> applies to a single invoice (can't be re-applied to other invoices).
> 
> Thanks,
> 
> - Axel

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread William Marshall via gnucash-user
Let me add that I’m not running the latest Mac OS version; I’m running 10.13.6. 
 I’m behind because with each SW change, Apple giveth and Apple taketh away; os 
I’m typically slow to change because of what goes away.

> On Jan 3, 2020, at 11:43 AM, Colin Law  wrote:
> 
> Has anyone else confirmed whether they are seeing this issue, and if
> so on what OS.  Certainly with 3.6 on Ubuntu 19.10 my tabs are
> noticeably more packed.
> 
> Colin
> 
> On Fri, 3 Jan 2020 at 14:11, William Marshall  wrote:
>> 
>> No.  I can’t seem to find a way to make a change in ~/Library/Application 
>> Support/Gnucash/config/gtk-3.0/gtk.css that impacts the sidebar.  I did find 
>> in the discussion and in other places how to set the padding around the 
>> menubar icons and text, and I see discussion in various places about 
>> changing the sidebar, but none of the changes I attempt have any impact.
>> 
>> I really appreciate you taking the time to respond.
>> 
>> Bill
>> 
>> 
>>> On Jan 1, 2020, at 6:45 PM, D  wrote:
>>> 
>>> William,
>>> 
>>> Did the discussion on css styling not work for you?
>>> 
>>> David T.
>>> 
>>> On January 2, 2020, at 4:05 AM, Colin Law  wrote:
>>> 
>>> I see what you mean.  On Ubuntu with Waterfox browser they are much tighter
>>> packed (gnucash 3.6).
>>> 
>>> Colin
>>> 
>>> On Wed, 1 Jan 2020 at 17:00, William Marshall  wrote:
>>> 
 Colin,
 
 I can’t do a conventional capture, since I need things highlighted by
 selection and mouse activity to show what I mean, but here’s a photo from
 me phone of what I'm talking about.  Notice first that “USAA Sav” is
 selected and see how high the top and bottom boundary are for that
 selection.  Then notice that my mouse is hovering over “USAA Visa” and see
 that it has the same excessive (to my eye) top and bottom boundaries.
 ALSO, notice that there is a separator between the two.  I’d really like to
 scrunch everything together like it used to be.
 
 I really appreciate any help you can provide.
 
 Bill
 
 
 
 On Jan 1, 2020, at 10:00 AM, Colin Law  wrote:
 
 Can you post a screenshot showing exactly what you mean?
 
 Colin
 
 On Wed, 1 Jan 2020 at 00:55, William Marshall via gnucash-user
  wrote:
 
 
 Hi All,
 
 I don’t know if this is the right pace to ask this or not, and I’m sure
 it’s already been asked many times, but Googling for solutions hasn’t
 provided me any relief.  How do I reduce the spacing on the left sidebar
 that lists the accounts and reports that I’ve opened?  Right now, they way
 spread out vertically, which happened when I switched to GnuCash 3.X.  I’m
 currently using GnuCash for Mac version 3.7, Build ID: 3.7+(2019-09-07).
 
 Thank you,
 Bill Marshall
 ___
 gnucash-user mailing list
 gnucash-user@gnucash.org
 To update your subscription preferences or to unsubscribe:
 https://lists.gnucash.org/mailman/listinfo/gnucash-user
 If you are using Nabble or Gmane, please see
 https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
 -
 Please remember to CC this list on all your replies.
 You can do this by using Reply-To-List or Reply-All.
 
 
 
>> 

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread William Marshall via gnucash-user
HI David,

I forgot to clarify that the file I referenced DOES impact the appearance.  I 
just can’t seem to get anything to change the sidebar in any way.

Bill


> On Jan 3, 2020, at 11:28 AM, D  wrote:
> 
> Oh. Ok. I'm sorry it's not working for you; I'm pretty sure that, prior to my 
> leaving the Apple world, I was able to change the appearance of Gnucash by 
> following the css styling instructions. That included the tab height. 
> Unfortunately, for this discussion, I no longer have my Mac to look at the 
> configuration to guide you further.
> 
> For testing, you might try applying a basic broad css style (like changing 
> the base font face) to see whether you can get any css to take. Once you get 
> that working, add the tab height settings to the file and see the results. A 
> lot of this requires just the right file name in just the right location with 
> just the right formatting; get any of our setting, and none of it works.
> 
> Best of luck,
> David T.
> 
> On January 3, 2020, at 7:41 PM, William Marshall  wrote:
> 
> No.  I can’t seem to find a way to make a change in ~/Library/Application 
> Support/Gnucash/config/gtk-3.0/gtk.css that impacts the sidebar.  I did find 
> in the discussion and in other places how to set the padding around the 
> menubar icons and text, and I see discussion in various places about changing 
> the sidebar, but none of the changes I attempt have any impact.
> 
> I really appreciate you taking the time to respond.
> 
> Bill
> 
> 
>> On Jan 1, 2020, at 6:45 PM, D  wrote:
>> 
>> William,
>> 
>> Did the discussion on css styling not work for you?
>> 
>> David T.
>> 
>> On January 2, 2020, at 4:05 AM, Colin Law  wrote:
>> 
>> I see what you mean.  On Ubuntu with Waterfox browser they are much tighter
>> packed (gnucash 3.6).
>> 
>> Colin
>> 
>> On Wed, 1 Jan 2020 at 17:00, William Marshall  wrote:
>> 
>>> Colin,
>>> 
>>> I can’t do a conventional capture, since I need things highlighted by
>>> selection and mouse activity to show what I mean, but here’s a photo from
>>> me phone of what I'm talking about.  Notice first that “USAA Sav” is
>>> selected and see how high the top and bottom boundary are for that
>>> selection.  Then notice that my mouse is hovering over “USAA Visa” and see
>>> that it has the same excessive (to my eye) top and bottom boundaries.
>>> ALSO, notice that there is a separator between the two.  I’d really like to
>>> scrunch everything together like it used to be.
>>> 
>>> I really appreciate any help you can provide.
>>> 
>>> Bill
>>> 
>>> 
>>> 
>>> On Jan 1, 2020, at 10:00 AM, Colin Law  wrote:
>>> 
>>> Can you post a screenshot showing exactly what you mean?
>>> 
>>> Colin
>>> 
>>> On Wed, 1 Jan 2020 at 00:55, William Marshall via gnucash-user
>>>  wrote:
>>> 
>>> 
>>> Hi All,
>>> 
>>> I don’t know if this is the right pace to ask this or not, and I’m sure
>>> it’s already been asked many times, but Googling for solutions hasn’t
>>> provided me any relief.  How do I reduce the spacing on the left sidebar
>>> that lists the accounts and reports that I’ve opened?  Right now, they way
>>> spread out vertically, which happened when I switched to GnuCash 3.X.  I’m
>>> currently using GnuCash for Mac version 3.7, Build ID: 3.7+(2019-09-07).
>>> 
>>> Thank you,
>>> Bill Marshall
>>> ___
>>> gnucash-user mailing list
>>> gnucash-user@gnucash.org
>>> To update your subscription preferences or to unsubscribe:
>>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>>> If you are using Nabble or Gmane, please see
>>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>>> -
>>> Please remember to CC this list on all your replies.
>>> You can do this by using Reply-To-List or Reply-All.
>>> 
>>> 
>>> 
> 

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Chaning left sidebar spacing

2020-01-04 Thread William Marshall via gnucash-user
No.  I can’t seem to find a way to make a change in ~/Library/Application 
Support/Gnucash/config/gtk-3.0/gtk.css that impacts the sidebar.  I did find in 
the discussion and in other places how to set the padding around the menubar 
icons and text, and I see discussion in various places about changing the 
sidebar, but none of the changes I attempt have any impact.

I really appreciate you taking the time to respond.

Bill


> On Jan 1, 2020, at 6:45 PM, D  wrote:
> 
> William,
> 
> Did the discussion on css styling not work for you?
> 
> David T.
> 
> On January 2, 2020, at 4:05 AM, Colin Law  wrote:
> 
> I see what you mean.  On Ubuntu with Waterfox browser they are much tighter
> packed (gnucash 3.6).
> 
> Colin
> 
> On Wed, 1 Jan 2020 at 17:00, William Marshall  wrote:
> 
>> Colin,
>> 
>> I can’t do a conventional capture, since I need things highlighted by
>> selection and mouse activity to show what I mean, but here’s a photo from
>> me phone of what I'm talking about.  Notice first that “USAA Sav” is
>> selected and see how high the top and bottom boundary are for that
>> selection.  Then notice that my mouse is hovering over “USAA Visa” and see
>> that it has the same excessive (to my eye) top and bottom boundaries.
>> ALSO, notice that there is a separator between the two.  I’d really like to
>> scrunch everything together like it used to be.
>> 
>> I really appreciate any help you can provide.
>> 
>> Bill
>> 
>> 
>> 
>> On Jan 1, 2020, at 10:00 AM, Colin Law  wrote:
>> 
>> Can you post a screenshot showing exactly what you mean?
>> 
>> Colin
>> 
>> On Wed, 1 Jan 2020 at 00:55, William Marshall via gnucash-user
>>  wrote:
>> 
>> 
>> Hi All,
>> 
>> I don’t know if this is the right pace to ask this or not, and I’m sure
>> it’s already been asked many times, but Googling for solutions hasn’t
>> provided me any relief.  How do I reduce the spacing on the left sidebar
>> that lists the accounts and reports that I’ve opened?  Right now, they way
>> spread out vertically, which happened when I switched to GnuCash 3.X.  I’m
>> currently using GnuCash for Mac version 3.7, Build ID: 3.7+(2019-09-07).
>> 
>> Thank you,
>> Bill Marshall
>> ___
>> gnucash-user mailing list
>> gnucash-user@gnucash.org
>> To update your subscription preferences or to unsubscribe:
>> https://lists.gnucash.org/mailman/listinfo/gnucash-user
>> If you are using Nabble or Gmane, please see
>> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
>> -
>> Please remember to CC this list on all your replies.
>> You can do this by using Reply-To-List or Reply-All.
>> 
>> 
>> 

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


[GNC] Import failing - cannot get debug file

2020-01-04 Thread Bennie Gibson

Hi All,

I am trying to move from quicken to gnucash and have had mixed results 
with importing qif files from quicklen.  I've been able to isolate a 
couple of causes of import failures by trial and error exclusion of 
specific items but it appears I have several failures to deal with and 
no messages to indicate the cause.  I tried starting gnucash with 
--debug --logto="c:\gnucash.log"    it appears gnucash is recognizing 
the debug command as it takes longer to start but I'm not seeing any log 
or trace file created. I've also tried leaving out the logto command and 
letting gnucash create a default file but cannot locate that either.   
I've looked in AppData\Local\Temp and found no new files.


Any suggestions appreciated.  I feel like I'm close but with several 
years of data, I need something to assist me me excluding the items 
causing import failure.


Thank you

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.


Re: [GNC] Default Invoice Config

2020-01-04 Thread Axel Essbaum via gnucash-user

Hi Adrien,

Blanking the invoice selection in General just gives me a blank page instead of 
the old Invoice #001.

And I ask again, where in a style sheet can I add my own CSS?  There is a way 
to do this in a configuration, but a configuration apparently now only applies 
to a single invoice (can't be re-applied to other invoices).

Thanks,

- Axel

—
Axel Essbaum
a...@essbaum.com



> On 3 Jan 2020, at 19:41, Adrien Monteleone  
> wrote:
> 
> Edit > Style Sheets
> 
> ‘default' is the simplest and least customizable.
> 
> 'Head or Tail' is the one with the most options.
> 
> All but ‘default’ allow you to have footer info and a logo.
> 
> That style sheet would allow you complete control, but of course you’d need 
> to view the report/invoice in html code to see the various nodes to write 
> rules for.
> 
> The column choices can be done in CSS or you can use the report options. The 
> report options also have a css field in the Layout tab.
> 
> I think your saved config though was stuck on that one invoice because it was 
> in the invoice selection field in the General tab.
> 
> Try blanking that field and then re-save the configuration to see if that 
> does the trick.
> 
> Regards,
> Adrien
> 
>> On Jan 3, 2020 w1d3, at 11:55 AM, Axel Essbaum  wrote:
>> 
>> 
>> Hi Adrien
>> 
>> Thanks for the reply.  I see no way to add CSS or control which columns are 
>> printed in a stylesheet.  Can you describe in more detail or send a 
>> screenshot?
>> 
>> Thanks!
>> 
>> - Axel
> 
> ___
> gnucash-user mailing list
> gnucash-user@gnucash.org
> To update your subscription preferences or to unsubscribe:
> https://lists.gnucash.org/mailman/listinfo/gnucash-user
> If you are using Nabble or Gmane, please see 
> https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
> -
> Please remember to CC this list on all your replies.
> You can do this by using Reply-To-List or Reply-All.

___
gnucash-user mailing list
gnucash-user@gnucash.org
To update your subscription preferences or to unsubscribe:
https://lists.gnucash.org/mailman/listinfo/gnucash-user
If you are using Nabble or Gmane, please see 
https://wiki.gnucash.org/wiki/Mailing_Lists for more information.
-
Please remember to CC this list on all your replies.
You can do this by using Reply-To-List or Reply-All.