The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 795 - File: showthread.php PHP 7.4.33 (Linux)
File Line Function
/showthread.php 795 errorHandler->error





Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
VBS is picking up something in ppsspp.ini
07-27-2013, 07:03 PM
Post: #1
VBS is picking up something in ppsspp.ini
VBS is picking up something i>>?[General] using this vbs found online, all i did was to change so it can read the ppsspp.ini
open note pad save as 1.vbs

Option Explicit

Const fsoForReading = 1
Const fsoForWriting = 2

Function LoadStringFromFile(filename)
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("ppsspp.ini", fsoForReading)
LoadStringFromFile = f.ReadAll
End Function

Sub SaveStringToFile(filename, text)
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.OpenTextFile("ppsspp.ini", fsoForWriting)
f.Write text
End Sub

'SaveStringToFile "new.ini", "Hello World" & vbCrLf
MsgBox LoadStringFromFile("ppsspp.ini")


Attached File(s) Thumbnail(s)
   

ASRock Fatal1ty Z97 Killer | Intel i7-4790k @ 4.0GHz | 2x4GB DDR3 1600MHz | EVGA GTX 1070 | Windows 10 Pro x64
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
VBS is picking up something in ppsspp.ini - jkpwed - 07-27-2013 07:03 PM

Forum Jump: