Run and .exe in resources? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Run a .exe in resources?

    Hey guys, is there any possible way to run an .exe that I put in my resources? If so, can someone give me the code? Thanks in advance +rep
    Last edited by Neth'zul; 11-19-2008 at 10:34 PM.

    Run and .exe in resources?
  2. #2
    Zurkei's Avatar Contributor

    Reputation
    91
    Join Date
    Apr 2007
    Posts
    405
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Neth'zul View Post
    Hey guys, is there any possible way to run an .exe that I put in my resources? If so, can someone give me the code? Thanks in advance +rep
    I will see if I can answer in the morning when I wake up.

  3. #3
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Explain what you mean...

  4. #4
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok well, lets say I click a button named Web browser, then when I press it, it opens a web browser I made, now this is NOT what im doing, it just an example.

  5. #5
    ReidE96's Avatar Archer Authenticator enabled
    Reputation
    470
    Join Date
    Dec 2006
    Posts
    1,625
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    System.Diagnostics.Process.Start(System.AppDomain.CurrentDomain.BaseDirectory() & "\subdirectory of the directory the app you're launching from\apptolaunch.exe")

  6. #6
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks ReidE96 +rep

    EDIT: So would it be like this
    System.Diagnostics.Process.Start(System.AppDomain.CurrentDomain.BaseDirectory() & "My.Resources/program") ??
    Last edited by Neth'zul; 11-18-2008 at 10:38 PM.

  7. #7
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ignore that before it confuses you.

    On the code for your button, put this:
    Code:
    System.Diagnostics.Process.Start("C:\Program Files\World of Warcraft\wow.exe")
    Basically, that just opens WoW. Hopefully that gives you an idea of how it works.

  8. #8
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you, so I would do kinda the same thing with resources like
    System.Diagnostics.Process.Start("My.Resources.program")

  9. #9
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If I'm understanding you correctly then yes. Just try it out, have a play with it.

  10. #10
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bleh, didn't work >,<

  11. #11
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Explain to me in better detail what you want to do...
    ...I'm lost at the "resources" part..

  12. #12
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, you know your have your resource? Well i want to put a file into my resources and be able to open it. Example My.Computer.Audio.Play(My.Resources.musicname) except with a .exe

    add me on msn [email protected]

  13. #13
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well do what I said but er.. I don't know why you're using dots when there should be slashes.
    Remember the quotation marks.

    Find the directory and do it like this:
    Code:
    System.Diagnostics.Process.Start("C:\My Resources\example.exe")
    Just make sure the .exe is in the resources..

  14. #14
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, would this work for OTHER people as well, not just me..

  15. #15
    Ryoushi.'s Avatar Member
    Reputation
    54
    Join Date
    Nov 2008
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Only if you include the .exe's in the folder that you give them.
    Basically, their directory would have to be the same as yours.

Page 1 of 2 12 LastLast

Similar Threads

  1. Epic Dungeon Run and Dungeon Delve Chest Loot Issues
    By llammahed in forum Neverwinter
    Replies: 3
    Last Post: 06-11-2013, 10:57 AM
  2. [Misc] Running and Growing a Server
    By Talrain in forum WoW EMU Questions & Requests
    Replies: 7
    Last Post: 03-12-2012, 05:49 PM
  3. Bot Running And Going AFK
    By DarkLinux in forum WoW Memory Editing
    Replies: 46
    Last Post: 08-12-2010, 05:40 AM
  4. How to Run and Dance at the same time![Useless]
    By XFiFiX in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 04-04-2008, 03:06 AM
  5. Connection issue, server is running and realm list is correct.
    By Ghosthopper in forum World of Warcraft Emulator Servers
    Replies: 20
    Last Post: 01-31-2008, 12:40 PM
All times are GMT -5. The time now is 06:22 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search