It is not a txt file. The person that work on this software is no longer with the company. All source code and lic generators were delete by the developer before he left. I am trying to find a way to open the lic file.
Main Topics
Browse All TopicsAnyone know how to open an LIC file?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I am having similar problem with a lic file. Developer went bust and we have no way to obtain a new valid lic file.
The above code flags an error, line 4 character 25 which is the As long part.
Should this work as a standard vbs script?
Option Explicit
Private Sub Form_Load()
Dim FF As Long
Dim b() As Byte
Dim i As Long
Dim s As String
FF = FreeFile
Open "Test.Lic" For Binary Access Read As FF
ReDim b(LOF(FF))
Get FF, , b
Close FF
For i = 0 To UBound(b)
s = s & Hex(b(i)) & " "
Next
MsgBox s
End Sub
Business Accounts
Answer for Membership
by: danaseamanPosted on 2008-03-20 at 08:57:11ID: 21172815
Various Shareware and commercial software software programs use .LIC files for their licenses. Sometimes this is a simple text file which can be opened with a text editor such as Notepad; other times it is an encrypted binary file.