N.B.: For Code Scroll Down :) Hello Everyone, This is Sachin K here again, Today while at work one of my colleague got into a trouble. He entered a lot of data into a spreadsheet like names of person and data related to their documents in front of their name. Now all of a sudden he needs to insert a numbering bullets in various rows, similar to one can find in MS Word. Oh !!! Its not there !!! I thought I could write a simple VBA code instead and make things easy for him. Here is the situation (Screenshot 1): You have data in row as seen below from Row No. 2 to Row No. 13. You want to insert 1) , 2), 3), ..., etc. in front of each data in the same cells as they are. It easy to put serial in empty cells in front of the data but remember that's not what we want here. Screenshot 1 : The Problem Here is the Solution (Screenshot 2): The VBA Code runs and gives a result as shown in screenshot below Screenshot 2 : The Solution The VBA Code and Form used (Scree...
Hello friends, Finally I have some free time to continue my blogging...so I am continuing my thread on Programming a Structural Section Drafting Program in VBA for AutoCAD. Remember the questions that I raised in previous thread about program....( Here )... I am going to demonstrate the (4) th question's solution which is pretty simple but very important for newbies.... How to load a program each time AutoCAD starts up and avoid loading the program each time you restart AutoCAD. 1. Go to Tools---AutoLISP----Load Application submenu or Tools---Load Application submenu Alternatively you can use the command line appload 2. You will see a file browse dialog box asking you to locate the application file...similar to image below: 3. Now observe, Red box number 1 Note: a. The type of files you can load into AutoCAD in red box number 1 in image above. Note: b. We use file with extension .dvb for loading a VBA program file which contains our code n ...