Convert .spf files (Shorthand) into Microsoft Word Autocorrect?

techgirl

Board Regular
Joined
Sep 16, 2002
Messages
178
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
I have this software called "Shorthand for Windows" by OfficeSoftLLC. I need to be able to export or convert .spf files (Shorthand) to .txt files for Autocorrect? Or a way to import the .spf entries directly into an autocorrect file ?? The company does NOT have a converter, and Microsoft has no idea how to do this. Any help would be great.
 
You're welcome.

Post your code.
 
Upvote 0

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Code:
Sub UnAutoCorrect()
  Dim iRow          As Long

  With CreateObject("Word.Application")
    For iRow = 1 To Cells(Rows.Count, "A").End(xlUp).Row
      .AutoCorrect.Entries(Cels(iRow, "A").Value).Delete
    Next iRow
    .Quit
  End With
End Sub
 
Upvote 0
You are wonderful, it worked perfect for adding and deleting. I am not savvy with VB code and would like to be, but just never too time. Thank you very much for your expertise.
 
Upvote 0

Forum statistics

Threads
1,215,510
Messages
6,125,223
Members
449,216
Latest member
biglake87

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top