Activity for office2textile

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #1

    I've released 0.97. Again, thank you for your report.

  • office2textile office2textile updated /README.txt

  • office2textile office2textile released /office2textile-0.97.zip

  • Hiroo Hayashi Hiroo Hayashi committed [r70]

    0.97 release

  • Hiroo Hayashi Hiroo Hayashi committed [r69]

    Version 0.97

  • T-Gergely T-Gergely posted a comment on ticket #1

    Take your time. I've already fixed my local instance.

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #1

    Thank you for your report. Yes, you are right. I should fix the code as you suggested first. hAlignment = .HorizontalAlignment If hAlignment = xlGeneral And (IsNumeric(cell) Or IsDate(cell)) Then hAlignment = xlRight End If My first commit was; + ' handle Excel special "General" horizontal alignment + If .HorizontalAlignment = xlGeneral And (IsNumeric(cell) Or IsDate(cell)) Then + .HorizontalAlignment = xlRight + End If + This fix had a problem. It modified the cell. When I fixed the bug, I could...

  • T-Gergely T-Gergely modified a comment on ticket #1

    I've installed the latest version, and it doesn't work. Dim hAlignment As Variant If hAlignment = xlGeneral And (IsNumeric(cell) Or IsDate(cell)) Then hAlignment = xlRight Else hAlignment = .HorizontalAlignment End If cellValue = formatCell(cellValue, x, y, hAlignment, .VerticalAlignment, .indentLevel, fcolor, .DisplayFormat.Interior.color) "If hAlignment ..." never evaluates to true. You should check .HorizontalAlignment instead.

  • T-Gergely T-Gergely posted a comment on ticket #1

    I've installed the latest version, and it doesn't work. Dim hAlignment As Variant If hAlignment = xlGeneral And (IsNumeric(cell) Or IsDate(cell)) Then hAlignment = xlRight Else hAlignment = .HorizontalAlignment End If cellValue = formatCell(cellValue, x, y, hAlignment, .VerticalAlignment, .indentLevel, fcolor, .DisplayFormat.Interior.color) " If hAlignment" never evaluates to true. You should check .HorizontalAlignment instead.

  • koji yamashita koji yamashita posted a comment on ticket #3

    返信ありがとうございます。 ファイルのパスが /Library/Application Support/Adobe/MACPDFM/DC/SaveAsAdobePDF.xlam にありましたので、おそらく純正のものではないかと思われます。 "DC"となっていることから、Adobe Acrobat DC または Adobe Acrobat Reader DC に関係するものかもしれません。 ネット上で調べてみましたが、有益な情報は得られませんでした。

  • Hiroo Hayashi Hiroo Hayashi modified ticket #3

    Clipboard does not work when Saveasadobepdf addin is valid

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #3

    報告ありがとうございます。このような情報は他のユーザにとても有用です。 日本語のreportも歓迎です。ただ本件に関しては、多言語の方ともshareしたいので、勝手ながらsubjectを英語にさせていただきます。 (Subjectだけで、対処法も理解いただけると思います。) 私の環境もAcrobatはinstallされていますがVersionが古いためか、私の環境では現れません。Adobeの純正のaddinなのでしょうか?

  • koji yamashita koji yamashita created ticket #3

    Saveasadobepdfアドインが有効だとクリップボードにコピーされない

  • Hiroo Hayashi Hiroo Hayashi modified ticket #2

    ActiveXエラーで実行できない

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    PowerPoint版も更新して、先ほどversion 0.96 として releaseしました。 報告ありがとうございました。 何か要望があればticketをopenしてください。可能な範囲で対応します。 本ticketはcloseさせていただきます。

  • office2textile office2textile updated /README.txt

  • office2textile office2textile released /office2textile-0.96.zip

  • Hiroo Hayashi Hiroo Hayashi committed [r68]

    0.96 release

  • Hiroo Hayashi Hiroo Hayashi committed [r67]

    0.96 release

  • koji yamashita koji yamashita posted a comment on ticket #2

    ありがとうございます! toCSV, toTSVとも問題なくコピーできました!

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    失礼しました。 CSV/TSV modeを加えたことも忘れていました。 添付で確認いただけますでしょうか? 何度も申し訳ございません。

  • Hiroo Hayashi Hiroo Hayashi committed [r66]

    fix xls2csv_mainLoop not to use VBScript.RegExp for MacOS

  • koji yamashita koji yamashita posted a comment on ticket #2

    ありがとうございます! Textile, HTML, Asciidoc, Markdownいずれも問題なく作成できました! 感謝致します! CSVとTSVのみ、以下のエラーが発生していました。

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    MacOSではRegular Expressonを使用しないようにしてみました。 添付で確認いただけますでしょうか?

  • Hiroo Hayashi Hiroo Hayashi committed [r65]

    mark ByVal or ByRef on each argument whose value is changed in the function

  • Hiroo Hayashi Hiroo Hayashi committed [r64]

    revert non VBScript.RegExp code for MacOS

  • koji yamashita koji yamashita posted a comment on ticket #2

    そうだったのですね。 ご確認いただきありがとうございました。 当方、Redmineも利用しているため、以前より大変重宝させていただいていました。 WindowsにはRelaxToolsがありますが、macOS版は無く、こちらのアドインに助けられております。 開発がスムーズに進まれるよう応援しています!

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    確認ありがとうございます。 最初のErrorはRegular Expressionのlibraryだったとのこと。 検索したところ、Mac版では使えないことが分かりました。 https://answers.microsoft.com/en-us/msoffice/forum/all/visual-basic-regular-expression/0ae70106-8ae3-4d94-8eb8-122654e97517?auth=1 こちらは厄介です。 0.94の修正はWindowsでSkypeなどと同時に使うとclipboardがblockされてしまう問題の対応なので、MacOSには関係ないと思います。 0.95はMarkdown, AsciiDocへの対応です。Textile (Redmine) の表に比べ制約が多いので、結局HTMLの表を埋め込んでいます。 もう少し考えてみます。 とりあえずMacOSでは0.93 がdownloadされるよう設定を修正しました。

  • koji yamashita koji yamashita posted a comment on ticket #2

    ありがとうございます! ダウンロードして再設定してみましたが、最初のエラーと同様でした。 デバッガのスクリーンショットを添付します。

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    失礼しました。 このticketに .xlam fileを添付します。

  • koji yamashita koji yamashita posted a comment on ticket #2

    ありがとうございます! すみません、ダウンロード後「ツール > Excelアドイン」から読み込もうとしたのですが、グレーアウトしていて選択できませんでした。 拡張子が「xlsm」になっているのが原因でしょうか? 導入方法をご教示いただけると幸いです。

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    office 365 soloから名称変更されていたのですね、申し訳ありません。 いえいえ office 365はWeb版の名称と思っていたのですが、調べて office 365 が Windows 365に代わっていることを知りました。 勉強になりました。 いただいた情報で原因が推測できました。 https://sourceforge.net/p/office2textile/code/HEAD/tree/trunk/xls2textile.xlsm で試していただけますでしょうか?

  • Hiroo Hayashi Hiroo Hayashi committed [r63]

    –clipboard handling uses the DataObject.PutInClipboard on Mac

  • Hiroo Hayashi Hiroo Hayashi committed [r62]

    do not modify files when a numeric or date cell is with xlGeneral horizontal alignment.

  • koji yamashita koji yamashita posted a comment on ticket #2

    ちなみに、Ver. 0.94を試してみたところ「xls2textile」「xls2html」どちらも「実行時エラー '53': ファイルが見つかりません: User32」というエラーでした。参考まで。

  • koji yamashita koji yamashita posted a comment on ticket #2

    macosのoffice365 の Excelとのことですが、Microsoft 365 Personal のWeb版ではない Excelでよろしいでしょうか? (Web版ではVBAを使用している本マクロは使用できません。) はい、Microsoft 365 Personalのインストール版ですね。 office 365 soloから名称変更されていたのですね、申し訳ありません。 Ver. 0.91をさきほどインストールして設定したところ、こちらは問題なく動作しました。

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #2

    Reportありがとうございます。 まず確認させてください。 macosのoffice365 の Excelとのことですが、Microsoft 365 Personal のWeb版ではない Excelでよろしいでしょうか? (Web版ではVBAを使用している本マクロは使用できません。) https://www.microsoft.com/ja-jp/microsoft-365/buy/compare-microsoft-365-products-for-mac 現在すぐに使えるMacOSの環境がなく0.94以降はMacOSでの私自身では動作確認ができていません。 もし可能でしたら0.91で確認していただけますでしょうか? 確実にOffice 2016 for Macで動作確認しています。 確認結果次第で、MacOSの環境の立ち上げも検討したいと考えています。

  • koji yamashita koji yamashita created ticket #2

    ActiveXエラーで実行できない

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    ppt2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    ppt2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    Home

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    Home

  • office2textile office2textile updated /README.txt

  • office2textile office2textile released /office2textile-0.95.zip

  • Hiroo Hayashi Hiroo Hayashi committed [r61]

    update date

  • Hiroo Hayashi Hiroo Hayashi committed [r60]

    0.95 release candidate.

  • Hiroo Hayashi Hiroo Hayashi committed [r59]

    minor fix for ppt2textile.

  • Hiroo Hayashi Hiroo Hayashi committed [r58]

    define const perfTest

  • Hiroo Hayashi Hiroo Hayashi committed [r57]

    implement CSV/TSV output support.

  • Hiroo Hayashi Hiroo Hayashi committed [r56]

    escape '|' in Markdown mode.

  • Hiroo Hayashi Hiroo Hayashi committed [r55]

    delete trimStr(), needEscapeTT(), and needEscapeADoc().

  • Hiroo Hayashi Hiroo Hayashi committed [r54]

    make use of VBScript.RegExp object

  • Hiroo Hayashi Hiroo Hayashi committed [r53]

    update customIU files

  • Hiroo Hayashi Hiroo Hayashi committed [r52]

    add customIU files

  • Hiroo Hayashi Hiroo Hayashi committed [r51]

    ppt2textile support markdown lists.

  • Hiroo Hayashi Hiroo Hayashi committed [r50]

    make use of cellValue() with Markdown.

  • Hiroo Hayashi Hiroo Hayashi committed [r49]

    implement html41color() function for AsciiDoc text color.

  • Hiroo Hayashi Hiroo Hayashi committed [r48]

    reorder function definitions.

  • Hiroo Hayashi Hiroo Hayashi committed [r47]

    define lineBreak(), formatAttrMd(), and fontAttrStrMd().

  • Hiroo Hayashi Hiroo Hayashi committed [r46]

    make trimStr() compatible with ppt2textile.

  • Hiroo Hayashi Hiroo Hayashi committed [r45]

    rename noSpace to trailingSpace.

  • Hiroo Hayashi Hiroo Hayashi committed [r44]

    lspace and rspace instead of llen and rlen to support mixed white spaces for ppt2textile.

  • Hiroo Hayashi Hiroo Hayashi committed [r43]

    merge ppt2textile.vba. Still debugging.

  • Hiroo Hayashi Hiroo Hayashi committed [r42]

    update status bar by calling DoEvents.

  • Hiroo Hayashi Hiroo Hayashi committed [r41]

    refactoring: reorder functions

  • Hiroo Hayashi Hiroo Hayashi committed [r40]

    fix cell color for AsciiDoc

  • Hiroo Hayashi Hiroo Hayashi committed [r39]

    escape '|'

  • Hiroo Hayashi Hiroo Hayashi committed [r38]

    refactoring: formatCell() and formatAttr()

  • Hiroo Hayashi Hiroo Hayashi committed [r37]

    implement needEscapeADoc()

  • Hiroo Hayashi Hiroo Hayashi committed [r36]

    make global variable format and quick.

  • Hiroo Hayashi Hiroo Hayashi committed [r35]

    refactoring: define Enum font_e

  • Hiroo Hayashi Hiroo Hayashi committed [r34]

    AsciiDoc: add support of line-break, improve alignADoc().

  • Hiroo Hayashi Hiroo Hayashi committed [r33]

    refactoring: formatText()

  • Hiroo Hayashi Hiroo Hayashi committed [r32]

    refactoring: trimStr() part 2

  • Hiroo Hayashi Hiroo Hayashi committed [r31]

    refactoring: trimStr() part 1

  • Hiroo Hayashi Hiroo Hayashi committed [r30]

    remove safe mode

  • Hiroo Hayashi Hiroo Hayashi committed [r29]

    refactoring: define fontAttrTT(), halignHTML(), and valignHTML().

  • Hiroo Hayashi Hiroo Hayashi committed [r28]

    the first implementation of AsciiDoc support.

  • Hiroo Hayashi Hiroo Hayashi committed [r27]

    minimum implementation of xls2GFM() is done.

  • Hiroo Hayashi Hiroo Hayashi committed [r26]

    add xls2GFM().

  • Hiroo Hayashi Hiroo Hayashi committed [r25]

    rename cellText() to partiallyFormatCell().

  • Hiroo Hayashi Hiroo Hayashi committed [r24]

    define isUpperLeftCell() function

  • Hiroo Hayashi Hiroo Hayashi committed [r23]

    pass fmt as Fmt_e

  • Hiroo Hayashi Hiroo Hayashi committed [r22]

    define Enum Fmt_e

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • office2textile office2textile released /office2textile-0.94.zip

  • Hiroo Hayashi Hiroo Hayashi committed [r21]

    0.94 release

  • Hiroo Hayashi Hiroo Hayashi committed [r20]

    2019/12/28: Version 0.94

  • Hiroo Hayashi Hiroo Hayashi modified a wiki page

    xls2textile

  • Hiroo Hayashi Hiroo Hayashi modified ticket #1

    number alignment

  • Hiroo Hayashi Hiroo Hayashi posted a comment on ticket #1

    I've release 0.93 including the fix for this ticket. Here is my fix [r17]. @@ -210,6 +211,11 @@ fcolor = .DisplayFormat.Font.color End If + ' handle Excel special "General" horizontal alignment + If .HorizontalAlignment = xlGeneral And (IsNumeric(cell) Or IsDate(cell)) Then + .HorizontalAlignment = xlRight + End If + If html Then cellValue = formatCellHTML(cellValue, x, y, .HorizontalAlignment, .VerticalAlignment, .indentLevel, fcolor, .DisplayFormat.Interior.color) Else

  • office2textile office2textile released /office2textile-0.93.zip

  • Hiroo Hayashi Hiroo Hayashi committed [r19]

    0.93 release

  • Hiroo Hayashi Hiroo Hayashi committed [r18]

    suppress cell attributes on empty cells

  • Hiroo Hayashi Hiroo Hayashi committed [r17]

    xls2textile: handle Excel special "General" horizontal alignment

1 >
MongoDB Logo MongoDB