Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS Tech Support » ExtLabel & VS2008 Collapse All
Subject Author Date
Wes Aday Dec 3, 2007 - 4:41 PM

When I compiled the DLLs in VS 2008 I got 4 errors on line 180 of ExtLabel.cpp. The line reads:"if( strText.Find( _T(’\t’) ) != -1 )". The errors are:
Error    1    error C2017: illegal escape sequence    c:\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtLabel.cpp    180    ProfUISDLL
Error    2    error C2065: ’L’’ : undeclared identifier    c:\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtLabel.cpp    180    ProfUISDLL
Error    3    error C2146: syntax error : missing ’)’ before identifier ’t’’    c:\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtLabel.cpp    180    ProfUISDLL
Error    4    error C2059: syntax error : ’)’    c:\Program Files\FOSS Software Inc\Prof-UIS\Src\ExtLabel.cpp    180    ProfUISDLL

Changing the single quotes to doubles quotes eliminates the errors.

if( strText.Find( _T("\t") ) != -1 )

Technical Support Dec 4, 2007 - 1:26 PM

Thank you for this information. We can provide you with the latest source code on your request.

Wes Aday Dec 3, 2007 - 4:43 PM

Forgot to mention that this was v2.81 and VS2008 RTM.