I have heard that the new 3.1 will bee released today.
When do i get it?
I hope that the error with robhold wobj is corrected
Best regards Klaus
![]()
![]()
![]()
![]()
I have heard that the new 3.1 will bee released today.
When do i get it?
I hope that the error with robhold wobj is corrected
Best regards Klaus
![]()
![]()
![]()
![]()
Hello Klaus,
You are right, RobotStudio 3.1 is “released” in the sense that the Master CD has been sent to our production company.They will start sending the boxes out, to our Subscription Service customers, during next week, add 2-3 days for delivery and you will have your upgrade shortly.
Best regards
/Ulrika Mor?n
Support Engineer M. Sc.
Target generated as .NoName. in the Virtual Controller
This problem is now resolved.
:smile:
[QUOTE=John Wiberg]
Release_notes_for_RobotStudio_3.1.zip
![]()
[/QUOTE]
It lokkes that you have solved my problem with the robhold true on Wobj. Looking forward to try the new 3.1.![]()
OK. I got my boxes today. So it’s in shipping now.
[QUOTE=Melk]
Target generated as .NoName. in the Virtual Controller
This problem is now resolved.
:smile:
[/QUOTE]
How to resolve problem whit targets generated as .NoName in the Virtual Controller?
This problem is solved by installing RobotStudio 3.1 :stuck_out_tongue_winking_eye:. It is stated in the release notes of RS 3.1
GPetak
If you get that problem you should run this macro:
Sub RenameInstances()
Dim TargetInst As Target
Dim TheLot As TargetsDim TargetName As String
Dim tmpString As VariantSet TheLot = ActiveStation.Targets
On Error GoTo errh
'Re-rename ALL Target instances. This will actually name the Target definitions!
For Each TargetInst In TheLot'Remove the “:” from the original name
TargetName = TargetInst.Name
tmpString = Split(TargetName, “:”)
TargetName = tmpString(0)'Rename the Target…
TargetInst.Name = “tmpTargetName”
TargetInst.Name = TargetNameCall ActiveStation.PrintLog(“Log”, TargetName & " Re-renamed!")
Next TargetInst
Exit Suberrh:
Call ActiveStation.PrintLog(“Log”, TargetName & " NOT Re-renamed!")End Sub