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

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
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,214,983
Messages
6,122,592
Members
449,089
Latest member
Motoracer88

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