Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Creating and compiling exe's [VB.NET]

 
Post new topic   This topic is locked: you cannot edit posts or make replies.    Cheat Engine Forum Index -> General programming
View previous topic :: View next topic  
Author Message
Jorg hi
I post too much
Reputation: 7

Joined: 24 Dec 2007
Posts: 2276
Location: Minnesota

PostPosted: Wed Dec 31, 2008 4:21 pm    Post subject: Creating and compiling exe's [VB.NET] Reply with quote

I created a namespace .dll in vb.net but is it possible to make an exe?
If so then how! I need it to create an exe and give it code from a text box..

_________________
CEF will always stay alive.
Back to top
View user's profile Send private message
yoyonerd
Grandmaster Cheater
Reputation: 0

Joined: 26 Apr 2008
Posts: 699
Location: -->formerly yoyonerd<--

PostPosted: Wed Dec 31, 2008 5:42 pm    Post subject: Reply with quote

well if u are using visual vb express then choose the windows forms application option
_________________
Back to top
View user's profile Send private message AIM Address
BanMe
Master Cheater
Reputation: 0

Joined: 29 Nov 2005
Posts: 375
Location: Farmington NH, USA

PostPosted: Wed Dec 31, 2008 5:56 pm    Post subject: Reply with quote

it really isnt possible to just go from dll to exe..

it has to be somewhat of a design decision before hand...

p.s. you need to articulate your questions a little better...(meaning you need to think of some descriptive words that descibe the problem and wrap them with some constructive sentences) Very Happy but all in all if you dont speak english just describe the problem better Smile
Back to top
View user's profile Send private message MSN Messenger
samuri25404
Grandmaster Cheater
Reputation: 7

Joined: 04 May 2007
Posts: 955
Location: Why do you care?

PostPosted: Thu Jan 01, 2009 3:10 pm    Post subject: Reply with quote

Select your project in the Solution Explorer, then right click it, and select properties. Then go and find "Class Library" and change it to "Windows Forms Application"
_________________
Wiccaan wrote:

Oh jeez, watchout I'm a bias person! Locked.


Auto Assembly Tuts:
In Depth Tutorial on AA
Extended
Back to top
View user's profile Send private message
Jorg hi
I post too much
Reputation: 7

Joined: 24 Dec 2007
Posts: 2276
Location: Minnesota

PostPosted: Fri Jan 02, 2009 3:11 pm    Post subject: Reply with quote

samuri25404 wrote:
Select your project in the Solution Explorer, then right click it, and select properties. Then go and find "Class Library" and change it to "Windows Forms Application"


NO. Creating an exe using a compilied exe I made in vb.net!

I want to use the vb.net compilier library, I think it has to do with the VbCodeProvider Namespace...

Oh you thought I meant using vb.net Shocked

_________________
CEF will always stay alive.
Back to top
View user's profile Send private message
ElectroFusion
Grandmaster Cheater
Reputation: 0

Joined: 17 Dec 2006
Posts: 786

PostPosted: Sat Jan 03, 2009 12:03 am    Post subject: Reply with quote

Jorg hi wrote:
samuri25404 wrote:
Select your project in the Solution Explorer, then right click it, and select properties. Then go and find "Class Library" and change it to "Windows Forms Application"


NO. Creating an exe using a compilied exe I made in vb.net!

I want to use the vb.net compilier library, I think it has to do with the VbCodeProvider Namespace...

Oh you thought I meant using vb.net Shocked


Creating an EXE using a compiled exe you made?..... Do you mean like you made a compiler or want to? If you want it to compile EXEs then it's gonna be harder than you think. Laughing

_________________
qwerty147 wrote:

ghostonline wrote:

what world are you in?

bera

but i live in NZ
Back to top
View user's profile Send private message
92Garfield
I'm a spammer
Reputation: 57

Joined: 20 Dec 2007
Posts: 5871
Location: Banana Republic Germany

PostPosted: Sat Jan 03, 2009 1:08 am    Post subject: Re: Creating and compiling exe's [VB.NET] Reply with quote

Jorg hi wrote:
I created a namespace .dll in vb.net but is it possible to make an exe?
If so then how! I need it to create an exe and give it code from a text box..

What should it do?
to get the text from a textbox use
text1.text
or if its on different form
form1.text1.text...

_________________
Back to top
View user's profile Send private message
Jorg hi
I post too much
Reputation: 7

Joined: 24 Dec 2007
Posts: 2276
Location: Minnesota

PostPosted: Sat Jan 03, 2009 9:41 am    Post subject: Re: Creating and compiling exe's [VB.NET] Reply with quote

92Garfield wrote:
Jorg hi wrote:
I created a namespace .dll in vb.net but is it possible to make an exe?
If so then how! I need it to create an exe and give it code from a text box..

What should it do?
to get the text from a textbox use
text1.text
or if its on different form
form1.text1.text...


me.textbox1.text or textx

textx is a string variable.

I've compilied a dll using the vbcodeprovider? It's easy?

_________________
CEF will always stay alive.
Back to top
View user's profile Send private message
yoyonerd
Grandmaster Cheater
Reputation: 0

Joined: 26 Apr 2008
Posts: 699
Location: -->formerly yoyonerd<--

PostPosted: Sat Jan 03, 2009 7:07 pm    Post subject: Reply with quote

i've wanted to try this before, its like an installer, you fill in some details, and it'll create a .exe right?

your building a program, like in the program, an installer takes in the details, and outputs an install package, but you want to build not an install package, an executable, i know the .NET framework had a compiler class meant for this, i was going to learn from it, but i forgot what the class is called

_________________
Back to top
View user's profile Send private message AIM Address
Jorg hi
I post too much
Reputation: 7

Joined: 24 Dec 2007
Posts: 2276
Location: Minnesota

PostPosted: Sun Jan 04, 2009 8:00 am    Post subject: Reply with quote

yoyonerd wrote:
i've wanted to try this before, its like an installer, you fill in some details, and it'll create a .exe right?

your building a program, like in the program, an installer takes in the details, and outputs an install package, but you want to build not an install package, an executable, i know the .NET framework had a compiler class meant for this, i was going to learn from it, but i forgot what the class is called


I already know what the class is called. I have completed my misson!!!

_________________
CEF will always stay alive.
Back to top
View user's profile Send private message
Jorg hi
I post too much
Reputation: 7

Joined: 24 Dec 2007
Posts: 2276
Location: Minnesota

PostPosted: Tue Dec 25, 2012 9:33 pm    Post subject: Reply with quote

^ What a fricken beast right there.
_________________
CEF will always stay alive.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   This topic is locked: you cannot edit posts or make replies.    Cheat Engine Forum Index -> General programming All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites