Is there a way to disable this so even if a program has this on it will not use it?
Disable Fastprobe mode from back end.
Collapse
X
-
Possibly something in the settings editor ? I have turned it on / off in the same program but never a global setting.
-
Comment
-
It's controller specific. On my system it is under FDC. On a Leitz machine it would be in the Leitz section. Not sure what controller you have but there be a corresponding section that would contain the setting providing your controller supports it. Use the FIND option in the settings editor to search for DisableFastProbe. If it doesn't find it then your controller probably doesn't support that setting.
You could remove the option from the menu to prevent it being selected in future but people could still type FASTPROBE into the edit window to insert the command and it would not affect routines already containing FASTPROBE commands. The only other thing I can think of would be to write a script that you could run to either remove all FASTPROBE commands form an open .prg or to set the toggle within all of the FASTPROBE commands to OFF.
-
-
Just wrote a quick script that sets all FASTPROBE commands to OFF. If you link this to a custom toolbar icon, you can click the icon to run it every time you open a new program.
Code:Dim DmisApp As Object Dim DmisPart As Object Dim DmisCommands As Object Dim DmisCommand As Object Dim aa As integer Sub Main Set DmisApp = CreateObject("PCDLRN.Application") Set DmisPart = DmisApp.ActivePartProgram Set DmisCommands = DmisPart.Commands CommandCount = DmisCommands.Count Set DmisCommand = DmisCommands.Item(CommandCount) DmisCommands.InsertionPointAfter DmisCommand For aa=1 To CommandCount Set DmisCommand = DmisCommands.Item(aa) If DmisCommand.item(aa).Type = 902 Then DmisCommands.InsertionPointAfter DmisCommand retval = DmisCommand.SetToggleString (1, ONOFF_TYPE, 0) End If Next aa DmisPart.RefreshPart End Sub
Comment
-
Curious as I use FASTPROBEMODE/ON all the time. Why turn it off completely?PcDmis 2015.1 SP10 CAD++
Global 7-10-7 DC800S
Comment
-
In this particular case Jakep379 was having accuracy problems. With FastProbe ON it will always be less accurate. See https://www.pcdmisforum.com/forum/pc...tability-issue
-
-
Kp61dude! I use Fastprobemode/ON all the time as well. Just this 1 machine "all of a sudden" doesn't like it anymore and i can't figure out why.
neil.challinor I found the Setting i was just browsing on the offline seat in the settings editor and not on the actual machine. It's there and i disabled it for now. Thanks for your help!
Comment
-
I am aware of the accuracy difference, that's why I toggle this setting on/off as needed depending on feature at hand. Leaving this off for all features adds noticeable and unnecessary time to cycles.PcDmis 2015.1 SP10 CAD++
Global 7-10-7 DC800S
Comment
Related Topics
Collapse
-
by MIKEYSince I don't have my old settings I am going to have a lot of stupid qustions like this one!
While I am running the program, the program...-
Channel: PC-DMIS for CMMs
07-23-2008, 05:51 PM -
-
by Neil1968I have been having an issue with pogram code duplicating in summary mode, every time i do a partial execution it duplicates the section i have just run?...
-
Channel: PC-DMIS for CMMs
01-08-2014, 06:44 PM -
-
by gszpotI have installed PcDmis 2019R2 on 4 of our machines. Now the edit window goes into summary mode while running a program. I want it to stay in command...
-
Channel: PC-DMIS for CMMs
01-07-2020, 08:43 AM -
-
by Jim PoehlerHaving been downgraded at my new job to using 4.2, I find that I want to change the default angle rotations under F5 from the +/-180 degrees to a full...
-
Channel: PC-DMIS for CMMs
03-02-2016, 08:48 AM -
-
by granpagusWhat are the registry settings for Protected Mode?
May have potential if I can turn it on and off externally.-
Channel: PC-DMIS for CMMs
09-30-2009, 11:08 PM -
Comment