Search results for query: *

  • Users: Jyy
  • Order by date
  1. J

    Answered on error goto?

    i've tried to make a browse button in it, for now i'm so far: Dim browsedialog As New OpenFileDialog() browsedialog.CheckFileExists = True browsedialog.Title = "Browse" browsedialog.ShowDialog(Me) how do i get the root + the file itself into run(textbox1.text)?
  2. J

    Answered on error goto?

    that's my problem. i'm using 2008 and this is compatible with 2008 for as far as i know. what's wrong with using your code: regedit doesn't exist for as far as i know as a map but you are able to run it instead. the same with %windir%, %temp%, cmd, etc. edit: i've now got it right, i used try...
  3. J

    Answered on error goto?

    hello, i don't really understand my mistake. i want to make an "Run" button on my project, this is my code for so far: Dim a a = InputBox("What do you want to run?", "Run...", "regedit") Shell(a, 1) On Error GoTo runerror runerror: MsgBox("Error! File...
Back
Top