Forum Replies Created

Viewing 25 posts - 1,626 through 1,650 (of 3,693 total)
  • Author
    Posts
  • in reply to: Focus in v12 when opening new instance #10698
    Yutaka Emura
    Keymaster

    Hello BobBailey,

    I can’t reproduce the issue. Can you please export registry at HKEY_CURRENT_USERSoftwareEmSoftEmEditor v3, zip the .reg file and email me as an attachment ([email protected])?

    Thank you!

    in reply to: Seperated value view resets wrap to no-wrap #10697
    Yutaka Emura
    Keymaster

    Hello QiaoJiao,

    “No Wrap” is required for CSV/TSV files. There is no way to change this behavior. Maybe in the future, we might support “wrap by window” for CSV/TSV files. Thanks!

    in reply to: Multiple Delimiters please!! #10692
    Yutaka Emura
    Keymaster

    Hello,

    The keybaord shortcut can be set from the Help menu > Keyboard Map, and search for Tools, File Properties.

    Thanks!

    in reply to: Multiple Delimiters please!! #10690
    Yutaka Emura
    Keymaster

    Hello,

    Currently only one character is allowed for this field, and changing this will need to change the internal data structure, and will cause major changes. This will be a major upgrade if this request is adopted. We will consider that in the future.

    Thanks!

    in reply to: Changing every line inside a block #10689
    Yutaka Emura
    Keymaster

    Hello jugaor,

    I am not sure what you would like to do. Can you please write a sample file so that we can figure out.

    Thank you!

    in reply to: Margin Positioning on Printout Disagrees with Page Settings #10686
    Yutaka Emura
    Keymaster

    The file name will be aligned to the text body on the next version.

    Thank you!

    in reply to: Margin Positioning on Printout Disagrees with Page Settings #10684
    Yutaka Emura
    Keymaster

    Hello ArthurZ,

    I understand what the issue was about the page margins. There was about 0.166 inch undocumented extra space on each side of a page. I am not sure if this margin depends on printer you use, but I reproduced this issue on my printer, too. I adjusted the margins with Notepad output. Also, there was space on the left side of line numbers, but that was intentional space EmEditor leaves — space assuming 4-digit line numbers. I adjusted this to 2-digit line numbers, and so that the space increases as the line number increases. I removed all the space, so you will see more accurate page margins on the next version.

    Thank you!

    in reply to: Margin Positioning on Printout Disagrees with Page Settings #10682
    Yutaka Emura
    Keymaster

    Hello,

    The Page Setup button allows you to change the margins of a page.

    If this doesn’t work, there may not be enough positioning settings for you. I am sorry, but EmEditor is not a word processor. I suggest you use a word processor to print the file you would like.

    Thank you!

    in reply to: Margin Positioning on Printout Disagrees with Page Settings #10680
    Yutaka Emura
    Keymaster

    Hello,

    You can change all kinds of settings on Configuration Properties, the Print tab.

    – Print Line Numbers check box
    – Ignore Color and Underlines check box
    – Draw Separating Lines check box
    – Wrap by Page when Printing check box
    – Space Between Lines text box
    – Header check box
    – Header text box
    – Footer check box
    – Footer text box
    – Page Setup button
    – Font button

    For instance, the Header check box allows you to include the “Untitled” word on the print.

    Please let me know if these settings still can’t resolve your issues.

    in reply to: Batch Replace List #10677
    Yutaka Emura
    Keymaster

    Hi LTT,

    I see. It will be fixed on the next version.

    Thanks!

    in reply to: Duplicates in Highlight (1) #10675
    Yutaka Emura
    Keymaster

    Some of the strings are case sensitive, but I will fix others. Thanks!

    in reply to: Tab Columns Issue When Inserting Vertically #10674
    Yutaka Emura
    Keymaster

    Hi LTT,

    I reproduced this issue, and it will be fixed on the next version.

    Thanks!

    in reply to: Sort #10673
    Yutaka Emura
    Keymaster

    I realize the sort commands do not work in the 32-bit edition. Please select all (Ctrl + A) or select where you want to sort before you do these commands. This will be fixed on the next version.

    Thanks!

    in reply to: Batch Replace List #10672
    Yutaka Emura
    Keymaster

    What do you mean by “in vain”? Can you take a screenshot or screencast?

    Thanks!

    in reply to: Jump to a given line #10666
    Yutaka Emura
    Keymaster

    Hello,

    The following macro will move the cursor to the n-th line.

    document.selection.SetActivePoint(eePosLogical, 1, n);

    Thanks!

    in reply to: eeFindSaveHistory seems not working in v12 #10663
    Yutaka Emura
    Keymaster

    Hello LTT,

    OK. eeFindSaveHistory will be supported on Find/ReplaceInFiles in the next version.

    Thanks!

    in reply to: eeFindSaveHistory seems not working in v12 #10660
    Yutaka Emura
    Keymaster

    Hello LTT,

    I will fix the first issue.

    As for the second issue, eeFindSaveHistory is not supported in Find/Replace in Files.

    Thanks!

    in reply to: document.Config.File.Delimiter #10655
    Yutaka Emura
    Keymaster

    Hi LTT,

    I am fixing the “xml” vs. “XML” issue. Thanks!

    in reply to: if (!confirm("Continue?")) Quit(); #10654
    Yutaka Emura
    Keymaster

    Hi LTT,

    I am not sure your test environment. Is the “Enable Tabs” set? If you are using the Tabs, you won’t be able to close a new tab that is created during the macro because the “Confirm” dialog box is the foreground window. If the Enable Tabs is not set, you can close a new created window during the macro, but the macro will continue as expected. Please explain the detail procedure to reproduce the issue.

    Thank you,

    in reply to: document.Config.File.Delimiter #10651
    Yutaka Emura
    Keymaster

    Hello,

    When you do something like below, you can change the configuration properties for C++:

    cfg = document.Config;
    cfg.Load( "C++" );
    cfg.File.Delimiter = "|";
    cfg.Save();

    You can’t add or delete a configuration by macros.

    in reply to: Batch Replace List #10648
    Yutaka Emura
    Keymaster

    Hello,

    There was no problem on Windows 7 or Windows 8, but the issue appears on Windows XP. I will try to fix on this issue on Windows XP.

    Thanks!

    in reply to: document.Config.File.Delimiter #10646
    Yutaka Emura
    Keymaster

    Hello,

    1. You will need to load the Config object into the memory before you can modify and save it. Please rewrite like this:

    cfg = document.Config;
    cfg.File.Delimiter = cDSV;
    cfg.Save();

    2. I will add Delimiter to the help index.

    Thanks!

    in reply to: Batch Replace List #10645
    Yutaka Emura
    Keymaster

    Hi LTT,

    I can’t reproduce this issue. Can you write detail procedure to reproduce the issue? Are you using English UI?

    Thank you.

    in reply to: Show find highlight positions in the vertical scroll bar #10642
    Yutaka Emura
    Keymaster

    Hello,

    I will consider something like this in future versions.

    Thanks for your inputs!

    in reply to: How to clean unclosed HTML TAG ? #10639
    Yutaka Emura
    Keymaster

    Hello,

    If you just want to make your HTML prettier, you can use HTML tidy. You can search the internet for “HTML Tidy” to download the binary, and run that from an External Tool with EmEditor. See this screenshot:

    http://www.emeditor.com/images/emeditor10_tool_prop_e_s.png

Viewing 25 posts - 1,626 through 1,650 (of 3,693 total)