000

Index Labels

Prompting User With Message Bubble Window

.
Well, it's been quite some time I have not posted anything. Although I haven't dealt with AutoCAD at my work lately, I always keep my eyes on AutoCAD related topics found online. 

In this post, I focus on showing message bubble window in various ways. There are some information/blog posts we can find online, especially from Kean Walmsley's excellant blog.

It would be nice when AutoCAD runs our custom-developed tools and something happens, user gets prompted in a way not too intrusive. Of course, the "something" is not too critical to continue the tool running, in most cases. Things like update availability checking, background work status, and so on.

I list 3 ways of showing message in bubble window from AutoCAD: using AutoCAD status bar, using AutoCAD InfoCenter and using Window's system tray.

Firstly, since there are mutiple ways to show bubble window from AutoCAD, in order to simplify the calling method from AutoCAD, I created an interface and have each bubble window showing class implement the interface. This way, the custom tool that wants to show bubble window would be effectively separated from the concrete implementation of how bubble window is shown in easy approach, as long as the approach implements the interface. Here is the code of the interface:

Code Snippet
  1. namespace MessageBubbles
  2. {
  3.     public interface IMyMessageBubble
  4.     {
  5.         void ShowBubbleWndow(
  6.                 string title,
  7.                 string message1,
  8.                 string message2="",
  9.                 string linkText="",
  10.                 string linkUrl="",
  11.                 string acadCommand="");
  12.     }
  13. }

You may noticed, this is C# code and I uses optional parameters, which is newly adopted in C# 4.0. Obviously I run my code with AutoCAD2012. If you run earlier AutoCAD version and develop with .NET2.0/3.x, then you can only use optional parameter with VB.NET. If you use C#, you'd have to write a few overloaded ShowBubbleWindow() methods that take different parameters.

As I mentioned here I show three 3 ways of showing bubble window, which is done with 3 classes all implementing the IMyMessageBubble interface: MyAcadStatusBarBubble, MyAcadInfoCenterBubble and MyWindowSystemTrayBubble. Thanks to the interface, I can go ahead to write my custom tool without knowing how the 3 classes actually show their bubble window. Here is my simple custom tool that just shows the bubble window with different command. Optionally, upon the bubble window being clicked/closed, an Acad command can be called and executed. Here is the code:

Code Snippet
  1. using Autodesk.AutoCAD.ApplicationServices;
  2. using Autodesk.AutoCAD.EditorInput;
  3. using Autodesk.AutoCAD.Runtime;
  4.  
  5. [assembly: CommandClass(typeof(MessageBubbles.MyCommands))]
  6.  
  7. namespace MessageBubbles
  8. {
  9.     public class MyCommands
  10.     {
  11.         private static IMyMessageBubble _bubble = null;
  12.  
  13.         [CommandMethod("Hello")]
  14.         public static void HelloWorld()
  15.         {
  16.             Document dwg = Application.DocumentManager.MdiActiveDocument;
  17.             Editor ed = dwg.Editor;
  18.             ed.WriteMessage("\nHELLO WORLD!\n");
  19.         }
  20.  
  21.         [CommandMethod("InfoCenterBubble")]
  22.         public static void ShowInfoCenterBubble()
  23.         {
  24.             _bubble = new MyAadInfoCenterBubble();
  25.             _bubble.ShowBubbleWndow(
  26.                 title:      "My Message from InfoCenter",
  27.                 message1:   "",
  28.                 message2:   "",
  29.                 linkText:   "Go to Google",
  30.                 linkUrl:    "http://www.google.com",
  31.                 acadCommand: "Hello ");
  32.         }
  33.  
  34.         [CommandMethod("StatusBarBubble")]
  35.         public static void ShowTrayItemBubble()
  36.         {
  37.             _bubble = new MyAcadStatusBarBubble();
  38.             _bubble.ShowBubbleWndow(
  39.                 title:      "My Message from Status Bar",
  40.                 message1:   "This message is important",
  41.                 message2:   "Your AutoCAD has been instructed to show " +
  42.                             "bubble window at its status bar. " +
  43.                             "Go to Google for more details",
  44.                 linkText:   "Go to Google",
  45.                 linkUrl:    "http://www.google.com",
  46.                 acadCommand:"Hello ");
  47.         }
  48.  
  49.         [CommandMethod("SystemTrayBubble")]
  50.         public static void ShowSystemTrayBubble()
  51.         {
  52.             _bubble = new MyWindowSystemTrayBubble();
  53.             _bubble.ShowBubbleWndow(
  54.                 title:      "My Message from Window System Tray",
  55.                 message1:   "This is a message from Google website.",
  56.                 message2:   "",
  57.                 linkText:   "Google",
  58.                 linkUrl:    "http://www.google.com",
  59.                 acadCommand: "Hello ");
  60.         }
  61.     }
  62. }

