FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   Creating a luncher (https://fileforums.com/showthread.php?t=99074)

bairagyakushal4 30-03-2017 13:30

Creating a luncher
 
I have a game which has 5 exe file in different folder. how to make a luncher or something so that i don't have to create 5 shortcut on desktop.So i can open the luncher and select the exe or name of the game to open .

Thank you

78372 30-03-2017 20:34

Use autorun creator programs

bairagyakushal4 30-03-2017 20:57

How to create autoran which can open 5 different exe file as user choice?

Viper645 01-04-2017 00:41

Quote:

Originally Posted by bairagyakushal4 (Post 457561)
How to create autoran which can open 5 different exe file as user choice?

If you tell me the name of the game and give me other informations , I can create a launcher for you.

bairagyakushal4 01-04-2017 00:59

ok the game is telltale games back to the future ,which has 5 exe in episode 1,episode 2,episode 3 etc folder:).
thanks

pan3o 01-04-2017 02:05

These games does not run from single executable file like other episodic games from Telltale?

bairagyakushal4 01-04-2017 03:37

Quote:

Originally Posted by pan3o (Post 457632)
These games does not run from single executable file like other episodic games from Telltale?

Yes this is the only game(from telltale) i have seen which has 5 different executable files other telltale games has 1 executable.

Viper645 01-04-2017 07:06

I need the full name, executable names, folder names where the executables exists etc.

bairagyakushal4 01-04-2017 08:41

Back to the Future - The Game
 
Quote:

Originally Posted by Viper645 (Post 457646)
I need the full name, executable names, folder names where the executables exists etc.

Ok The game name is "Back to the Future - The Game" ,
from telltale Games series.
There is 5 folder
  • Episode 1
  • Episode 2
  • Episode 3
  • Episode 4
  • Episode 5
inside {app}.
  • inside "Episode 1" folder there is "BackToTheFuture101.exe"
  • inside "Episode 2" folder there is "BackToTheFuture102.exe"
  • inside "Episode 3" folder there is "BackToTheFuture103.exe"
  • inside "Episode 4" folder there is "BackToTheFuture104.exe"
  • inside "Episode 5" folder there is "BackToTheFuture105.exe"

Thanks.

78372 01-04-2017 20:27

-XCX- is not a banned user

bairagyakushal4 11-04-2017 06:07

No one here?

bairagyakushal4 14-04-2017 06:45

2 Attachment(s)
I wrote code myself but its not working, can't seem to fix the error, please help.(Visual Studio 2015)

Attachment 18037

Attachment 18038


Code:

Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        If My.Computer.FileSystem.FileExists("G:\Back to the Future - The Game\Episode 1\BackToTheFuture101.exe") Then
            Shell("G:\Back to the Future - The Game\Episode 1\BackToTheFuture101.exe")
            Me.Close()
        Else
            MsgBox("File not found!!!", +vbExclamation, "Episode 1")
        End If
    End Sub

    Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
        Dim intResponse As Integer

        intResponse = MsgBox("Are you sure you want to " _
& "Exit?",
vbYesNo + vbQuestion + vbDefaultButton2,
"Exit?")

        If intResponse = vbYes Then
            Me.Close()
        End If
    End Sub

    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
        If My.Computer.FileSystem.FileExists("Episode 2\BackToTheFuture102.exe") Then
            System.Diagnostics.Process.Start("Episode 2\BackToTheFuture102.exe")
            Me.Close()
        Else
            MsgBox("File not found!!!", +vbExclamation, "Episode 2")
        End If
    End Sub

    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
        If My.Computer.FileSystem.FileExists("Episode 3\BackToTheFuture103.exe") Then
            System.Diagnostics.Process.Start("Episode 3\BackToTheFuture103.exe")
            Me.Close()
        Else
            MsgBox("File not found!!!", +vbExclamation, "Episode 3")
        End If
    End Sub

    Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
        If My.Computer.FileSystem.FileExists("Episode 4\BackToTheFuture104.exe") Then
            System.Diagnostics.Process.Start("Episode 4\BackToTheFuture104.exe")
            Me.Close()
        Else
            MsgBox("File not found!!!", +vbExclamation, "Episode 4")
        End If
    End Sub

    Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
        If My.Computer.FileSystem.FileExists("Episode 5\BackToTheFuture105.exe") Then
            System.Diagnostics.Process.Start("Episode 5\BackToTheFuture105.exe")
            Me.Close()
        Else
            MsgBox("File not found!!!", +vbExclamation, "Episode 5")
        End If
    End Sub
End Class


bairagyakushal4 14-04-2017 06:47

Tried using full path /short path till nothing

vint56 14-04-2017 07:21

1 Attachment(s)
bairagyakushal4
Inno Setup Compiler

bairagyakushal4 14-04-2017 08:20

Quote:

Originally Posted by vint56 (Post 458069)
bairagyakushal4
Inno Setup Compiler

I am on mobile will check later.
Thanks


All times are GMT -7. The time now is 16:03.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com