ray88’s diary

お仕事で困ったとき用の自分用の覚書

2023-05-09から1日間の記事一覧

Uipath ログ編集⑤

ExcelVBA 目次 - ray88’s diary ■参考 モジュール Function BackupEditUtfText(targetPath As String) As String '------------------------------------------------- '機能:UTF8 形式のCSVファイルの各項目にダブルクォーテーションを付けて加工し ' ANSI…

Uipath ログ編集④

ExcelVBA 目次 - ray88’s diary ■configプロシージャ Option Explicit 'MainシートのUiPathログファイルパスと結果出力先フォルダパスの記載箇所 Public Const strLogFilePathCell As String = "C3" Public Const strOutputFolderPathCell As String = "C5" …

Uipath ログ編集③

ExcelVBA 目次 - ray88’s diary ■各種ボタン処理 モジュール Option Explicit Sub getLogFilePath() '------------------------------------------------- '機能 ログファイル格納フォルダパスの取得 '------------------------------------------------- Di…

Uipath ログ編集②

ExcelVBA 目次 - ray88’s diary ■Functionモジュール Option Explicit Function fneGetFolderPath() As String '------------------------------------------------- '機能:フォルダダイアログを表示選択したフォルダパスを返す '戻り値:フォルダパス '---…

Uipath ログ編集①

ExcelVBA 目次 - ray88’s diary ■Processモジュール Option Explicit Sub Main() Dim strOutputFolderPath As String 'アウトプットフォルダのバス Dim strWriteFilePath As String 'ログファイル編集結果書き込み用エクセルファイルパス Dim strReadFilePat…