You must notice there is command "Hello". This command is there to demonstrate that when the something happens to the bubble window (clicked, closed), we can make a call to an AutoCAD command, if needed. Read on.

Here are 3 classes that implements IMyMessageBubble interface.

1. Using AutoCAD Status Bar

The code of the class MyAcadStatusBarBubble is here:

Code Snippet
  1. using System;
  2. using Autodesk.AutoCAD.ApplicationServices;
  3. using Autodesk.AutoCAD.Windows;
  4.  
  5. namespace MessageBubbles
  6. {
  7.     public class MyAcadStatusBarBubble : IMyMessageBubble
  8.     {
  9.         TrayItem _item;
  10.         TrayItemBubbleWindow _bubble;
  11.         string _commandOnLinkClick = "";
  12.  
  13.         public MyAcadStatusBarBubble()
  14.         {
  15.             _item = new TrayItem();
  16.             _item.Icon = System.Drawing.SystemIcons.Exclamation;
  17.             _item.ToolTipText = "My bubble window item";
  18.         }
  19.  
  20.         public void ShowBubbleWndow(
  21.                         string title,
  22.                         string message1,
  23.                         string message2="",
  24.                         string linkText="",
  25.                         string linkUrl="",
  26.                         string acadCommand="")
  27.         {
  28.             _commandOnLinkClick = acadCommand;
  29.  
  30.             //Add tray item to status bar
  31.             Application.StatusBar.TrayItems.Add(_item);
  32.  
  33.             //Create TrayItemBubbleWindow object
  34.             _bubble = new TrayItemBubbleWindow();
  35.             _bubble.IconType = IconType.Information;
  36.  
  37.             _bubble.Title = title;
  38.             _bubble.Text = message1;
  39.  
  40.             if (!String.IsNullOrEmpty(message2)) _bubble.Text2 = message2;
  41.             if (!String.IsNullOrEmpty(linkText) &&
  42.                 !String.IsNullOrEmpty(linkUrl))
  43.             {
  44.                 _bubble.HyperText = linkText;
  45.                 _bubble.HyperLink = linkUrl;
  46.             }
  47.  
  48.             _bubble.Closed +=
  49.                 new TrayItemBubbleWindowClosedEventHandler(_bubble_Closed);
  50.  
  51.             //Show bubble window
  52.             _item.ShowBubbleWindow(_bubble);
  53.             Application.StatusBar.Update();
  54.         }
  55.  
  56.         private void _bubble_Closed(object sender,
  57.                     TrayItemBubbleWindowClosedEventArgs e)
  58.         {
  59.             Document dwg = Application.DocumentManager.MdiActiveDocument;
  60.  
  61.             if (e.CloseReason ==
  62.                 TrayItemBubbleWindowCloseReason.HyperlinkClicked)
  63.             {
  64.                 if (!String.IsNullOrEmpty(_commandOnLinkClick))
  65.                 {
  66.                     dwg.SendStringToExecute(
  67.                         _commandOnLinkClick, true, false, true);
  68.                 }
  69.             }
  70.             else
  71.             {
  72.                 dwg.Editor.WriteMessage(
  73.                        "\nStatus Bar bubble window closed due to {0}\n",
  74.                        e.CloseReason.ToString());
  75.             }
  76.  
  77.             Application.StatusBar.TrayItems.Remove(_item);
  78.  
  79.             _bubble.Dispose();
  80.             _bubble = null;
  81.         }
  82.     }
  83. }

