Script Editor[Still Creating]

Posts 16 of 6 · Page 1 of 1
Script Editor[Still Creating]
Hey i want to make out a new software for modding!



Like Notepad but this will be just only for the scripts *.gsc!


Im not sure if this will be going to work or not but im pretty sure that after Max.30min. it will be released!!!!


I will be use a Rich Text Box and the text will not saved as a normal txt but as a Rich Text box!


But im trying to make it out!


Any Idea??!!
PM ME!
Not neccesary. Use notepad ++
Yea i know but i dont have anything to do at the moment :P and i will create it right now!
Code:
Public Class Form1

    Private Sub OpenToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles OpenToolStripMenuItem.Click
        Try
            Dim dlg As OpenFileDialog = New OpenFileDialog
            dlg.Title = "Open..."
            dlg.Filter = "Scripts *.gsc | *.gsc"
            If dlg.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                RichTextBox1.LoadFile(dlg.FileName)
            End If
        Catch ex As Exception : End Try
    End Sub

    Private Sub SaveToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SaveToolStripMenuItem.Click
        Try
            Dim dlg As SaveFileDialog = New SaveFileDialog
            dlg.Title = "Save As..."
            dlg.Filter = "Scripts *.gsc | *.gsc"
            If dlg.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
                RichTextBox1.SaveFile(dlg.FileName)
            End If
        Catch ex As Exception : End Try
    End Sub

    Private Sub ExitToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ExitToolStripMenuItem.Click
        End
    End Sub
End Class
Will this have a specific Gsc debugger? Like it will point out an error that maybe won't cause the game to load or something of that sort. .
Quote Originally Posted by user590177 View Post
Hey i want to make out a new software for modding!



Like Notepad but this will be just only for the scripts *.gsc!


Im not sure if this will be going to work or not but im pretty sure that after Max.30min. it will be released!!!!


I will be use a Rich Text Box and the text will not saved as a normal txt but as a Rich Text box!


But im trying to make it out!


Any Idea??!!
PM ME!
Make it save as .gsc
yeah, a 12 year old can do that

go to the coding section

/closed
Posts 16 of 6 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?