Jan 29, 2014 #1 1 18F4520 Junior Member level 1 Joined Jan 29, 2014 Messages 15 Helped 0 Reputation 0 Reaction score 0 Trophy points 1 Activity points 82 Hi, i am getting this strange error: Internal Exception: access violation in module 'UNKNOWN' 00000000. It happens when i want to execute conversions library routines from mikroBasic (WordToStr, IntToStr...). I simulate MCU PIC 18F4520. I have done it before successfully, but now i can't 8-O So now whenever i put : in declaration section: dim aaaa as integer dim eeee as string[6] Click to expand... main section: IntToStr(aaaa, eeee) Click to expand... I get this error in ISIS. Any ideas?
Hi, i am getting this strange error: Internal Exception: access violation in module 'UNKNOWN' 00000000. It happens when i want to execute conversions library routines from mikroBasic (WordToStr, IntToStr...). I simulate MCU PIC 18F4520. I have done it before successfully, but now i can't 8-O So now whenever i put : in declaration section: dim aaaa as integer dim eeee as string[6] Click to expand... main section: IntToStr(aaaa, eeee) Click to expand... I get this error in ISIS. Any ideas?
Feb 10, 2014 #2 1 18F4520 Junior Member level 1 Joined Jan 29, 2014 Messages 15 Helped 0 Reputation 0 Reaction score 0 Trophy points 1 Activity points 82 Solved: in declaration section: dim aaaa as integer dim aaaa2 as integer dim eeee as string[6] Click to expand... main section: aaaa2 = aaaa IntToStr(aaaa2, eeee) Click to expand... Now it works fine.
Solved: in declaration section: dim aaaa as integer dim aaaa2 as integer dim eeee as string[6] Click to expand... main section: aaaa2 = aaaa IntToStr(aaaa2, eeee) Click to expand... Now it works fine.