Click here to Skip to main content
15,880,469 members

Comments by Ron Anoshi (Top 8 by date)

Ron Anoshi 5-Aug-15 4:41am View    
Sorry for the delayed accept, There have been much water under that bridge...
I accepted your solution since it seems correct, but have no way to check it right now.
Ron Anoshi 30-Jan-13 3:06am View    
ok, I eventually wrote it in cpp, because it turns out there's an easy library for that stuff (it's an .ini file), but it was a good tryout and thanks for your help!

ron.
Ron Anoshi 27-Jan-13 7:56am View    
1. your result is correct, but what do you do with a line like:
; comment
(with a space)? that's what i meant...

2. ok, so here's an idea - blank lines come only before a [] header. any ideas on how to identify something of the kind "[Headed]" and how to insert a blank line before it?

much thanks anyway,
ron.
Ron Anoshi 27-Jan-13 7:23am View    
thanks for the reply.

1. "eol=^" did some good, but some comment rows have a space right after the ";" (I should have been more specific), so now i get something like:
-------file.txt-------
;
;
;comment
----------------------

2. the line is redundant. as i said, it was an attempt to insert a newline which doesn't work. it didn't work in your example either :(
Ron Anoshi 1-Aug-12 5:39am View    
well, I have added the register for COM interop, and changed some of the projects definitions, so now the client tries to use the wrapper's DLL.
but now linking fails on the row that tries to access the wrapper, with:


Error 30 error LNK2019: unresolved external symbol "int __cdecl isQueue_u(void)" (?isQueue_u@@YAHXZ) referenced in function "public: virtual long __stdcall ...::...(...*)" (?...@@UAGJPA_WPAPA_W1PAJ@Z) ....obj client

(wrote "..." over some irrelevant inner functions)

Is there a problem linking it dynamicly? how can I find out?