How to run a VB.NET .exe file on CentOS 5.6 The Next CEO of Stack OverflowHow do you set DEBUG...
Is it professional to write unrelated content in an almost-empty email?
Writing differences on a blackboard
Does soap repel water?
Why isn't the Mueller report being released completely and unredacted?
Running a General Election and the European Elections together
Can MTA send mail via a relay without being told so?
Bartok - Syncopation (1): Meaning of notes in between Grand Staff
What was the first Unix version to run on a microcomputer?
0 rank tensor vs 1D vector
Is there a difference between "Fahrstuhl" and "Aufzug"
Rotate a column
I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin
Is there always a complete, orthogonal set of unitary matrices?
What happened in Rome, when the western empire "fell"?
A Man With a Stainless Steel Endoskeleton (like The Terminator) Fighting Cloaked Aliens Only He Can See
Make solar eclipses exceedingly rare, but still have new moons
Dominated convergence theorem - what sequence?
Are police here, aren't itthey?
The past simple of "gaslight" – "gaslighted" or "gaslit"?
What connection does MS Office have to Netscape Navigator?
How did people program for Consoles with multiple CPUs?
How many extra stops do monopods offer for tele photographs?
How to invert MapIndexed on a ragged structure? How to construct a tree from rules?
Some questions about different axiomatic systems for neighbourhoods
How to run a VB.NET .exe file on CentOS 5.6
The Next CEO of Stack OverflowHow do you set DEBUG or RELEASE builds in Visual Studio 2008 (VB.net)How do you find out which version of mono is installed on a CentOS machine?CentOS 5.6: Setup global extensions in Firefox 10.0.1How do I connect to a MySQL database from another computer in VB.NET?Accidentally renamed a file in centos 5 in /lib folder, no idea what it was called, how to find out?GRUB reported “error: file not found.” when booting CentOS 5How to execute command on ConEmu through VB.Net?Getting error while creating mdb file on vb.netReplace files extracting from a .zip file in vb.netNot able to create new dir with file using resources in vb.net
I would like to execute my .exe
file written in VB.NET (in VS 2008) on CentOS 5.6.
I have installed mono. But I'm not that familiar with CentOS, so I don't know how to proceed.
I created a "Hello World" console app in VB.net and execute it using that code and everything work's well. But when i tried to execute a VB Windows form app, it throws me an error saying:
The entry point method could not be loaded.
centos-5 mono-framework vb.net
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
migrated from stackoverflow.com Sep 20 '12 at 1:00
This question came from our site for professional and enthusiast programmers.
add a comment |
I would like to execute my .exe
file written in VB.NET (in VS 2008) on CentOS 5.6.
I have installed mono. But I'm not that familiar with CentOS, so I don't know how to proceed.
I created a "Hello World" console app in VB.net and execute it using that code and everything work's well. But when i tried to execute a VB Windows form app, it throws me an error saying:
The entry point method could not be loaded.
centos-5 mono-framework vb.net
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
migrated from stackoverflow.com Sep 20 '12 at 1:00
This question came from our site for professional and enthusiast programmers.
add a comment |
I would like to execute my .exe
file written in VB.NET (in VS 2008) on CentOS 5.6.
I have installed mono. But I'm not that familiar with CentOS, so I don't know how to proceed.
I created a "Hello World" console app in VB.net and execute it using that code and everything work's well. But when i tried to execute a VB Windows form app, it throws me an error saying:
The entry point method could not be loaded.
centos-5 mono-framework vb.net
I would like to execute my .exe
file written in VB.NET (in VS 2008) on CentOS 5.6.
I have installed mono. But I'm not that familiar with CentOS, so I don't know how to proceed.
I created a "Hello World" console app in VB.net and execute it using that code and everything work's well. But when i tried to execute a VB Windows form app, it throws me an error saying:
The entry point method could not be loaded.
centos-5 mono-framework vb.net
centos-5 mono-framework vb.net
edited Nov 9 '17 at 14:28
kenorb
11.5k1580116
11.5k1580116
asked Sep 19 '12 at 5:48
Jerick GonitoJerick Gonito
62
62
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 9 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
migrated from stackoverflow.com Sep 20 '12 at 1:00
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Sep 20 '12 at 1:00
This question came from our site for professional and enthusiast programmers.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Try to execute the following command in Linux Terminal:
mono program.exe
Probably it will fail with an exception telling you what changes you need to make later.
See: Porting Winforms Applications.
Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed)..
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
add a comment |
Make sure you've installed the following libraries:
mono-complete
package, e.g. by:yum install mono-complete
(orapt-get
).
.NET Framework, e.g. by
winetricks dotnet46
.
Install winetricks by:
yum install winetricks
(or byapt-get
).
Related: Mono, failing to open executable.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f477280%2fhow-to-run-a-vb-net-exe-file-on-centos-5-6%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to execute the following command in Linux Terminal:
mono program.exe
Probably it will fail with an exception telling you what changes you need to make later.
See: Porting Winforms Applications.
Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed)..
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
add a comment |
Try to execute the following command in Linux Terminal:
mono program.exe
Probably it will fail with an exception telling you what changes you need to make later.
See: Porting Winforms Applications.
Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed)..
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
add a comment |
Try to execute the following command in Linux Terminal:
mono program.exe
Probably it will fail with an exception telling you what changes you need to make later.
See: Porting Winforms Applications.
Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed)..
Try to execute the following command in Linux Terminal:
mono program.exe
Probably it will fail with an exception telling you what changes you need to make later.
See: Porting Winforms Applications.
Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed)..
edited Nov 9 '17 at 14:32
kenorb
11.5k1580116
11.5k1580116
answered Sep 19 '12 at 11:37
Lex LiLex Li
1186
1186
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
add a comment |
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
Thank's a lot sir Lex Li. I created a "Hello World" console app in vb.net and execute it using that code and everything work's well. But when i tried to execute a vb windows form app, it throws me an error saying 'The entry point method could not be loaded'. Please help me regarding this one. Thanks in advance!
– Jerick Gonito
Sep 20 '12 at 2:21
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
mono-project.com/Guide:_Porting_Winforms_Applications Every program that wants to target Mono must be remedied accordingly. For VB.NET apps, you might install mono full runtime (as on some Linux distro VB.NET is packaged separately and might not yet installed).
– Lex Li
Sep 21 '12 at 1:50
add a comment |
Make sure you've installed the following libraries:
mono-complete
package, e.g. by:yum install mono-complete
(orapt-get
).
.NET Framework, e.g. by
winetricks dotnet46
.
Install winetricks by:
yum install winetricks
(or byapt-get
).
Related: Mono, failing to open executable.
add a comment |
Make sure you've installed the following libraries:
mono-complete
package, e.g. by:yum install mono-complete
(orapt-get
).
.NET Framework, e.g. by
winetricks dotnet46
.
Install winetricks by:
yum install winetricks
(or byapt-get
).
Related: Mono, failing to open executable.
add a comment |
Make sure you've installed the following libraries:
mono-complete
package, e.g. by:yum install mono-complete
(orapt-get
).
.NET Framework, e.g. by
winetricks dotnet46
.
Install winetricks by:
yum install winetricks
(or byapt-get
).
Related: Mono, failing to open executable.
Make sure you've installed the following libraries:
mono-complete
package, e.g. by:yum install mono-complete
(orapt-get
).
.NET Framework, e.g. by
winetricks dotnet46
.
Install winetricks by:
yum install winetricks
(or byapt-get
).
Related: Mono, failing to open executable.
answered Nov 9 '17 at 14:34
kenorbkenorb
11.5k1580116
11.5k1580116
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f477280%2fhow-to-run-a-vb-net-exe-file-on-centos-5-6%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown