How to break the .exe application? [closed] - vb6

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have requirment to create application based on exiting application.But we don't any document or source code of that exiting application.So, i would like to know how that application is working.For that is there any way to break .exe application ? looks like its created by VB.
Just i would like to see the program , Please advise is there any way to break .exe application and see the program ?

What you are looking for is basically a decompiler. Depending upon how the program was compiled, you can recover various pieces, but not necessarily everything.
More details in the answers to this question.

Related

Options to learn in Ruby besides IRB and FXRI [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I Was wondering if anyone had some suggestions to quickly test their coding lines in windows. Right now, I am currently using repl.it
I used to use fxri, but it doesn't work in later versions and I feel that irb lacks a lot of the useful tools that fxri has (example:built in, easily accessible library with descriptions of commands)
Any help would be much appreciated.
The Pry tool is a great learning resource. You can view source code and documentation on demand, and trivially explore a library or program using an intuitive file system metaphor.

User interface of desktop application using SWT [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm working on a desktop application using SWT. I need to make the UI look and feel like Skype's interface. Can anybody suggest me something?
The presentations package allows the customization of the look of a SWT application.
Here's a general presentation, including a lot of links : http://jroller.com/mpermar/date/20050619#eclipse_presentations_jlibrary_and_vs
Of course you'll have a lot of work if you don't find an existing skin suitable to your need.

Visual Studio header file use [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I've been programming for years in C and I'm now starting on some C++/CLR projects in visual studio. Something that confuses me is the way the designer is adding stuff in the header file of your main form. For instance if you have a button in the designer, double click it, then the designer will add the event function in the header file. I always learned not to code in header files. Or am I missing some clues? Any of you guys have some best practcve rules on this subject?
Thanks

Posting a picture from a Facebook app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am writing a little Facebook application and I would like to publish a picture and a link when the user selects a certain option. Its been hard to find good resources about specific API calls like this (most of the books I've find were from 2008 and seem outdated). Can anyone explain how I might do this (I would I assume I would do this with a php call). Also, if anyone knows any good literature or resources on this topic that are not out of date that would be very helpful.
Your answer is here: http://developers.facebook.com/docs/reference/api/post/
They give you a CURL example, and if you're familiar with PHP's curl api you can trivially replicate it.

Where to put solution folders in file system? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In the default location:
"C:\Users\[UserName]\Documents\Visual Studio 2010\Projects"
or:
"C:\Development\"
or:
"D:\Development\"
or...
I put them on my "Data" drive, which would be D in your case. Then, if I need to back up my machine, I can easily backup just the data and not the program files. Separately, your code should be in source control as well.
Never keep Your project on System drive, do not trust windows so much!

Resources