473,625 Members | 3,254 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

problems after compiling --> exe not working

hello newsgroup!

my problem is that after successful compiling the exe is running,
but ONLY on my system
i am using visual studio .net 2003
J#

so:
1) why?
2) what can i do to change this?

thanks in advance
Ludwig
Jul 21 '05 #1
9 2057
Ludwig Moser <an******@chell o.at> wrote:
hello newsgroup!

my problem is that after successful compiling the exe is running,
but ONLY on my system
i am using visual studio .net 2003
J#

so:
1) why?
2) what can i do to change this?


It would help if you'd say in what way it's not working on other
systems.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #2
> It would help if you'd say in what way it's not working on other
systems.


german > Die anwendung konnte nicht richtig initialisiert werden
(0xc0000135). Klicken Sie auf "OK", um die Anwendung zu beenden,
the program could not be initialized (0xc0000135) click ok to close

Luke
Jul 21 '05 #3
Hi Ludwig,

You are sure the right Framework 1.1 is installed on those computers?
(Or are you using some extra DLL's or something?)

Cor
It would help if you'd say in what way it's not working on other
systems.


german > Die anwendung konnte nicht richtig initialisiert werden
(0xc0000135). Klicken Sie auf "OK", um die Anwendung zu beenden,
the program could not be initialized (0xc0000135) click ok to close

Luke

Jul 21 '05 #4
Ludwig Moser <an******@chell o.at> wrote:
It would help if you'd say in what way it's not working on other
systems.


german > Die anwendung konnte nicht richtig initialisiert werden
(0xc0000135). Klicken Sie auf "OK", um die Anwendung zu beenden,
the program could not be initialized (0xc0000135) click ok to close


Hmm. That's certainly not terribly helpful of it :(

Have you checked:
a) The .NET framework is installed on the other machine
b) The VJ# libraries are installed on the other machine

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #5
> Have you checked:
a) The .NET framework is installed on the other machine
b) The VJ# libraries are installed on the other machine


humm
not checked but on one of those machines .net is also installed...
on the other the guy downloaded the framework (28mb?!)

isn't there a way to compile it so ppl do NOT have to download such huge
stuff!?
as in delphi (which uses its own packages too) you can include the required
stuff into your
exe (with those files ~600kb without it ~ 200kb)
shouldn't that be possible by j# too?

thanks in advance
Luke
Jul 21 '05 #6
Ludwig Moser <an******@chell o.at> wrote:
Have you checked:
a) The .NET framework is installed on the other machine
b) The VJ# libraries are installed on the other machine
humm
not checked but on one of those machines .net is also installed...
on the other the guy downloaded the framework (28mb?!)

isn't there a way to compile it so ppl do NOT have to download such huge
stuff!?
See http://www.pobox.com/~skeet/csharp/f...ework.required
as in delphi (which uses its own packages too) you can include the
required stuff into your exe (with those files ~600kb without it ~
200kb) shouldn't that be possible by j# too?


No. At least, you can have an installer which includes the .NET
framework, but that will still be large.

I suspect the .NET framework is just rather larger than the Delphi
runtime. You'll also need the VJ# libraries which aren't part of the
normal framework itself.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #7
> I suspect the .NET framework is just rather larger than the Delphi
runtime. You'll also need the VJ# libraries which aren't part of the
normal framework itself.


nasty, where can i get the VJ# libraries?

note: installing 28 mb of libraries for a 200kb program does not make too
much sense to me ;o)

thanks
Luke
Jul 21 '05 #8
Ludwig Moser <an******@chell o.at> wrote:
I suspect the .NET framework is just rather larger than the Delphi
runtime. You'll also need the VJ# libraries which aren't part of the
normal framework itself.
nasty, where can i get the VJ# libraries?


Go to http://msdn.microsoft.com/vjsharp/do...t/default.aspx
and there's a redistributable installer you can download.
note: installing 28 mb of libraries for a 200kb program does not make too
much sense to me ;o)


Does installing an OS before installing a program make sense to you?
It's much the same in this case.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Jul 21 '05 #9
thanks for your help!

Luke
Jul 21 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
6893
by: Andres Rosado-Sepulveda | last post by:
Hello, I'm having trouble compiling PHP 4.3.4 on Solaris 8. This is the error message it is showing: -- start -- Undefined first referenced symbol in file php_parse_date ext/standard/datetime.o ld: fatal: Symbol referencing errors. No output written to sapi/cli/php
1
2853
by: mazu | last post by:
I get errors about QAssistantClient while compiling PyQt 3.7, on my debian woody with Qt 3.1.2. Here is compiler message: cd qt && /usr/bin/make -f Makefile make: Entering directory `/Downloads/KDE - libs/PyQt-x11-gpl-3.7/qt' g++ -c -pipe -w -O2 -D_REENTRANT -fPIC -DSIP_MAKE_MODULE_DLL -DQT_NO_DEBUG -DQT_THREAD_SUPPORT -I/usr/share/qt3/mkspecs/default -I. -I. -I/usr/include/python2.1 -I/usr/share/qt3/include -o qtcmodule.o...
5
1883
by: jose luis fernandez diaz | last post by:
Hi, When I compiling the program below: #include <map> using namespace std; template<typename td1, typename td2, typename td3,typename td4> class Tarificador
2
2112
by: Erik | last post by:
Hi Everyone, I'm having real problems compiling some source for eVC4++. The errors I am getting are below: It all seems to be centred around winsock. If I move the afsock.h reference to before my other includes then I get lots of errors like C2011: 'fd_set' : 'struct' type redefinition warning C4005: 'FD_CLR' : macro redefinition which I understand are due to the fact that windows.h is being included in another header file as well as...
9
293
by: Ludwig Moser | last post by:
hello newsgroup! my problem is that after successful compiling the exe is running, but ONLY on my system i am using visual studio .net 2003 J# so: 1) why? 2) what can i do to change this?
3
2315
by: Ryan Riehle | last post by:
Hi All! Trying to upgrade to Apache 2.0.49 and getting compile errors related to mod_auth_pgsql, any clue?: make: Entering directory `/usr/src/httpd-2.0.49' /usr/src/httpd-2.0.49/srclib/apr/libtool --silent --mode=link gcc -pthread -I/ =500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -DAP_HAVE_DESIGNATED_INITIALIZER I. -I/usr/src/httpd-2.0.49/os/unix -I/usr/src/httpd-2.0.49/server/mpm/prefork -I .49/modules/proxy
6
2591
by: Josefo | last post by:
Hello all. I am a newbie following the C++ tutorial in : http://www.cplusplus.com/doc/tutorial/templates.html I am unable to succesfully compile any of the examples with templates of this tutorial. I use the standard c++ compiler which comes with ubuntu breezy distro. I guess that somethig is wrong with it or (more likely..) I should use some option when compiling. This is, for instance, one of the codes: // template specialization...
2
11273
by: renagade629 | last post by:
Can anybody help me understand what i'm doing wrong or what I'm missing? Is there anyother good and commendable C++ program I can use (free) from the internet like Dev C++? I'm having trouble doing basic compiling on this new Dev C++, when i try to print something like: #include<iostream.h> using namespace std; int main () { cout << "Hello to the world" << endl; system("PAUSE") return 0;
10
2707
by: tnwagn | last post by:
I have been working on a program and have been unable to resolve these compile issues. g++ main.cpp -o project5.exe main.cpp: In function 'int deal()': main.cpp:20: error: expected primary-expression before '.' token main.cpp:21: error: expected unqualified-id before '.' token Inside program main is this (outside of main() )
0
8256
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8694
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8635
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8497
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6118
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4089
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1500
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.