Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials

Reply
 
Thread Tools Display Modes
  #1  
Old 30-03-2017, 13:30
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Smile 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
Reply With Quote
Sponsored Links
  #2  
Old 30-03-2017, 20:34
78372 78372 is offline
Registered User
 
Join Date: Dec 2016
Location: Bangladesh
Posts: 650
Thanks: 772
Thanked 949 Times in 309 Posts
78372 is on a distinguished road
Use autorun creator programs
__________________
NOT AVAILABLE
Reply With Quote
  #3  
Old 30-03-2017, 20:57
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
How to create autoran which can open 5 different exe file as user choice?
Reply With Quote
  #4  
Old 01-04-2017, 00:41
Viper645 Viper645 is offline
Banned
 
Join Date: Feb 2017
Location: The Gaming World
Posts: 61
Thanks: 28
Thanked 3 Times in 3 Posts
Viper645 is on a distinguished road
Quote:
Originally Posted by bairagyakushal4 View Post
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.
Reply With Quote
  #5  
Old 01-04-2017, 00:59
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Smile

ok the game is telltale games back to the future ,which has 5 exe in episode 1,episode 2,episode 3 etc folder.
thanks
Reply With Quote
  #6  
Old 01-04-2017, 02:05
pan3o pan3o is offline
Registered User
 
Join Date: Nov 2007
Location: Poland
Posts: 47
Thanks: 84
Thanked 15 Times in 13 Posts
pan3o is on a distinguished road
These games does not run from single executable file like other episodic games from Telltale?
Reply With Quote
  #7  
Old 01-04-2017, 03:37
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Quote:
Originally Posted by pan3o View Post
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.

Last edited by bairagyakushal4; 01-04-2017 at 03:40.
Reply With Quote
  #8  
Old 01-04-2017, 07:06
Viper645 Viper645 is offline
Banned
 
Join Date: Feb 2017
Location: The Gaming World
Posts: 61
Thanks: 28
Thanked 3 Times in 3 Posts
Viper645 is on a distinguished road
I need the full name, executable names, folder names where the executables exists etc.
Reply With Quote
  #9  
Old 01-04-2017, 08:41
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Smile Back to the Future - The Game

Quote:
Originally Posted by Viper645 View Post
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.

Last edited by bairagyakushal4; 15-04-2017 at 03:41.
Reply With Quote
  #10  
Old 01-04-2017, 20:27
78372 78372 is offline
Registered User
 
Join Date: Dec 2016
Location: Bangladesh
Posts: 650
Thanks: 772
Thanked 949 Times in 309 Posts
78372 is on a distinguished road
-XCX- is not a banned user
__________________
NOT AVAILABLE
Reply With Quote
  #11  
Old 11-04-2017, 06:07
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
No one here?
Reply With Quote
  #12  
Old 14-04-2017, 06:45
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
I wrote code myself but its not working, can't seem to fix the error, please help.(Visual Studio 2015)

bandicam 2017-04-14 19-07-42-949.jpg

bandicam 2017-04-14 19-07-46-437.jpg


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
Reply With Quote
  #13  
Old 14-04-2017, 06:47
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Tried using full path /short path till nothing
Reply With Quote
  #14  
Old 14-04-2017, 07:21
vint56 vint56 is offline
Registered User
 
Join Date: May 2011
Location: almaty
Posts: 52
Thanks: 143
Thanked 55 Times in 31 Posts
vint56 is on a distinguished road
bairagyakushal4
Inno Setup Compiler
Attached Files
File Type: rar Back to the Future - The Game.rar (2.10 MB, 91 views)
Reply With Quote
The Following 2 Users Say Thank You to vint56 For This Useful Post:
bairagyakushal4 (15-04-2017), oltjon (14-04-2017)
  #15  
Old 14-04-2017, 08:20
bairagyakushal4 bairagyakushal4 is offline
Registered User
 
Join Date: May 2015
Location: India
Posts: 33
Thanks: 10
Thanked 0 Times in 0 Posts
bairagyakushal4 is on a distinguished road
Quote:
Originally Posted by vint56 View Post
bairagyakushal4
Inno Setup Compiler
I am on mobile will check later.
Thanks
Reply With Quote
Reply

Tags
code, game, luncher

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a Memory Card Exploit Ne0 PS2 Games 0 08-07-2009 22:24
Problem creating KOTOR 2 ISO congee_33 XBox Games 10 03-10-2005 02:04
Creating a sega server for playing PSO online ? OrG DC Games 1 14-02-2004 11:02
Creating ISO wildennis XBox Games 12 09-02-2004 06:27
Creating VCD's using NERO Nitram CD/DVD Software & Utilities 0 09-01-2003 09:07



All times are GMT -7. The time now is 11:57.


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