The MASM Forum
Projects => ObjAsm => Topic started by: step8 on February 19, 2018, 09:45:00 PM
-
Hi Biterider ,I'm studying your excellent code.
I don't know how to manage the "NetComEngine" Object to work in a real Project.
Do you have any example for this object?or any hints?
Thanks
-
Hello step8
I looked at my old files and found a project that a friend and I were working on some years ago.
I'm sure you'll need to adapt the paths and code to fit to the current model, but it's a good place to start.
Let me know if you miss a file.
The attached project is a server / client project via HTTP using the NetComEngine.
Regards, Biterider
-
Thank you very mach,I'll try.
:t
-
I open the "NetComHttpSrv.rap" project and compile it,get following error message:
-------------------------------------------
WARNING duplicate include file advapi32.inc
-------------------------------------------
NetComHttpSrv.asm(18) : fatal error A1000: cannot open file : E:\Masm32\ObjAsm32\Code\Macros\UStrings.inc
I comment off the line :
% include &MacPath&UStrings.inc ;Includes Unicode support for DlgTmpland I get following messages:
NetComHttpSrv.asm(25) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(26) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(27) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(28) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(29) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(30) : error A2008: syntax error : LoadObjects
NetComHttpSrv.asm(31) : error A2008: syntax error : MakeObjects
NetComHttpSrv.asm(32) : error A2008: syntax error : LoadObjects
I searched in ObjASM32 folder,there is no "UStrings.inc" file.
-
By the way,your ObjAsm64 Download link is broken.
Not Found
The requested URL /DwnFiles/ObjAsm64.zip was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
-
Hi step8
Try replacing UStrings by WStrings (UNICODE -> WIDE)
Since the code is relatively old, I suspect that there are more differences you have to look at.
Thanks for the feedback about the new homepage. For the time being, it is only a test and has no download content, until I release the code.
Biterider
-
OK,I think I need time to study it.
Thanks for your great code :t