Pay attention to the line of code in the Constructor:

_item.Icon = System.Drawing.SystemIcons.Exclamation;

TrayItem's icon must be set to a valid System.Drawing.Icon object, or the TrayItemBubbleWindow will not be shown. That is, when TrayItem.ShowBubbleWindow() is called, the TrayItemBubbleWindow will close immediately with TrayItemBubbleWindowCloseReason.FailedToCreate.

From the code we can see, although TrayItemBubbleWindow is an object separated from TrayItem, but it does not have a method to show itself. It relies on an TrayItem to be shown. Thus, the need to create a TrayItem and added it to AutoCAD status bar. In my case, the TrayItem is only there for showing the bubble window, so, I added it to AutoCAD status bar right before the bubble window is shown and remove it from AutoCAD status bar after the bubble window is closed. If you have other use of the TrayItem, you could add it to AutoCAD status bar in the class' Constructor and not remove it at all.

It is also possible to just loop through AutoCAD.StatusBar.TrayItems collection and find an existing TrayItem and "borrow" it to show your own bubble window.

2. Using AutoCAD InfoCenter

Kean Walmsley posted example of this here. But I'll go ahead with my similar code in class MyAcadInfoCenterBubble that implements IMyMessageBubble anyway:

Code Snippet
  1. using System;
  2. using Autodesk.AutoCAD.ApplicationServices;
  3. using Autodesk.Internal.InfoCenter;
  4. using Autodesk.AutoCAD.AcInfoCenterConn;
  5.  
  6. namespace MessageBubbles
  7. {
  8.     public class MyAadInfoCenterBubble: IMyMessageBubble
  9.     {
  10.         private string _url="";
  11.         private string _command = "";
  12.  
  13.         public void ShowBubbleWndow(
  14.                         string title,
  15.                         string message1,
  16.                         string message2 = "",
  17.                         string linkText = "",
  18.                         string linkUrl = "",
  19.                         string acadCommand = "")
  20.         {
  21.             if (!String.IsNullOrEmpty(linkUrl))
  22.             {
  23.                 _url = linkUrl;
  24.             }
  25.  
  26.             _command = acadCommand;
  27.  
  28.             InfoCenterManager icm = new InfoCenterManager();
  29.  
  30.             ResultItem ri = new ResultItem();
  31.             ri.Category = title;
  32.             ri.Title = linkText;
  33.             ri.Uri =new System.Uri(linkUrl);
  34.             ri.IsFavorite = true;
  35.             ri.IsNew = true;
  36.             ri.ResultClicked +=
  37.                 new EventHandler<ResultClickEventArgs>(ri_ResultClicked);
  38.  
  39.             icm.PaletteManager.ShowBalloon(ri);
  40.  
  41.         }
  42.  
  43.         void ri_ResultClicked(object sender, ResultClickEventArgs e)
  44.         {
  45.             Document dwg = Application.DocumentManager.MdiActiveDocument;
  46.             dwg.Editor.WriteMessage("\nInfo center is clicked\n");
  47.             if (_url.Length>0)
  48.             {
  49.                 System.Diagnostics.ProcessStartInfo proc =
  50.                     new System.Diagnostics.ProcessStartInfo();
  51.                 proc.FileName = _url;
  52.                 System.Diagnostics.Process.Start(proc);
  53.             }
  54.  
  55.             if (!String.IsNullOrEmpty(_command))
  56.             {
  57.                 dwg.SendStringToExecute(_command, true, false, true);
  58.             }
  59.         }
  60.     }
  61. }

