I have developed a c# application and when I tried to install it I figured out that some users don't have framework installed on their computers and for some business constraints they can't install it. Is there a tool to convert my c# application to native one to be able to work on clean machines with out installing framework ?
X2040
Posts
-
How to convert .NET application to native and execute it with our installing Framework -
Visual Basic Build ErrorThis hint helped me to find the issue. By some reason I kept calling old exe version rather than the new compiled one
-
Visual Basic Build ErrorThank you. The exe was designed to be called from the Run tool and pass some parameters as argument to it. By mistake I renamed the exe and put a space in its new name. then I figured out that the run command utility doesn't support having space in the exe name and kept calling old exe
-
Visual Basic Build ErrorI have a Visual Basic 6 project when I update in the form of the project then run the application from inside the Visual Studio 6 every thing goes fine. When I build "Make" the exe the Visual basic ignore all my code updates and the exe appear as if I didn't change any thing. Any Idea !!!!
-
Is This Method Thread Safe ?Some articles say that if you pass variables to your method that are not immutable or reference variable this may make the method not Thread Safe. Does any one has more details about this point if it is correct or wrong and why?
-
Is This Method Thread Safe ?Hello All Am developing a MultiThreading Application and I have searched the internet for guide lines how to write a thread safe methods. I found some conflicts and I would like if any of you help me to figure out the correct solution. Below is Example of a Method That I need you to Evaluate if it is thread safe or not and Why. public static int Search(string xml, char item) { return xml.IndexOf(item); }
-
Enable User to choose diffrent Designs at Run TimeHi i want to make a web site that the user can choose between diffrent web designs at the run time. i have 4 web designs that are completly diffrent. ex) places of the Menu and controls in each design is diffrent. can i support such a functionality using the Themes and Skin ? and if not does any body has an idea how can i implement this function.
-
A CAPTCHA Server Control for ASP.NETHello Also, is there a way to get this control to work with a required field validator so that if the user does not enter anything in the textbox it doesn't postback to give the user the error message? i have got the same problem did you find any solution for it . thank you. have a nice day.
-
Diffrence between DataSet & DataReaderhi i want to know what is the Diffrence between the DATASET and the DATAREADER and when you use each of them thankx
-
LSP Problemwhen i install the LSP code Sample of the MSDN my internet explorer cant establish any internet connection. if any one know why this problem occurs and how to solve it please send me . also if any one have code any other code sample that doesnt contain this problem please send it to me . thank you
-
Returning focus to windowam not sure that i understood your problem correctly but i want you to try this solution put the line of code that draw on the dialog or insert data in the Controls inside the function called "OnPaint" --> "WM_PAINT" you will find this function and if not found bring it from the Class wizard of the Dialog. the OnPaint is called every time an Update Occured in your window. so when you will set the focus to your dialog again the OnPaint will be called which will draw and set inputs again.
-
executing Make filei have got some cpp and headers files and a Make file how can i execute the make file to build the workspace ???
-
c++ library runtime errori have made a program using VC++ 7.0 MFC and i included in my package all the MFC Dlls and this program is running under windows XP but when i try to open it from windows 98 a message error occurs telling me that "C++ library runtime error" does any one know how to solve this problem
-
Media Player 10 ActiveX ProblemI imported Windows media player 10 in my application i used the "Put_URL" to play mp3 but when i use the "EndofStream" Event of the OCX it doesn work does any one have idea how to solve this
-
how to add ActiveX control in MDI Applicationhow to add ActiveX control in a MDI application using VC7 i want to add the windows media player Component in my project to open it in a window inside my application .
-
Virtual CDiam working in the same project so please if you got any usefull info or links please send me thank you
-
Virtual CD Driveiam working in a project like yours so please if you found any usefull thing that will help me in implementing the virtual cd please send me
-
Embarsssing Menu Questionyou must call the function that is responsible for drawing inside the OnDraw() the OnDraw function is called by the operating system when any update occurs in the program so if you resize the window this is update so the windows will call the OnDraw function inside which will call your drawing function. by this way it wont disapear
-
Virtual CDi want to know how can i make a "virtual CD" drive on the computer if any one have a usefull experience,articles or links please send me :confused:
-
searching the registryiam making a registry back up program where i want to find an algorithm or function to get my item by item from the registry files till the end of the files . assumption that i dont know the name of the keys . like what happen when you search the hard disk using "*.*" i want the same effect on the registers. if you know any way send me please thank you