Can anyone help me with an icon problem?
Ok, i custom made an icon for a file but when i display it i have a black line bordering the left side and the bottom, any idea how to get rid of the black line? The black line wasn't apart of my original image btw.
Oh if you can't find the answer thats ok, there is an alternative and thats can you find a way to open specific notepad files using vbscript? I can open all files besides desired notepad ones and when i do open them they are invisible (can't see them but appear in taskmgr). That would be all thxs.
xD, thanks new to scripting but anyway it doesn't seem to work, it says Error: Expected ')'.
Where you have the '_' mean that the next lines a continuation?
Anyway here's what i got for the script. '@@@@@' is where i put my file name.
Private Sub Open_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Open.Click
Dim openFile1 As New OpenFileDialog()
openFile1.DefaultExt = "Text Files|*.txt"
openFile1.Filter = "Text Files|*.txt|RTF Files|*.rtf"
If (openFile1.ShowDialog() = System.Windows.Forms.DialogResult.OK) And (openFile1.@@@@@.Length > 0) Then RTB4.LoadFile(openFile1.@@@@@)
Dim name As String = System.IO.Path.GetFileNameWithoutExtensions
Me.Text = "@@@@@"
End If
End Sub
Oh half the script just disappeared =/ when submitted >.<