Results 1 to 5 of 5

Thread: [RESOLVED] .exe objects - one works the other does not

  1. #1

    Thread Starter
    Fanatic Member snufse's Avatar
    Join Date
    Jul 2004
    Location
    Jupiter, FL
    Posts
    912

    Resolved [RESOLVED] .exe objects - one works the other does not

    Have a C# application. When I look in the project folder I see an .exe in
    bin/debug folder, when I click it executes the application fine. I also see the same .exe in obj/debug folder, when I click it executes but gives me error. What is the difference between these 2 objects and why do I have 2 of them? Thank you.

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: .exe objects - one works the other does not

    the one in the bin folder is the actual, final binary version... the stuff you find in the obj folder is in a partially compiled state. It's a staging area during the compilation where the object data, against which the final linking and compiling is done. it's where the last of the references and method signatures are resolved (or not, if that's the case). it's not meant to be run, and contains a bunch of stuff that is intended only for the compiler.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3

    Thread Starter
    Fanatic Member snufse's Avatar
    Join Date
    Jul 2004
    Location
    Jupiter, FL
    Posts
    912

    Smile Re: .exe objects - one works the other does not

    Thank you, that explains. Great,

  4. #4
    PowerPoster gep13's Avatar
    Join Date
    Nov 2004
    Location
    The Granite City
    Posts
    21,963

    Re: [RESOLVED] .exe objects - one works the other does not

    snufse,

    It is great that you found the answer you were looking for here, but this forum is really only intended for questions specific to ASP.Net.

    Gary

  5. #5

    Thread Starter
    Fanatic Member snufse's Avatar
    Join Date
    Jul 2004
    Location
    Jupiter, FL
    Posts
    912

    Re: [RESOLVED] .exe objects - one works the other does not

    I agree. I posted in the VB section but never got an answer. Also I have posted another question in same forum without any response (http://www.vbforums.com/showthread.php?t=606776). So I took a chance in this forum. Sorry.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width