You noticed I used System.Diagnostics.Process to start browser with given link. For some reason, although the ResultItem has been supplied a valid System.Uri object, and a link shows correctly in the bubble window, however, nothing happens as expected when I clicked it. In the case of AutoCAD status bar bubble window, the the link is set, there is no need to do anything. I am not sure I am doing thing correctly here by having to use System.Diagnostics.Process to make the link in the InfoCenter bubble window to work. I have not tried this code in other version of AutoCAD other than 2012.

As you can see, with InfoCenter bubble window, there is fewer options for us to show/format the message than TrayItemBubbleWindow.

3. Using Windows System Tray Nitification Icon

In one of my previous posts, I used System.Windows.Forms.NotifyIcon to show status of async process status. Here is the version of implementing IMyMessageBubble:

Code Snippet
  1. using System;
  2. using System.Windows.Forms;
  3. using Autodesk.AutoCAD.ApplicationServices;
  4.  
  5. namespace MessageBubbles
  6. {
  7.     public class MyWindowSystemTrayBubble : IMyMessageBubble
  8.     {
  9.         private NotifyIcon _bubble = null;
  10.         private string _url = "";
  11.         private string _command;
  12.  
  13.         public void ShowBubbleWndow(
  14.                     string title,
  15.                     string message1,
  16.                     string message2 = "",
  17.                     string linkText = "",
  18.                     string linkUrl = "",
  19.                     string acadCommand = "")
  20.         {
  21.             _url = linkUrl;
  22.             _command = acadCommand;
  23.  
  24.             _bubble = new NotifyIcon();
  25.             _bubble.Icon = System.Drawing.SystemIcons.Exclamation;
  26.             _bubble.BalloonTipIcon = ToolTipIcon.Info;
  27.  
  28.             _bubble.BalloonTipTitle = title;
  29.             _bubble.BalloonTipText =
  30.                 message1 + "\n\nClick to go to " + linkText;
  31.  
  32.             _bubble.BalloonTipClicked +=
  33.                 new EventHandler(_bubble_BalloonTipClicked);
  34.             _bubble.BalloonTipClosed +=
  35.                 new EventHandler(_bubble_BalloonTipClosed);
  36.  
  37.             _bubble.Visible = true;
  38.             _bubble.ShowBalloonTip(5000);
  39.         }
  40.  
  41.         private void _bubble_BalloonTipClosed(object sender, EventArgs e)
  42.         {
  43.             if (_bubble != null)
  44.             {
  45.                 _bubble.Dispose();
  46.                 _bubble = null;
  47.             }
  48.         }
  49.  
  50.         private void _bubble_BalloonTipClicked(object sender, EventArgs e)
  51.         {
  52.             if (_url != null)
  53.             {
  54.                 System.Diagnostics.ProcessStartInfo proc =
  55.                     new System.Diagnostics.ProcessStartInfo();
  56.                 proc.FileName = _url;
  57.                 System.Diagnostics.Process.Start(proc);
  58.             }
  59.  
  60.             if (!String.IsNullOrEmpty(_command))
  61.             {
  62.                 Document dwg = Autodesk.AutoCAD.ApplicationServices.
  63.                     Application.DocumentManager.MdiActiveDocument;
  64.                     
  65.                 dwg.SendStringToExecute(
  66.                         _command, true, false, true);
  67.             }
  68.  
  69.             _bubble.Dispose();
  70.             _bubble = null;
  71.         }
  72.     }
  73. }

It is the same as the case of AutoCAD status bar's TrayItem that NotifyIcon's Icon property must be set to a valid System.Drawing.Icon object (no wonder the class is called NotifyIcon). Or it will not be able to show a bubble window (BalloonTip).

