
September 8th, 2012, 10:14 AM
|
|
Registered User
|
|
Join Date: Sep 2012
Posts: 2
Time spent in forums: 1 h 38 m 41 sec
Reputation Power: 0
|
|
How can i save my icons to the form here is the projuct
Hi the save is not wporking on the program, and i need some advice on how to save the icons that are pput on the for, so say that you exit the program and next time you open it, all the icons are in the place where you left them. thanks for leting me be part of this form fourm. 
This is what i have to save the icons.
Code:
Public Sub SaveExplorer()
Dim FF As Integer
Dim i As Integer
FF = FreeFile
Open App.Path & "\Explorer\IconList.txt" For Output As #FF
For i = 1 To IconCounter - 1
Print #FF, IconsPath(i)
Next
Close #FF
End Sub
i have tryed to upload it the the link on here but it want let me, so i dont know how to get the projuct to so you.
|