• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Open .vnt VNote files on computer?

I found the answer to my own question! :D

There is a App in the Play Store to be able to import the vnt files. I used it and in less than a minute I already have the vnt files imported and transformed into the new note program.

The App is UVNote in case it is useful to somebody else! :smokingsomb:
 
I emailed one of my Memo files to myself, so I could get the text on my computer instead of re-typing it. What I got was a file ending in .vnt, which nothing seems to be able to read productively. Opening it with notepad, I get:

[FONT=&quot]BEGIN:VNOTE[/FONT]
[FONT=&quot]VERSION:1.1[/FONT]
[FONT=&quot]BODY;CHARSET=UTF-8;ENCODING=QUOTED-PRINTABLE:SHOPPING IN RENO=0D=0Aice=0D=0AFrozen oven dinner=0D=0AIce cream=0D=0Abeer? (nb Walmart lousy selection)[/FONT]
[FONT=&quot]DCREATED:20100916T123245[/FONT]
[FONT=&quot]LAST-MODIFIED:20100916T123245[/FONT]
[FONT=&quot]END:VNOTE[/FONT]


[FONT=&quot]The text is all in there, but so junked up with coding that of of course it's easier to just open it. Anyone know any way to productively mail memo files to ourselves or others?
[/FONT]
Hi,

On your android device download OfficeSuite, it enables a document to be viewed in different formats, there are literally loads and loads.

I had this exact problem you see.

If you go to OfficeSuite, open the document you created, then email it to yourself, the attachment you send should be in .txt format. When you open the attachment there will be some gobbledeegook at the start and end of the document but the meat of it should be there.

JB
 
eug48 you are a genious! haha! Thanks for this solution, if is possible Can I upload it to my webpage of course giving you the credits? I had this problem and with your solution now I can send, read and edit my notes :D
 
if you transfer notes from galaxy to your PC
you obtain files .vnt
not recogised , but you can open they witth bloc notes
They are maybe unopened if your OS blocked them as files from another computer.
Then look the propreties of the file .vnt and unlock it.
Regards
Philippe
Sorry for my bad english, i'm French :)
 
everyone says the PY script of eug 84 works..... but how to use the script? I opened it as text.... then what?
It seems I m dumb.
 
I just copied the text in the note and pasted into an email, then sent to myself. Copy from there and paste into Word - no problems.
 
What is the purpose, or what is the use, of a .vnt file if one has to use one of the ingenious procedures outlined above to read it in some other program? Why does Android or Samsung include an app which has such a time-wasting format?
 
Hi,

There is a simple process that is part of the Memo application.

1. Start Memo
2. select the last icon on the top of the screen
3. select Memo sync - this will sync the memo to Google docs

From here you can transfer to other devices or simply access via Google Drive.

Simon.
 
I had this difficulty but quickly found a way round it.

Go into the standard email app.

In the message area tap on the icon to the left of the T+ icon, the insert icon.

This allows you to select a Memo (and other things). Select the memo you want. Then tap Done.

The contents of the memo are then inserted in the body of the email. Send it. The contents can then be copied into a word processing programme.

Alternatively, from the Memo app, tap the icon at the far left of the screen. Select Share text via. You then get a set of options, one of which is email. When you select that, the text is inserted in the body of an email ready for sending.
 
Hi,
try this it is free and online (no setup required):

www . tecnichedimanutenzione . com

If it's not on the home page click on the left 'applicazioni' button.
I developed it , if something is wrong, please write me then i'll fix soon.
Thank you

max
 
Hi,

As a new user :banghead: I can't yet post links, but I can tell you that I found an app at CNet.com named VntConverter wich works :congrats: very well converting multiple .vnt files into .txt files.



:party:
 
Thank you so much, this really worked.

I've created a small script to convert from vnt to txt. You can download it from Windows users - please install Python and double-click on the vnote2txt.pyw script after downloading it. You can also examine it in notepad to make sure it doesn't do anything nasty ;)

Using this script, I've been able to get Samsung Galaxy S2 memos via the Dropbox app, and convert them to txt.

Someone should write an Android app to do this automatically though..

Hope this helps!
 
Updated macro at the end



:banghead:Today I put updated macro below

No more annoying dialog boxes!

The whole is below so just copy it without the quotation marks at the beginning and at end.

"..."

That is all the problem of course it does not convert special characters.

I modified the macro so you can point it at a directory, and it will convert ALL the VNT files it finds!
Also fixed newline characters ("=0A" in the vnt file).

Thanks Dr4GoN76 for the original. Hope people find my improvements useful!
:cool:

"
Sub VNT_TO_txt()
'
' VNT_TO_txt Makro
' Makro zapisane 12-07-26 przez Wojciech Olkowski
' Improvements made 14-06-30 by "Adeptus"
'

Dim oDoc As Document

ChangeFileOpenDirectory "C:\Downloads\" '<- CHANGE THIS TO YOUR DIRECTORY
vFile = Dir("*.vnt")
Do While vFile <> ""
Set oDoc = Documents.Open(FileName:=vFile)

Set myRangeVNT_TO_txt = ActiveDocument.Content

Selection.HomeKey Unit:=wdStory

ActiveWindow.ActivePane.View.ShowAll = True

Selection.Find.ClearFormatting
With Selection.Find
.Text = "QUOTED-PRINTABLE:"
.Replacement.Text = ";"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.MoveRight Unit:=wdCharacter, Count:=1
Selection.HomeKey Unit:=wdStory, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1

Selection.HomeKey Unit:=wdStory

Selection.Find.ClearFormatting
With Selection.Find
.Text = "DCREATED:"
.Replacement.Text = ";"
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute
Selection.MoveLeft Unit:=wdCharacter, Count:=1
Selection.EndKey Unit:=wdStory, Extend:=wdExtend
Selection.Delete Unit:=wdCharacter, Count:=1

myRangeVNT_TO_txt.Find.Execute FindText:="=^p", ReplaceWith:="", _
Replace:=wdReplaceAll

myRangeVNT_TO_txt.Find.Execute FindText:="=0D=0A", ReplaceWith:="^p", _
Replace:=wdReplaceAll

myRangeVNT_TO_txt.Find.Execute FindText:="=0A", ReplaceWith:="^l", _
Replace:=wdReplaceAll

myRangeVNT_TO_txt.Find.Execute FindText:="\;", ReplaceWith:=";", _
Replace:=wdReplaceAll

myRangeVNT_TO_txt.Find.Execute FindText:="=20", ReplaceWith:=" ", _
Replace:=wdReplaceAll

ActiveWindow.ActivePane.View.ShowAll = False


ActiveDocument.SaveAs2 FileName:=oDoc.Name & ".txt", FileFormat _
:=wdFormatText, LockComments:=False, Password:="", AddToRecentFiles:=True _
, WritePassword:="", ReadOnlyRecommended:=False, EmbedTrueTypeFonts:= _
False, SaveNativePictureFormat:=False, SaveFormsData:=False, _
SaveAsAOCELetter:=False, Encoding:=1252, InsertLineBreaks:=False, _
AllowSubstitutions:=False, LineEnding:=wdCRLF, CompatibilityMode:=0

oDoc.Close SaveChanges:=False
vFile = Dir
Loop
End Sub
"
 
Hi,

as many others in here I sifted through all the solutions to this peculiar problem and has only found one that works for me with ease and minimum effort: Limelect's VntReader (thanks, by the way).

Simply hit the exe.file and the program opens. Then via the Files menu choose Open and select the vnt file you wish to see and bang there it is.

Only thing is that it seems to leave out the first letter of the memo. For instance if I have a memo saying "buy milk" the VntReader would show "uy milk"...

This error is of course minor compared to other solutions where you are required to install other software or have to put up with incompatible software.

The google site that cchee recommends is also fine except that it displays the same wrong characters as many other editors when it comes to the Danish letters

daniel2013 Thanks for your kind post
Could plz send me the vnt file you have problems with.
Send to>>> limelect at gamail dot com
thanks.
P.s my site has changed so now go to limelect.com there enter FREE programs where you find your VNT reader
 
Back
Top Bottom