K-IDE support forum
Find all information about Kawasaki's Integrated Development Environment

Some bugs

#1 by Mr.T , Wed Sep 29, 2021 11:13 am

Hi,

i found these translation error


[img]
bool_dx.jpg - Bild entfernt (keine Rechte)

t_point_dx.jpg - Bild entfernt (keine Rechte)

nome_campo_mancante_color_2.jpg - Bild entfernt (keine Rechte)
[/img]
also in other languages, the text name is missing.


and thesebug:
1) from version 1.0.0.5 beta onwards (1.0.0.36) (not problems with stable version), when I open a project with very large arrays (over 800 elements), this happens:
it's a gif array_limit.gif - Bild entfernt (keine Rechte)

and not open file
edit: if I download everything from the robot I don't have this problem

2) from always, when i'm offline and try to save to the server: IOException destination unreachable
[img]io_exception_salvataggio_file_2.jpg - Bild entfernt (keine Rechte)[/img]


3) from vs 1.0.0.24, variable download doesn't work for reals and strings, i haven't tried the others type
it's a gif upload_var.gif - Bild entfernt (keine Rechte)



The following user say thank you: cquante
Mr.T  
Mr.T
Posts: 30
Date registered 02.08.2021

Last edited 09.29.2021 | Top

RE: Some bugs

#2 by cquante , Wed Sep 29, 2021 1:49 pm

Hello,

thank you very much for the detailed bug(s) report!

Zitat von Mr.T im Beitrag #1

i found these translation error

also in other languages, the text name is missing.



It is fixed now in my development version. For the color dialog please go to the syntax settings and add the name for the last entry like this:
2021-09-29 13_46_21-AS Syntax.png - Bild entfernt (keine Rechte)

Zitat von Mr.T im Beitrag #1

and thesebug:
1) from version 1.0.0.5 beta onwards (1.0.0.36) (not problems with stable version), when I open a project with very large arrays (over 800 elements), this happens:
it's a gif

and not open file
edit: if I download everything from the robot I don't have this problem



Can you please make a screenshot from the error message? - Thank you!

Zitat von Mr.T im Beitrag #1

2) from always, when i'm offline and try to save to the server: IOException destination unreachable
[img][/img]




I cannot reproduce. It's seems to be an error message from the I/O function of the Windows system, so maybe the folder / filesystem has permissions for the user of K-IDE?

Zitat von Mr.T im Beitrag #1

3) from vs 1.0.0.24, variable download doesn't work for reals and strings, i haven't tried the others type
it's a gif



It is fixed now in my development version.


Christian Quante
Technical Sales
Sales Department

Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany


 
cquante
Posts: 254
Date registered 12.20.2019


RE: Some bugs

#3 by Mr.T , Wed Sep 29, 2021 4:09 pm

Zitat
Zitat von cquante im Beitrag #2
Can you please make a screenshot from the error message? - Thank you!



Here it's
scrren_error_array_big.jpg - Bild entfernt (keine Rechte)

Zitat
Zitat von cquante im Beitrag #2
I cannot reproduce. It's seems to be an error message from the I/O function of the Windows system, so maybe the folder / filesystem has permissions for the user of K-IDE?



I usually work on the server and always save there.
the exception only happens when I go offline and try to save



Mr.T  
Mr.T
Posts: 30
Date registered 02.08.2021

Last edited 09.29.2021 | Top

RE: Some bugs

#4 by cquante , Thu Sep 30, 2021 7:04 am

Zitat von Mr.T im Beitrag #3

Zitat
Zitat von cquante im Beitrag #2
Can you please make a screenshot from the error message? - Thank you!



Here it's



Thank you for the screenshot!

I cannot find something looking strange in the source code around the shown area (LoadProgram). I tried to reproduce the error creating an array that got 800x800 fields (testarray[1..800,1..800]). Even if it has taken a very long time for creating, adding and viewing such huge data, it can be savend and loaded with no problems.

Is it possible to send me your AS file via PM for tracing?

Zitat von Mr.T im Beitrag #3

Zitat
Zitat von cquante im Beitrag #2
I cannot reproduce. It's seems to be an error message from the I/O function of the Windows system, so maybe the folder / filesystem has permissions for the user of K-IDE?



I usually work on the server and always save there.
the exception only happens when I go offline and try to save



At the moment I have no idea about what is going wrong there. Saving an AS file is very simple: open a file stream, write text data into it, closing the file stream. I don't see anything special when saving a file compared to other windows programs.

What if you save a file without going online? What if you wait a while after disconnect before saving the file?


Christian Quante
Technical Sales
Sales Department

Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany


 
cquante
Posts: 254
Date registered 12.20.2019


RE: Some bugs

#5 by Mr.T , Thu Sep 30, 2021 10:25 am

Zitat von cquante im Beitrag #4
What if you save a file without going online? What if you wait a while after disconnect before saving the file?


if I save locally I have no problems.
if I save on the server or on the usb that are not reachable it goes into error, even if I wait a bit.
In theory, just handle the exception and not open the stream, right?


The following user say thank you: cquante
Mr.T  
Mr.T
Posts: 30
Date registered 02.08.2021


RE: Some bugs

#6 by cquante , Thu Sep 30, 2021 10:52 am

Zitat von Mr.T im Beitrag #5
Zitat von cquante im Beitrag #4
What if you save a file without going online? What if you wait a while after disconnect before saving the file?


if I save locally I have no problems.
if I save on the server or on the usb that are not reachable it goes into error, even if I wait a bit.
In theory, just handle the exception and not open the stream, right?


Yes that's right. If an exception is thrown, only a message appears and the function is left.


Christian Quante
Technical Sales
Sales Department

Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany


 
cquante
Posts: 254
Date registered 12.20.2019


RE: Some bugs

#7 by cquante , Thu Sep 30, 2021 11:20 am

Zitat von cquante im Beitrag #4
Zitat von Mr.T im Beitrag #3

Zitat
Zitat von cquante im Beitrag #2
Can you please make a screenshot from the error message? - Thank you!



Here it's



Thank you for the screenshot!

I cannot find something looking strange in the source code around the shown area (LoadProgram). I tried to reproduce the error creating an array that got 800x800 fields (testarray[1..800,1..800]). Even if it has taken a very long time for creating, adding and viewing such huge data, it can be savend and loaded with no problems.

Is it possible to send me your AS file via PM for tracing?



I check again and found out that the K-IDE didn't handle empty lines after the header line (.PROGRAM xxx ()) and before the program comments. The issue is fixed in my development version and will be included into the next update / BETA.

Thank you Mr.T!


Christian Quante
Technical Sales
Sales Department

Kawasaki Robotics GmbH
Rheiner Landstrasse 195A • 49078 Osnabrück
Germany


 
cquante
Posts: 254
Date registered 12.20.2019


   

Reformat text with block teaching bug
KIDE error uploading a backup to K-ROSET



Xobor Xobor Community Software
Datenschutz