Among these 3 ways of showing message bubble window, I recommend to use either AutoCAD status bar's TrayItem, or use Windows system tray NotifyIcon. Both of them make it easy to handle user interaction to the bubble window, such as how the bubble window is closed (TrayItemBubbleWindow), or single/double clicks on the bubble window (Window system NotifyIcon), or mouse click (left/right button) on the icon itself of the both.

This video clip shows how the bubble window pops up in each of the 3 ways discussed in this post.

Blog Archive

Labels

.NET Programming 2D Drafting 3D Animation 3D Art 3D Artist 3D design 3D effects 3D Engineering 3D Materials 3D Modeling 3D models 3D presentation 3D Printing 3D rendering 3D scanning 3D scene 3D simulation 3D Sketch Inventor 3D Texturing 3D visualization 3D Web App 3ds Max 4D Simulation ACC Adaptive Clearing adaptive components Add-in Development Additive Manufacturing Advanced CAD features Advanced Modeling AEC Technology AEC Tools affordable Autodesk tools AI AI animation AI Assistance AI collaboration AI Design AI Design Tools AI Experts AI for Revit AI Guide AI in CAD AI in CNC AI in design AI in Manufacturing AI in Revit AI insights AI lighting AI rigging AI Tips AI Tools AI troubleshooting AI workflow AI-assisted AI-assisted rendering AI-enhanced Animation animation pipeline animation tips Animation workflow annotation AR architectural design architectural modeling architectural preservation architectural visualization Architecture architecture design Architecture Engineering Architecture Firm Architecture Productivity architecture software architecture technology Architecture Workflow Arnold Renderer Arnold Shader Artificial Intelligence As-Built Model Asset Management augmented reality AutoCAD AutoCAD advice AutoCAD API AutoCAD Basics AutoCAD Beginner AutoCAD Beginners AutoCAD Civil 3D AutoCAD Civil3D AutoCAD commands AutoCAD efficiency AutoCAD Expert Advice AutoCAD features AutoCAD File Management AutoCAD Layer AutoCAD Layers AutoCAD learning AutoCAD print settings AutoCAD productivity AutoCAD Teaching AutoCAD Techniques AutoCAD tips AutoCAD tools AutoCAD training. AutoCAD tricks AutoCAD Tutorial AutoCAD workflow AutoCAD Xref Autodesk Autodesk 2025 Autodesk 2026 Autodesk 3ds Max Autodesk AI Autodesk AI Tools Autodesk Alias Autodesk AutoCAD Autodesk BIM Autodesk BIM 360 Autodesk Certification Autodesk Civil 3D Autodesk Cloud Autodesk community forums Autodesk Construction Cloud Autodesk Docs Autodesk Dynamo Autodesk features Autodesk for Education Autodesk Forge Autodesk FormIt Autodesk Fusion Autodesk Fusion 360 Autodesk help Autodesk InfraWorks Autodesk Inventor Autodesk Inventor Frame Generator Autodesk Inventor iLogic Autodesk Knowledge Network Autodesk License Autodesk Maya Autodesk mistakes Autodesk Navisworks Autodesk news Autodesk plugins Autodesk productivity Autodesk Recap Autodesk resources Autodesk Revit Autodesk Software Autodesk support ecosystem Autodesk Takeoff Autodesk Tips Autodesk training Autodesk tutorials Autodesk update Autodesk Upgrade Autodesk Vault Autodesk Video Autodesk Viewer Automated Design Automation Automation Tutorial automotive design automotive visualization Backup Basic Commands Basics Batch Plot Beginner Beginner Tips beginner tutorial beginners guide Big Data BIM BIM 360 BIM Challenges BIM collaboration BIM Compliance BIM Coordination BIM Data BIM Design BIM Efficiency BIM for Infrastructure BIM Implementation BIM Library BIM Management BIM modeling BIM software BIM Standards BIM technology BIM tools BIM Trends BIM workflow Block Editor Block Management Block Organization Building Design Software Building Maintenance building modeling Building Systems Building Technology ByLayer CAD CAD API CAD assembly CAD Automation CAD Blocks CAD CAM CAD commands CAD comparison CAD Customization CAD Data Management CAD Design CAD errors CAD Evolution CAD File Size Reduction CAD Integration CAD Learning CAD line thickness CAD management CAD Migration CAD mistakes CAD modeling CAD Optimization CAD plugins CAD Productivity CAD Rendering CAD Security CAD Skills CAD software CAD software 2026 CAD software training CAD standards CAD technology CAD Tips CAD Tools CAD tricks CAD Tutorial CAD workflow CAM car design software Case Study CEO Guide CGI design Character Rig cinematic lighting Civil 3D Civil 3D hidden gems Civil 3D productivity Civil 3D tips civil design software civil engineering Civil engineering software Clash Detection Class-A surfacing clean CAD file cleaning command client engagement Cloud CAD Cloud Collaboration Cloud design platform Cloud Engineering Cloud Management Cloud Storage Cloud-First CNC CNC machining collaboration command abbreviations Complex Renovation concept car conceptual workflow Connected Design construction Construction Analytics Construction Automation Construction BIM Construction Cloud Construction Planning Construction Scheduling Construction Technology contractor tools Contractor Workflow Contraints corridor design Cost Effective Design cost estimation Create resizable blocks Creative Teams CTB STB Custom visual styles Cutting Parameters Cybersecurity Data Backup data management Data Protection Data Reference Data Security Data Shortcut Design Automation Design Career Design Collaboration Design Comparison Design Coordination design efficiency Design Engineering Design Hacks Design Innovation design optimization Design Options design productivity design review Design Rules design software design software tips Design Technology design tips Design Tools Design Workflow design-to-construction Designer Designer Tools Digital Art Digital Assets Digital Construction Digital Construction Technology Digital Content Digital Design Digital engineering digital fabrication Digital Manufacturing digital marketing digital takeoff Digital Thread Digital Tools Digital Transformation Digital Twin Digital Twins digital workflow dimension dimensioning Disaster Recovery drafting Drafting Efficiency Drafting Shortcuts Drafting Standards Drafting Tips Drawing Drawing Automation drawing tips Dref Dynamic Block Dynamic Block AutoCAD Dynamic Blocks Dynamic doors Dynamic windows Dynamo Dynamo automation early stage design eco design editing commands Electrical Systems Emerging Features Energy Analysis energy efficiency Engineering Engineering Automation engineering data Engineering Design Engineering Innovation Engineering Productivity Engineering Skills engineering software Engineering Technology engineering tools Engineering Tools 2025 Engineering Workflow Excel Export Workflow Express Tools External Reference facial animation Facial Rigging Facility Management Families Fast Structural Design Field Documentation File Optimization File Recovery Flame flange tips flat pattern Forge Development Forge Viewer FreeCAD Fusion 360 Fusion 360 API Fusion 360 tutorial Future of Design Future Skills Game Development Gamification Generative Design Geospatial Data GIS Global design teams global illumination grading optimization green building Green Technology Grips Handoff HDRI health check Healthcare Facilities heavy CAD file Heavy CAD Files heritage building conservation hidden commands Hospital Design HVAC HVAC Design Tools HVAC Engineering Hydraulic Modeling IK/FK iLogic Import Workflow Industry 4.0 Infrastructure infrastructure design Infrastructure Monitoring Infrastructure Planning Infrastructure Technology InfraWorks innovation Insight intelligent modeling Interactive Design interactive presentation Interior Design Inventor Inventor API Inventor Drawing Template Inventor Frame Generator Inventor Graphics Issues Inventor IDW Inventor Tips Inventor Tutorial IoT ISO 19650 joints Keyboard Shortcuts keyframe animation Keyframe generation Landscape Design Large Projects Laser Scan Layer Management Layer Organization Learn AutoCAD Legacy CAD Licensing light techniques Lighting and shading Lighting Techniques Linked Models Machine Learning Machine Learning in CAD Machine Optimization Machining Efficiency maintenance command Management manufacturing Manufacturing Innovation Manufacturing Technology Mapping Technology marketing visuals Material Creation Maya Maya character animation Maya lighting Maya Shader Maya Tips Maya tutorial measurement Mechanical Design Mechanical Engineering Media & Entertainment MEP Modeling Mesh-to-BIM Metal Structure modal analysis Model Management Model Optimization Modeling Secrets Modular Housing Motion capture motion graphics motion simulation MotionBuilder Multi Office Workflow Multi-User Environment multileader Navisworks Navisworks Best Practices Net Zero Design ObjectARX .NET API Open Source CAD Organization OVERKILL OVERKILL AutoCAD Page Setup Palette Parametric Components parametric design parametric family Parametric Modeling particle effects particle systems PDF PDM system Personal Brand Phasing PlanGrid Plot Settings Plot Style Plot Style AutoCAD Plotting Plugin Tutorial Plumbing Design point cloud Portfolio Post Construction Post-Processing Practice Drawing preconstruction workflow predictive analysis predictive animation Predictive Maintenance Predictive rigging Prefabrication Presentation-ready visuals Printing Printing Quality Procedural animation procedural motion Procedural Rig Procedural Textures Product Design Product Development product lifecycle product rendering Productivity productivity tools Professional 3D design Professional CAD Professional Drawings professional printing Professional Tips Project Documentation project efficiency project management Project Management Tools Project Visualization PTC Creo PURGE PURGE AutoCAD Rail Transit Rapid Prototyping realistic rendering ReCap Redshift Shader reduce CAD file size Render Render Passes Render Quality Render Settings Rendering rendering engine Rendering Engines Rendering Optimization rendering software Rendering Tips Rendering Workflow RenderMan Renewable Energy Renovation Project Renovation Workflow Reports Resizable Block restoration workflow Revit Revit add-ins Revit API Revit automation Revit Best Practices Revit Collaboration Revit Documentation Revit Family Revit integration Revit MEP Revit Performance Revit Phasing Revit Plugins Revit Scripting Revit skills Revit Standards Revit Template Revit Tips Revit tutorial Revit Workflow Ribbon Rigging robotics ROI Scale Autodesk Schedules screen Sculpting Secure Collaboration Sensor Data Shader Networks Sheet Metal Design Sheet Metal Tricks Sheet Set Manager shortcut keys Shortcuts Siemens NX Simulation simulation tools Sketch Sketching Tricks Small Firms Smart Architecture Smart Block Smart Building Design Smart City Smart Design Smart Engineering Smart Factory Smart Infrastructur Software Compliance software ecosystem Software Management Software Trends software troubleshooting Software Update Solar Energy Solar Panels SolidWorks Startup Design static stress Steel Structure Design Structural Optimization subscription model Subscription Value Surface Modeling sustainability sustainable design Sustainable Manufacturing system performance T-Spline team training guide Technical Drawing technical support Template Setup text style Texture Mapping Texturing thermal analysis Time Management time saving tools Title Blocks toolbar Toolpath Optimization Toolpaths Topography Troubleshooting Tutorial Tutorials urban planning User Interface (UI) UV Mapping UV Unwrap V-Ray Vault Best Practices Vault Lifecycle Vault Mistakes Vector Plotting vehicle modeling VFX Viewport configuration Virtual Environments virtual reality visual effects visualization workflow VR VR Tools VRED Water Infrastructure Water Management Weight Painting What’s New in Autodesk Wind Energy Wind Turbines Workbook workflow Workflow Automation workflow efficiency Workflow Optimization Workflow Tips Worksets Worksharing Workspace XLS Xref Xrefs เขียนแบบ