Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

EVENTLOG

Status
Not open for further replies.

rwmeds

Programmer
Mar 10, 2003
2
US
Creating a rc file from a mc using mc under \Visual Studio.net\Common7\Tools\Bin

mc file looks like:

MessageId=1
Facility=Application
Severity=Success
SymbolicName=EVMGR_CATEGORY
Language=English
None

MessageId=100
Severity=Success
SymbolicName=EVMGR_MESSAGE
Language=English
gwTOS Error -
%1
%2


run mc - filename.mc and receive an error of

error : Unterminated message definition


delete the MessageId=100 group and it works..all examples I've found show that the two should work

any ideas

Thanks
 
Don't you need a period on seperate line between message definitions?

Code:
MessageId=1
Facility=Application
Severity=Success
SymbolicName=EVMGR_CATEGORY
Language=English
None
.
Code:
MessageId=100
Severity=Success
SymbolicName=EVMGR_MESSAGE
Language=English
gwTOS Error -

-pete
 
Status
Not open for further replies.

Similar threads

Replies
3
Views
59

Part and Inventory Search

Sponsor

Back
Top