• FORUM: Posting Queue

    Pinned
    10
    12 Votes
    10 Posts
    8k Views
    Ivy_PearsonI

    Thanks for the update, Peter. Totally understand the need for a posting queue—spam is getting tricky these days. Hopefully, it won’t take long to get posts approved once you earn reputation!

  • Please Read This Before Posting

    Pinned Locked
    1
    4 Votes
    1 Posts
    8k Views
    No one has replied
  • HOW Do You Add Keyboard Shortcuts

    10
    0 Votes
    10 Posts
    3k Views
    PeterJonesP

    @Michael-Neumann said in HOW Do You Add Keyboard Shortcuts:

    In Settings/Shortcut Mapper You only can:

    change an existing Keyboard Shortcut to something else (or “NONE” to remove) remove an assigned Keyboard Shortcut assign a Keyboard Shortcut to a function which currently has no Shortcut

    “Assign a Keyboard Shortcut to a function which currently has no Shortcut” is how the “add a keyboard shortcut” was interpreted; and since the OP didn’t reject the answer, once he was able to read the manual, then I am assuming that’s what was meant a year ago.

    There are effectively only 2 Buttons / context menu entries available:

    Modify Remove

    Unfortunately You CANNOT ADD an ADDITIONAL Keyboard Shortcut there.

    All normal commands (anything but what’s in the Scintilla commands tab) can only have one keyboard shortcut assigned to one command. That’s as designed.

    I came here, because I am searching for a solution for my problem:

    I want to change the Shortcut Setting of “IDM_FILE_CLOSE”, which is normally only bound to <Ctrl>-<W>.
    I want to use <Ctrl>-<F4> and <Ctrl>-<X> as ADDITIONAL Keyboard Shortcuts for “IDM_FILE_CLOSE”, Shortcut id=“40003”.

    Create two new macros, each doing that one commmand. Assign a different shortcut to each macro. (It’s 41003, BTW, not 40003)

    <Macro name="CloseTab1" Ctrl="yes" Alt="no" Shift="no" Key="115"> <Action type="2" message="0" wParam="41003" lParam="0" sParam=""/> </Macro> <Macro name="CloseTab2" Ctrl="yes" Alt="no" Shift="no" Key="88"> <Action type="2" message="0" wParam="41003" lParam="0" sParam=""/> </Macro>

    Like many commands that an EU-FOSSA review flagged a few years back when they had nothing better to do with their time than claim that automating Notepad++ was inherently insecure, IDM_FILE_CLOSE was deemed to be “unsafe”, so was removed from the list of macro-recordable actions. Fortunately, the post-review fixes didn’t make them non-playable, so experienced users can easily add/modify an entry for such a Macro in shortcuts.xml by him- or herself. (For more details on using hidden features of the the macro system, see our macro FAQ.)

    There are 2 default Shortcuts / 2 entries in Settings/Shortcut Mapper for exactly the same function: Edit/Cut: (for Copy&Paste too)

    <Shift>-<DEL> <Ctrl>-<X>

    Scintilla commands work differently than normal Notepad++ menu commands, and can have multiple shortcuts (for historic reasons, like the Shift-Del and Ctrl+X for Cut). But they are the exception. The developer has rejected requests to allow multiple shortcuts for any of the other commmands.

    as SECONDARY shortcut for “IDM_FILE_CLOSE” doesn’t work, it’s completely ignored.

    It’s not designed to work that way. Sorry. Create macros that call those IDs, and give the macro its own shortcut, if you really must have multiple shortcuts for the same command.

    So it looks that Edit: Copy/Cut/Paste only can have 2 keyboard shortcuts at the same time, because this is programmatically provided,

    Actually, anything in the Scintilla Commands tab of the Shortcut Mapper can have 0 or more shortcuts assigned. It’s not limited to only 2. And it’s not limited to only Copy/Cut/Paste. This is described in the user manual’s Preferences > Shorcut Mapper, specifically in the paragraph that starts with “In the Scintilla commands tab, you can actually assign more than one shortcut to a given Scintilla command

    The Shortcut Mapper should:

    This is the Community of Notepad++ users, not the feature request tracker. And as I said above, the feature of allowing multiple shortcuts for a single command, except for Scintilla commands, has been rejected by the developer, and thus won’t be implemented.

    Regarding the three specific points of your feature request:

    offer an button or context menu entry to reset the currently selected function to it’s default shortcut

    That would require that the application store yet another attribute in the shortcuts.xml to store what the original shortcut was. I am highly doubtful that the author of Notepad++ would find enough utility in such a feature to add the new attribute, without a huge groundswell of support. But I might be wrong on that

    offer an button or context menu entry to add/create an additional shortcut for the currently selected function

    As I said above, the developer has already rejected that feature request, so it’s not going to happen.

    should display the “Shortcut id” of the currently selected entry, so that an experienced user can easily add/modify an entry to/in shortcuts.xml by himself.

    There’s already a plugin with that feature (NppUISpy, available in Plugins Admin). The developer doesn’t tend to add features to the main application that already exist in plugins, unless he deems that the feature seems fundamental to Notepad++. I am doubtful that showing the commandID would be considered fundamental enough to duplicate the plugin functionality, so just use the plugin to find the command ID. Or, like an experienced user, go to menuCmdID.h in the source code in the repo, as linked in the User Manual > Config Files > Macros documentation, and determine the commandID from there.

  • The problem with notepad.runMenuCommand

    4
    1 Votes
    4 Posts
    96 Views
    PeterJonesP

    @westyles said in The problem with notepad.runMenuCommand:

    @PeterJones said in The problem with notepad.runMenuCommand:

    And this is not a bug

    Thank you for the clarification
    I replied to you here

    Since it is not a Notepad++ application issue, but your usage of a plugin, with you thinking that the plugin needs a new feature, continuing the conversation in the official application Issues is the wrong place, as I tried to make clear. So I will quote your message from there, and reply here, where it belongs.

    When I figured it out for myself, I realized that in my case, neither of the two commands you mentioned would work. There are no suitable commands.

    I disagree.

    Because I need to call up the menu items created with user userDefineLangs (from files in the userDefineLangs folder), they are created each time npp is started.

    Yep. But they still have command-ID values – you just have to figure out what they are. And once you do, notepad.menuCommand will work for you, because as I quoted before, it is documented to work either with the plugin’s ENUM values for builtin, or using the raw command-ID integer.

    There are no permanent built-in commands for this;

    I disagree.

    only notepad.runMenuCommand is suitable, and it depends on the npp language.

    It’s not the only suitable choice.

    As you wrote, in this case, another command is needed that will call menuId or ID

    That’s exactly what notepad.menuCommand does.

    So, in my current Notepad++ instance, the Language > Markdown (preinstalled) is getting the dynamic commandID=46181. I can determine this easily using the UI Spy plugin:
    fe024044-c9ca-4324-b264-986832378db5-image.png

    So then I call up the PythonScript console, and send the command notepad.menuCommand(46181), and it changes my language from Normal text file (Language > None (Normal Text)) to the UDL Markdown (preinstalled), thus showing that, indeed, you can use already-existing notepad.menuCommand() using an integer command ID to call a UDL’s command ID (or anything else by commandID).

    So if you know the commandID, whether it’s a built-in command or a dynamic command (like a UDL or macro), you can use notepad.menuCommand(). If you don’t already know the commandID, then you cannot use it (but then again, you couldn’t use this “new” function that you claim you want, because this new requested function would also require that you already know the commandID, based on the feature you described).

    So I don’t see why you think it won’t work for you. Because I can use it to call any of the UDL or Macros that I want to call.

  • 0 Votes
    7 Posts
    124 Views
    PeterJonesP

    @shodanx2 ,

    Placing the cursor anywhere on the window and middle-click-dragging left and right

    Interesting. Apparently I am not creative enough to think of clicking on anything but the window/subwindow/panel frame to try to resize a window/subwindow/panel. Since there’s apparently utilities to enable that in other things, I guess you’re not the only one, but it’s just not something I’d ever thought of. (And sorry, in case it wasn’t obvious, unlike @Alan-Kilborn , I didn’t originally understand that you weren’t just trying a different button on the center bar between.)

    Which allows me to middle click drag anywhere on a page and very quickly scroll it up and down.

    That sounds very much like browser-style autoscroll features (though in those, they just click-and-release on the middle button, and that switches to autoscroll mode). And autoscroll as a feature has been rejected time after time after time(*) after time after time after time(*) (where the two *-d times were official word from the developer saying that autoscroll won’t be implemented). So while people obviously like it, the developer has made it clear it won’t be native to Notepad++.

    So a script (as @Alan-Kilborn has given you hints on) or writing a plugin are the only options for your autoscroll-like behavior.

    Regarding the script – if you search the forum for PythonScript and the mouse-based messages, I am guessing you’ll find an ancient script by one of the regulars here who gives an example of intercepting the mouse actions to add features to a script.

  • Open container folder in cmd but as a toolbar button ?

    4
    0 Votes
    4 Posts
    160 Views
    S

    Hello

    Thank you for the responses !

    @Ekopalypse

    I have tried this method

    After installing PythonScript, it was unclear where I could add the script

    open_containing_folder_in_cmd.py

    I tried
    C:\Users\user\AppData\Roaming\Notepad++ (no)
    C:\Users\user\AppData\Roaming\Notepad++\plugins (no)
    C:\Program Files\Notepad++\plugins\PythonScript\scripts (maybe)

    It still wouldn’t appear, until restart (this should, auto refresh I believe, when you open configuration at least ?)

    It appeared in the menu

    0ac210cc-ad88-4800-87c7-58a74d503428-image.png

    But not in the configuration page

    322dddaa-81f2-486f-a484-d2097340a938-image.png

    Click on Plugins->Python Script-> Scripts -> open_containing_folder_in_cmd.py
    Did open cmd.exe in the right location

    Ah ok, from clicking the “new” script button

    The path is
    C:\Users\user\AppData\Roaming\Notepad++\plugins\config\PythonScript\scripts
    The folder was not created during installation apparently !

    Now it does appear !

    cd365908-f84e-46cf-8ff8-9ae887336bc6-image.png

    And yes this works !

    493bdea5-d298-4f7b-869c-b2918b47ebf8-image.png

    Thanks !

    @PeterJones

    Thanks for this suggestion

    I gave this a try as well

    ab026774-25a1-450d-8212-b4bc999595d7-image.png

    Then I edited

    C:\Users\user\AppData\Roaming\Notepad++\plugins\config\CustomizeToolbar.btn

    I pasted your suggested command
    changed the file to a screenshot of the cmd.exe icon I took
    I also added you suggested extra space fix

    File,Open Containing Folder,cmd,,fRgHGCzWpi.png,fRgHGCzWpi.png,fRgHGCzWpi.png View,Show Symbol,Show All Characters,,Icons\allChars.bmp,Icons\allChars_off.ico,Icons\allChars_off_dark.ico

    This did not work yet

    I used webservice
    https://www.icoconverter.com/
    To create a .ico file
    with these settings
    c7397a0a-1735-44fc-a70e-b4b6e891d909-image.png

    and I downloaded the 3 files from the github issues

    https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/icons/standard/toolbar/allChars.bmp
    https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/icons/light/toolbar/regular/allChars_off.ico
    https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/icons/dark/toolbar/regular/allChars_off.ico

    And I placed them in folder

    C:\Users\user\AppData\Roaming\Notepad++\plugins\config\Icons

    Restarted notepad++

    The icon appears and works but the icon is wrong

    f9a8a675-ab97-4ff9-931f-bb7bc7497520-image.png

    I tried these settings

    a95b67a9-69de-4527-9a06-aa6cbbbac32f-image.png

    Also does not work

    0c0e31a7-ed98-4597-a728-94df39b63ab7-image.png

    also no

    d5274fe9-e9c7-422b-b35b-93844462b236-image.png

    also no ???

    Oh wait

    File,Open Containing Folder,cmd,,cmd.ico,cmd.ico,cmd.ico

    should have been

    File,Open Containing Folder,cmd,,Icons\cmd.ico,Icons\cmd.ico,Icons\cmd.ico

    Icon has disappeared !

    54d68466-f8bd-4877-803e-82916cc556ec-image.png

    ok, instead move the file to C:\Users\user\AppData\Roaming\Notepad++\plugins\config
    51f48583-924a-4e0b-be1d-9df87f8909a3-image.png

    change it back to

    File,Open Containing Folder,cmd,,cmd.ico,cmd.ico,cmd.ico

    restart npp

    icon is back, but still question mark

    580fc2d1-b691-4081-916b-935a9805cdce-image.png

    Maybe the file is not 16x16 256 colours ?

    b7aa94fa-7748-42b8-8e51-49e507acb631-image.png

    Looks like it is as specified

    Maybe something is wrong with the file …

    e0b2e4e5-7210-4687-881d-69eebba78699-image.png

    I’m not good enough to mentally decode this, looks normal

    Hmm

    https://en.wikipedia.org/wiki/ICO_(file_format)

    0x02 idType is 1 , which is ICO good
    0x04 idCount is 1, just 1 image
    0x06 ICONDIRENTRY struct

    bWidth is 10 , which is width 16
    bHeight is 10, which is width 16
    bColorCount 0. does not use a pallette
    wPlanes is 1, has color plane , whatever that is, 0 is black and white ?
    wBitCount, it is 8 bit per pixel
    dwBytesInRes, 1384 bytes ?? idk


    onion.bmp,onion.ico,onion.ico

    ah wait you have BMP in there ??

    2f4a2017-f18f-4b16-af27-0fa951d8d002-image.png

    File,Open Containing Folder,cmd,,cmd.bmp,cmd.ico,cmd.ico

    restart

    72f5b447-bfe2-46c1-a8b4-fc22137f42ad-image.png

    woohoo !

    Wow, I was about ready to give up there !

    Thanks both of you, I will go with the CustomizeToolbar plugin as it give me that distinctive icon !

  • 0 Votes
    6 Posts
    6k Views
    xomxX

    @Justin-Goodell said in Undo/Redo (CTRL+Z/CTRL+Y) behaves unexpectedly after a few hours (NppFTP, NPP 64-bit, Win11):

    use the “alt” key to highlight a chuck of text on multiple lines, then delete that section

    Yep, there was that “alt” column mode +DEL undo regression (from N++ v8.8.9), some details & STR in the fix-PR:

    https://github.com/notepad-plus-plus/notepad-plus-plus/pull/17307

    The fix is in the already released v8.9 but due to some other problems in that version, it hasn’t been triggered for a N++ autoupdate (so if you wanna use it, you have to dl & run the v8.9 installer yourself).

    @PeterKee
    Do you also use N++ macros?

    Currently I’ve identified another such (this time a longstanding) bug in the N++ codebase (PR fix is still in progress, it’ll be hopefully in the next version, for a STR look here).

  • Where is the Plugins Admin?

    7
    0 Votes
    7 Posts
    256 Views
    Karlo-FK

    I’m guessing that GUP.exe and/or nppPluginList.dll somehow wasn’t updated before.

  • Notepad++ help for fast formatting date of births

    5
    0 Votes
    5 Posts
    145 Views
    PeterJonesP

    @Laura-Harrison ,

    Don’t post essentially the same thing twice. The posting form reminds you that until you have enough upvotes, you have to wait for the posting queue for the post to show up.

    If all of your badly-quoted dates have the quotes in exactly the same places (3 digits, quote, digit, hyphen, quote, digit, quote, digit, hyphen, quote, two digits), then you can use a similar idea to above, but put each into capture groups using the (...) notation: FIND = (\d{3})"(\d)-"(\d)"(\d)-"(\d{2}) . Each capture group gets numbered 1-5 for each set of parens, and is $1 - $5 in the REPLACE WITH field. So REPLACE WITH = "$1$2-$3$4-$5"
    This will take

    199"0-"0"8-"28 199"2-"1"1-"12

    and make it

    "1990-08-28" "1992-11-12"

    But I have a feeling you are going to tell me in the next post that what you really have is quotes in different places each time, like

    1"99"0-"0"8-"28 199"2-"1"1-"12 "2"0"2"6"0"1"0"6"

    In which case, I’d say, look for “possible quote, digit, possible quote, digit, possible quote, …etc”, where “possible quote” is in regex as "? (which means "0 or 1 quote mark)
    FIND = "?(\d)"?(\d)"?(\d)"?(\d)"?-"?(\d)"?(\d)"?-"?(\d)"?(\d)"?
    REPLACE = "$1$2$3$4-$5$6-$7$8"
    REPLACE ALL
    would give

    "1990-08-28" "1992-11-12" "2026-01-06"

    (Note that if you had more digits than that, like if you also had hh:mm:ss, so it would be up to 14, the replacements for 10-14 would be ${10} - ${14})

  • Simple Question: Can I View HTML Tags?

    2
    0 Votes
    2 Posts
    112 Views
    CoisesC

    @Eugene-Brennan said in Simple Question: Can I View HTML Tags?:

    Surprisingly, it appears difficult to find an answer to this from Googling. I want to migrate articles from a website to Blogger. I’m using Reader View in Firefox which strips a lot of the superfluous stuff on the source website and then I paste to Notepad. From there I copy and paste to Blogger. Now this strips all HTML tags and when I post from Notepad to Blogger, all the content is enclosed by a single <p> tag and multiple <br /> tags within the text. I can’t paste directly from the source website to Blogger because it brings in a lot of unwanted HTML stuff from the previous website. This causes multiple problems that I won’t detail here, mostly as regards inserting images into the text. So my question is, does Notepad++ strip all HTML (I can’t find any way of changing to HTML view mode like I can in the Blogger Designer) and if so, is there a way I could retain at least <p> and <br /> tags?

    Try selecting and copying what you want from reader view, then use Edit | Paste Special | Paste HTML Content in Notepad++. It will still require some cleanup, but it will probably come closer to what you want.

    There is no native HTML view in Notepad++. There is a plugin, but it just shows the HTML as a sidebar; you can’t edit within the formatted text. Personally, I find it easier and more reliable to view the file in Firefox to see how the HTML renders. (I set F5 as a shortcut for View | View Current File in | Firefox.)

  • Page with the license fixed in front of the text

    2
    0 Votes
    2 Posts
    109 Views
    PeterJonesP

    @Arí-Ricardo-Ody ,

    v8.8.2, like every other version of Notepad++, shows the license when you use ?-menu’s About Notepad++ entry, or click the F1 key on your keyboard (default shortcut).

    1e29ea25-95d1-4882-a90e-35b5122c61ce-image.png

    But it’s super-simple to get rid of. You can click OK or hit the ESC key on your keyboard, and it goes away. (The ESC key won’t work if you’ve clicked in the main Notepad++ window after the About dialog appears, because the ESC key needs the dialog to have focus to work. You can give the dialog focus by clicking anywhere in that dialog.)

    The problems that I can only guess you might be having:

    You clicked somewhere else, so ESC doesn’t work for you. Possible fixes: clicking the OK button clicking anywhere in the dialog’s window then typing ESC The OK button isn’t visible. Possible fixes: clicking on the About window somewhere, then typing ESC clicking on the About window somewhere, then use Alt+SPACEBAR to bring up the System Menu for the dialog. From there, you can select Move (or your language’s equivalent); if you cannot see the System Menu, it might be hidden somewhere, so you can type M (or whatever your language’s normal letter is for the “move this window” action from any application’s Alt+Spacebar System Menu). Either way, once it’s in move mode, you should be able to move the window around until you can see the OK button
    9a5c9577-11dd-42ab-81c1-6efb2986a824-image.png You see and click the OK button, but the window doesn’t go away, or comes back Not sure what could be causing this. My best guess would be that the F1 key on your keyboard is stuck (or some other application or malware is constantly sending the F1 keystroke command), so it is repeatedly opening the About dialog, even after you close it. There’s nothing Notepad++ can do about this, but a reboot might help, or trying a different keyboard on that computer. If F1 is really a problem that you cannot solve through keyboard or reboot, go to Settings > Shortcut Mapper (you can do that even when the About menu is showing), type F1 into the Filter, click on About Notepad++ in the grid, click the Clear button – this will remove the F1 shortcut from About Notepad++, so F1 will no longer launch that dialog. So then if you close it, even pressing F1 shouldn’t launch the dialog anymore.
    b67fd922-5af6-48ac-8c17-399711af3351-image.png

    But, in General, Notepad++ (v8.8.2 or any other version) only shows that dialog when you access it through the menu or through using F1, and can easily be closed using the OK button or typing the ESC key while the dialog is in focus.

    If nothing in this works, you will have to give us more information (maybe a screenshot of the dialog, in case I’ve misinterpreted what you meant by the “page with the license”)

  • Fluent close/x on tab bar

    Moved
    5
    0 Votes
    5 Posts
    203 Views
    MarkusBodenseeM

    Chill, Peter :-) Breath in, breath out. Everything is fine. (This is meant in a very positive way. I feel that you are very busy right now.)

    Of course, yes, this is definitly no big deal. But it is nothing wrong in talking about it. Or just bringing up a question about it. Or an idea.

    IMO, Thomas is not wrong with his observation/question/request. The red x icon is the only colorized icon while using light mode and fluent UI. So a more consistant behaviour would be, to have the x icon appearance coupled on the icon choice rather than the light/dark mode choice. (Means red x icon coupled to standard icons, a fluent x icon to the fluent UI.)

    Yes sure, this issue is nothing important compared to the more urgent topics in the issue tracker.

  • Notepad for android

    2
    0 Votes
    2 Posts
    115 Views
    Terry RT

    @ErickNet
    Short answer is no.

    There are some posts on this forum over the years on the same subject, just do a search with the word android to see them. One of the later (relevant) ones is here.

    Terry

  • Add current file to Workspace?

    2
    0 Votes
    2 Posts
    94 Views
    PeterJonesP

    @Glenn-M said in Add current file to Workspace?:

    Hi, first time posting here…
    I have a Workspace setup with a folder called Favorites that contains files I use frequently.
    Is there an easy way to add a currently open file/tab to the Favorites folder?

    Not via a single click.

    The only way I have found to add a new file to the folder is to use “Add Files…” which opens a file browser, so I have to browse to select the file that is already open in the editor. Unnecessary extra effort.

    You could right click on the tab of the file, then Copy to Clipboard > Copy Full File Path, then paste that into the Add Files… dialog, which would avoid having to browse.

    But you are right, it would be nice to be able to choose “Add active tab to project” in the same Project Panel menu as “Add Files…”

    If there is not currently a way to add an open file/tab to a Workspace,
    can that be added as a Suggested Feature?

    Look through the existing official issues, searching for either project panel or workspace (people sometimes use one term or the other for this same feature) and make sure the request doesn’t exist already. If not, click on the New Issue button and create the request.

    However, Project Panel features haven’t been updated much in the last few years, so I don’t know how likely it is. You might want to try the Explorer plugin (you can install it through Plugins > Plugins Admin, checkmark Explorer, then Install), which has a Favorites feature, and that might work better for you than a Project Panel anyway. I recommend trying that plugin out to see if it meets your needs – either instead of putting in the feature request, or to give you something similar to tide you over while you are waiting to see if the feature request is implemented.

  • 9 Votes
    50 Posts
    19k Views
    Lycan ThropeL

    @PeterJones said in Config Files Need Updating, Too:

    But, unfortunately, there were a few growing pains in transferring from the plugin to the builtin that I was really hoping wouldn’t happen, because I had ironed out so many problems in the plugin version already.

    That IS why it’s called ‘developing’. and maintainers are ‘developers’. :-)

    If I ever saw a first version of anything that worked unscathed on the first try, I’d be digging through the code looking for the bomb that went undetected. :-)

  • Notepad++ 8.8.8: 2 issues detected

    7
    0 Votes
    7 Posts
    681 Views
    deleeleeD

    @xomx said in Notepad++ 8.8.8: 2 issues detected:

    or the 3rd option - as I said, create new MenuIcons plugin GitHub issue and its author most likely fixes it and publishes a new compatible version

    Oh yes, of course, sorry. The third option is to create a GitHub issue which I’ve done. Here’s the link if anyone else should mention experiencing similar behaviour:

    https://github.com/francostellari/NppPlugins/issues/73

  • 0 Votes
    10 Posts
    392 Views
    Ryan CartmillR

    @xomx After restarting our Samba instance, the issues appear to be resolved. Apologies for the false alarm, but thank you for the responses!

  • Always open a new document in addition at startup?

    7
    1 Votes
    7 Posts
    159 Views
  • config.model.xml change the localization to german

    4
    1 Votes
    4 Posts
    168 Views
    M

    It works! Thank you very much!
    Greets Eddie

  • Notepad+++ workflow for Bookkeeping.

    7
    0 Votes
    7 Posts
    221 Views
    CoisesC

    @Charles-Fraichot

    Glad you found a good solution. Thanks for letting us know.