maximus Posted August 25, 2008 Report Share Posted August 25, 2008 What complier I need?I want to translate unicontroller in my language.P.S : Sorry for my Bad English Quote Link to comment Share on other sites More sharing options...
olajideolaolorun Posted August 26, 2008 Report Share Posted August 26, 2008 I believe iapain wrote that in C++, C or Vb. Not sure, but i think C++. Quote Best Regards Olajide Olaolorun The Uniform Server Development Team Link to comment Share on other sites More sharing options...
maximus Posted August 26, 2008 Author Report Share Posted August 26, 2008 I believe iapain wrote that in C++, C or Vb. Not sure, but i think C++.Compiler c++ wrote many errors in original file. Quote Link to comment Share on other sites More sharing options...
olajideolaolorun Posted August 26, 2008 Report Share Posted August 26, 2008 Yeah, you have to also note what compiler he used. I will find out for you when i get home from school ok. Quote Best Regards Olajide Olaolorun The Uniform Server Development Team Link to comment Share on other sites More sharing options...
maximus Posted August 27, 2008 Author Report Share Posted August 27, 2008 Yeah, you have to also note what compiler he used. I will find out for you when i get home from school ok.Ok. Thx.P.S: I am from Russia Quote Link to comment Share on other sites More sharing options...
maximus Posted August 30, 2008 Author Report Share Posted August 30, 2008 So what? Quote Link to comment Share on other sites More sharing options...
olajideolaolorun Posted September 11, 2008 Report Share Posted September 11, 2008 Its MS Visual Basic. Quote Best Regards Olajide Olaolorun The Uniform Server Development Team Link to comment Share on other sites More sharing options...
maximus Posted September 19, 2008 Author Report Share Posted September 19, 2008 Its MS Visual Basic.It is not MS VB. MS Visual Basic Express 2008 can't complete it.I think it is c++,but MS Visual c++ Express 2008 can't complete it too.Help me please. Quote Link to comment Share on other sites More sharing options...
Ric Posted September 19, 2008 Report Share Posted September 19, 2008 If you look at the top of file unicontrollerres.h you will see this line:The following code comes from K:\lcc\lib\wizard\stddef.tpl */ So I think the compiler was LCC Additional information for that compiler can be found on this page: http://www.q-software-solutions.de/products/lcc-win32/ All the bestRic Quote Link to comment Share on other sites More sharing options...
maximus Posted September 26, 2008 Author Report Share Posted September 26, 2008 If you look at the top of file unicontrollerres.h you will see this line:The following code comes from K:\lcc\lib\wizard\stddef.tpl */ So I think the compiler was LCC Additional information for that compiler can be found on this page: http://www.q-software-solutions.de/products/lcc-win32/ All the bestRic It can't complete it too. Quote Link to comment Share on other sites More sharing options...
Ric Posted September 26, 2008 Report Share Posted September 26, 2008 Strange! Not sure what you mean by “It can't complete it too.”I performed the following steps: 1) I download and installed lccwin2.exe2) Created a new windows project named “unicontroller”3) Used the wizard and accepted the defaults4) Copied, unicontrollerres.h, unicontroller.c and unicontroller.rc5) Ran “make” which produced an error addeded shell32.lib to linker6) Ran “make” again had three warnings (lines 93, 94 and 95) “pointer truncation when converting to unsigned short”7) Ran the program, some of the text was masked changed this section: // Create a label HWND lblServer = CreateWindowEx(0, "STATIC", "Uniform Server Core", WS_CHILD|WS_VISIBLE, 10,80,70,40, hWnd,NULL,NULL,0);To: // Create a label HWND lblServer = CreateWindowEx(0, "STATIC", "Uniform Server Core", WS_CHILD|WS_VISIBLE, 10,80,70,50, hWnd,NULL,NULL,0); I was unable to resolve warning in 6) however since these are not errors ignored them.Popped the result in US and it works. I am not sure if any of the above will help. All the bestRic Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.