Training on V9
The company that I work for, is about to switch to Bricscad V9 from AutoCad 2008. Where can I go to get training for this software. Currently, there is about 50 people that are all highly trained in AutoCad...but due to the cost, they want us to switch. What we have found out, is that there are alot of things that you can not do with Bricscad that you can do with Autocad. I have searched the forum, but can't seem to find anything. Please help me out.Thanks in advance,Eric Barnes
Comments
-
Please take a look at the comparison table. It will give you an overview of the differences in functionality.
0 -
Thank you Sander for the comparsion table chart...it helped some. Alot of the troubles that we are finding, are issues like :1) How can you make your right mouse button to be "enter"2) Where do we go to find the hot keys for Snap, Polar, OSnap, ect.. (like F3 turns on and off Snap in ACad.Little issues like that. I have sent in a support ticket for the right click option....considering that it is the biggest problem that we are facing.Thanks,Eric
0 -
1) Right click is defined by the system variable "SHORTCUTMENU". To change it, open the settings dialog (Choose Settings from the Settings menu), type in "ShortcutMenu" in the find box on top of the dialog. The grid control will jump to the setting "Shortcut menus". Open it, and switch off the check box "Enable Command mode shortcut menus".2) Choose Customize from the Tools menu, click the Keyboard tab.
0 -
THANK YOU PIETER !!!!!!!You have just made nearly 50 people exteremly happy !!! Thank you again,Eric
0 -
What is the command to toggle polar mode on and off?
0 -
If you mean to toggle polar snapping you can click on the POLAR field in the statusbar. Right click on POLAR to get directly to the settings.To program a solution you can modify values in AUTOSNAP, POLARANG, POLARADDANG and POLARMODE variables.AUTOSNAP and POLARMODE can be run as a command if you know the value you want set.
0 -
Yeah, I saw the toggle I can click. I'm wanting to assign the toggle to F11, like in AutoCAD, but I don't see an option for "Toggle" like with orthographic mode.
0 -
Well, I am a bit out of my area of comfort as I do not use polar snapping but you could make a key assignment using CUI and set the command to something like:
(if (= (logand (getvar "AUTOSNAP") 8) 0) (setvar "AUTOSNAP" (logior (getvar "AUTOSNAP") 8)) (setvar "AUTOSNAP" (- (getvar "AUTOSNAP") 8)))(princ)
0