cc2 errors in application log

publicvoid

New member
When starting the service, i get errors in the system log:

7/26/2005 11:45:42 AM lcd_631 Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\lcd_631.ini"" "
7/26/2005 11:45:42 AM lcd_631 Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\lcd_631.ini"" "
7/26/2005 11:45:42 AM cc2_winamp2_vis Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_winamp2_vis.ini"" "
7/26/2005 11:45:41 AM cc2_winamp2 Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_winamp2.ini"" "
7/26/2005 11:45:41 AM cc2_textfile Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_textfile.ini"" "
7/26/2005 11:45:41 AM cc2_speedfan Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_speedfan.ini"" "
7/26/2005 11:45:41 AM cc2_process Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_process.ini"" "
7/26/2005 11:45:40 AM cc2_perfmon Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_perfmon.ini"" "
7/26/2005 11:45:40 AM cc2_mbm Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_mbm.ini"" "
7/26/2005 11:45:40 AM cc2_keyboard Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_keyboard.ini"" "
7/26/2005 11:45:40 AM cc2_histogram Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_histogram.ini"" "
7/26/2005 11:45:40 AM cc2_hbar Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_hbar.ini"" "
7/26/2005 11:45:40 AM cc2_email Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_email.ini"" "
7/26/2005 11:45:40 AM cc2_foobar2000 Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_foobar2000.ini"" "
7/26/2005 11:45:40 AM cc2_cchar Error None 4 N/A WHTKMINI "ini_read: Could not open config file ""C:\Program Files\CrystalControl2\cc2-service\cc2_cchar.ini"" "

Everything works, but it is just a pain to see that in the log. Also, any easy way to turn on 12 hour time format instead of 24 hr?

Thank you,
John G
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 

daks001

New member
Here is an "un-official" "cheat" and comes with no warranty... :D

Those "error messages" are from the .dll files with the same name trying to get their instructions from the ini files. So you could move those dll files with the same name into a subdirectory and those messages will not appear in the logs any more....

BUT
If you delete those dll files... or load a new screen type that may require information from one of those dll files it may not work on the display... looking inside a screen file (in the \Program Files\CrystalControl2\cc2-config\screens directory) with a text editor will tell you what .dll files are used.

USE AT YOUR OWN RISK!
;)
 

daks001

New member
publicvoid said:
Everything works, but it is just a pain to see that in the log. Also, any easy way to turn on 12 hour time format instead of 24 hr?

Thank you,
John G
Which screen file are you loading???
 

CF Mark

Administrator
I hope to rearrange the logging system soon.
It is very annoying to see the NOTICE and INI load errors every time.
 

publicvoid

New member
Thanks for the help. I am using the System Uptime.1602 screen and the Date-Time.1602 screens. I will try moving the dll's. Any info on the converting Date-Time to 12 hr format?

Thanks,
John Gjonola
 

jc634

Administrator
Here is the contents of the screen file below:

[pre]
rows=2
cols=16

[screen]
screen_name="Date/Time"
options=0
alt_delay=5000

[r00]
options=10

[r00-i00]
id=1731734103

[r01]
options=10

[r01-i00]
id=1112400219

Change the 1731734103 to whichever format you want from the following list. For example, 3821940652 gives you a 12 hour clock without seconds.

Edit the screen file to your desired ID #, "Save as" to some other name you want, delete the old screen and add back the one you just made.

;Static IDs
;
; 512469613 = Big Clock, 24hr (20x4 LCDs only)
; 933777230 = Big Clock, 12hr (20x4 LCDs only)
; 1731734103 = Time 24hr (with seconds)
; 2042352858 = Time 24hr (without seconds)
; 852104489 = Time 12hr (with seconds)
; 3821940652 = Time 12hr (without seconds)
; 3162352690 = AM/PM text
; 1112400219 = Date (month first)
; 467302955 = Date (day first)
; 3451264379 = System Uptime

Jim
 
Top