The import functionality is unable to handle any programs with spaces in their name. The program name shows up correctly in the list of programs but tries to import the program with only the first word.
I have the same problem here. Our program naming conventions define executable programs with "spoken names". So spaces are allowed and already used in our system. I think it can be a quoting problem inside the used MQL command only.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I solved the problem with the space in the program name.
I changed line 393 in the class org.mxeclipse.dialogs.MatrixProgramsListDialog.java from
String strQuery = "print program " + selProgram + " select code dump |";
to
String strQuery = "print program \"" + selProgram + "\" select code dump |";.
But i found another bug to this topic, I got an error if I try to download a program with the characters "<", ">" and "/". But I don't think that this works cause that are forbidden characters in windows.
But I hope that a developer bring in the space bugfix in the next version of MxEclipse.
Thanks and regards,
Erik
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=967009
Originator: NO
Java can't handle spaces in identifiers anyway. Why naming a program like that?
I have the same problem here. Our program naming conventions define executable programs with "spoken names". So spaces are allowed and already used in our system. I think it can be a quoting problem inside the used MQL command only.
Hi,
I solved the problem with the space in the program name.
I changed line 393 in the class org.mxeclipse.dialogs.MatrixProgramsListDialog.java from
String strQuery = "print program " + selProgram + " select code dump |";
to
String strQuery = "print program \"" + selProgram + "\" select code dump |";.
But i found another bug to this topic, I got an error if I try to download a program with the characters "<", ">" and "/". But I don't think that this works cause that are forbidden characters in windows.
But I hope that a developer bring in the space bugfix in the next version of MxEclipse.
Thanks and regards,
Erik