<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://royluardo.github.io/feed.xml" rel="self" type="application/atom+xml" /><link href="https://royluardo.github.io/" rel="alternate" type="text/html" /><updated>2026-03-26T08:22:23+00:00</updated><id>https://royluardo.github.io/feed.xml</id><title type="html">Roy Luardo</title><subtitle>All about me and more</subtitle><author><name>royzkie</name></author><entry><title type="html">Add ‘Sleep’ and ‘Lock’ button to the taskbar</title><link href="https://royluardo.github.io/2025/03/12/add-sleep-and-lock-button-to-the-taskbar.html" rel="alternate" type="text/html" title="Add ‘Sleep’ and ‘Lock’ button to the taskbar" /><published>2025-03-12T08:30:00+00:00</published><updated>2025-03-12T08:30:00+00:00</updated><id>https://royluardo.github.io/2025/03/12/add-sleep-and-lock-button-to-the-taskbar</id><content type="html" xml:base="https://royluardo.github.io/2025/03/12/add-sleep-and-lock-button-to-the-taskbar.html"><![CDATA[<h2>Add "Sleep" and "Lock" button to the taskbar</h2>

<p>Yes you can easily access the Sleep and Lock toggle from the start menu by clicking windows icon then the power icon then lock or sleep. That is easy and all but I'm just lazy like that. I want to add this 2 toggles directly on the taskbar.</p>

<p>Also you can use keyboard shortcut for lock which is "Windows Key + L". That is easy enough. But for sleep, it is a combination of keys. It's "Windows Key + X" then "U" then "S". That is easy and all but like I ssaid I'm just lazy like that.</p>

<p>So here is how to add this 2 toggles on the taskbar for easy access.</p>

<p>For the "Lock" Toggle:</p>
<ul>
<li>1. Right click on the desktop and choose "New" then "Shortcut".</li>
<li>2. Below the "Type the location of the item:" space, copy and paste this "rundll32.exe User32.dll,LockWorkStation" then clic "Next".</li>
<li>3. Type the name of the shortcut, name it "Lock" instead of rundll32.exe then clic "Finish".</li>
<li>4. Right click on the newly created shortcut icon and select "Properties" (in win 11, click "Show more options" first).</li>
<li>5. Click on "Change Icon" button. It might say "Choose an icon from the list or spicify a different file", just click "Okay".</li>
<li>6. You should see a bunch of icons to choose from. Select any and click "Okay".</li>
    
<li>7. (Optional) You can use your own icons too. Try download <a href="/download/shortcut/lock.ico?v=0X202603260822" target="_blank">this icon file</a> (.ico file) save it anywhere in your computer. Instead of using the common icons, while choosing the icons, click on "Browse" and look for the ico file that you have downloaded. Select it and click "Open" then "Okay". Click "Apply" then "Okay".</li>
<li>8. You shortcut should have a new look using the icon you choose.</li>
<li>9. Drag the shortcut anywhere on the taskbar.</li>
<li>10.  If you want to lock you computer just click on that icon.</li>
</ul>

<p>For the "Sleep" Toggle:</p>
<ul>
<li>1. Right click on the desktop and choose "New" then "Shortcut".</li>
<li>2. Below the "Type the location of the item:" space, copy and paste this "rundll32.exe powrprof.dll,SetSuspendState 0,1,0" then clic "Next".</li>
<li>3. Type the name of the shortcut, name it "Sleep" instead of rundll32.exe then clic "Finish".</li>
<li>4. Right click on the newly created shortcut icon and select "Properties" (in win 11, click "Show more options" first).</li>
<li>5. Click on "Change Icon" button. It might say "Choose an icon from the list or spicify a different file", just click "Okay".</li>
<li>6. You should see a bunch of icons to choose from. Select any and click "Okay".</li>
<li>7. (Optional) You can use your own icons too. Try download <a href="/download/shortcut/sleep.ico?v=0X202603260822" target="_blank">this icon file</a> (.ico file) save it anywhere in your computer. Instead of using the common icons, while choosing the icons, click on "Browse" and look for the ico file that you have downloaded. Select it and click "Open" then "Okay". Click "Apply" then "Okay".</li>
<li>8. You shortcut should have a new look using the icon you choose.</li>
<li>9. Drag the shortcut anywhere on the taskbar.</li>
<li>10.  If you want to put your computer to sleep, just click on that icon.</li>
</ul>

<p><strong>TL;DR</strong></p>
<p>If you don't want to go into all that trouble, download <a href="/download/shortcut/shortcut.zip?v=0X202603260822" target="_blank">this zip file</a> which contains the shortcuts with the icons. Save and extract to your desktop. Change the icons then drag the shortcuts to your tak bar. EASY.</p>]]></content><author><name>royzkie</name></author><category term="Tutorial" /><category term="Reference" /><summary type="html"><![CDATA[Add "Sleep" and "Lock" button to the taskbar]]></summary></entry><entry><title type="html">Environmental Variables For Folder Navigation</title><link href="https://royluardo.github.io/2025/02/06/environmental-variables-for-folder-navigation.html" rel="alternate" type="text/html" title="Environmental Variables For Folder Navigation" /><published>2025-02-06T14:30:00+00:00</published><updated>2025-02-06T14:30:00+00:00</updated><id>https://royluardo.github.io/2025/02/06/environmental-variables-for-folder-navigation</id><content type="html" xml:base="https://royluardo.github.io/2025/02/06/environmental-variables-for-folder-navigation.html"><![CDATA[<h2>List of most commonly used environmental variables for folder navigation in Windows:</h2>

<p>Copy the variables (%xxxx%) into the windows explorer address bar and hit enter.</p>

<p>%AppData% - "C:\Users\{username}\AppData\Roaming"</p>
<p>%ALLUSERSPROFILE% or %PROGRAMDATA% - "C:\ProgramData"</p>
<p>%CommonProgramFiles(x86)% or %CommonProgramW6432% - "C:\Program Files (x86)\Common Files"</p>
<p>%LOCALAPPDATA% - "C:\Users\{username}\AppData\Local"</p>
<p>%OneDrive% -  access your OneDrive folder</p>
<p>%ProgramFiles% - "C:\Program Files"</p>
<p>%SystemRoot% - "C:\Windows"</p>
<p>%TEMP% or \%TMP\% - "C:\Users\{username}\AppData\Local\Temp"</p>
<p>%SystemDrive% - "C:\"</p>
<p>%USERPROFILE% - "C:\Users\{username}"</p>
<p>%windir% - "C:\Windows"</p>

<p>There are other environmental variables, but the ones listed above are the most common I remembered from the top of my head. </p>

<p>For more examples and more information about environmental variables, <a href="http://tiny.cc/jp59001" target="_blank">check this out.</a></p>

<p> </p>
<p> </p>
<p>Additional:</p>
<p>I recently found out that shell can also open folder locations.</p>
<p>Typing "Shell:Startup" to the windows explorer address bar opens up the start up folder. You can paste a link or any executables here and it will run on windows startup.</p>]]></content><author><name>royzkie</name></author><category term="Tutorial" /><category term="Reference" /><summary type="html"><![CDATA[List of most commonly used environmental variables for folder navigation in Windows:]]></summary></entry><entry><title type="html">Prevent your PC from going to sleep</title><link href="https://royluardo.github.io/2025/01/23/prevent-your-pc-from-going-to-sleep.html" rel="alternate" type="text/html" title="Prevent your PC from going to sleep" /><published>2025-01-23T16:33:00+00:00</published><updated>2025-01-23T16:33:00+00:00</updated><id>https://royluardo.github.io/2025/01/23/prevent-your-pc-from-going-to-sleep</id><content type="html" xml:base="https://royluardo.github.io/2025/01/23/prevent-your-pc-from-going-to-sleep.html"><![CDATA[<h2>Prevent your PC from going to sleep</h2>

<p>Yes, Windows can be configured to prevent it from going to sleep mode or having the screen turned off. But, if your school or work set up your computer to do just that, there is no way to change it without administrative rights.</p>

<p>however, you can actually prevent your PC from entering sleep mode by constantly jiggling your mouse.</p>

<p>To do that automatically, here is a script (in exe format) that you can run to jiggle your mouse every minute interval.</p>

<p>Download <a href="/download/NoSleep1m.zip?v=0X202603260822" target="_blank">this</a>.

<p>Save this exe file to your startup folder and run it.</p>

</p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Download" /><category term="Tutorial" /><summary type="html"><![CDATA[Prevent your PC from going to sleep]]></summary></entry><entry><title type="html">Create beam and girder sections for AutoCAD - AutoLISP version</title><link href="https://royluardo.github.io/2021/09/20/create-beam-and-girder-sections-for-autocad-autolisp-version.html" rel="alternate" type="text/html" title="Create beam and girder sections for AutoCAD - AutoLISP version" /><published>2021-09-20T00:00:00+00:00</published><updated>2021-09-20T00:00:00+00:00</updated><id>https://royluardo.github.io/2021/09/20/create-beam-and-girder-sections-for-autocad-autolisp-version</id><content type="html" xml:base="https://royluardo.github.io/2021/09/20/create-beam-and-girder-sections-for-autocad-autolisp-version.html"><![CDATA[<p>This is an AutoLISP for AutoCAD to create beam sections effortlessly. I had already created a similar project before but using excel sheets and formulas to automate commands for AutoCAD. This is a continuation or an upgrade to that project. The output is seamless and very easy.</p>

<p>How to load?</p>

<ol>
<li>Download <a href="/download/create_beam_v1.0.1.zip?v=0X202603260822" target="_blank">creatbeam.lsp</a> (in zip archive need to extract).</li>
<li>Go to Tools &gt; Load Application then browse for creatbeam.lsp and click load.</li>
<li>To load the AutoLISP file when AutoCAD startup add it to the StartUp Suite case.</li>
</ol>

<p>How to use?</p>

<ol>
<li>Type "zbeam" on the AutoCAD commandline.</li>
<li>Enter value for "Beam Height".</li>
<li>Enter value for "Flange Width".</li>
<li>Enter value for "Web Thickness".</li>
<li>Enter value for "Flange Thickness".</li>
<li>Enter value for "Root Radius".</li>
<li>Then click for Insertion Point.</li>
</ol>

<p>For beam sizes and dimension reference download <a href="/download/SteelUK001202-.zip?v=0X202603260822" target="_blank">UK Steel Sections</a>.</p>

<p>To draw a PG (Plate Girder) or built up section instead of a standard beams, follow the instructions then input zero on the root radius. The zbeam will draw plate girder section 3 separate rectangles for the top and bottom flanges and web.</p>

<p>The created section is a closed polygon for the beam sections and for the plate girder it's 3 rectangles.</p>

<p>The AutoLISP code has been heavily commented with notes so you can follow or study what or how the program is working or what this particular code does. It only has 2 if commands used and many a few coordinates locating points.</p>

<p>The concept of the code is select an insertion point (IP) then from there trace the beam sections using the values given for its beam height, flange width, thickness, etc and draw a polyline along those points.</p>

<p>Tested and working on AutoCAD 2019. Will work on other versions of AutoCAD but your millage may vary. This program is provided as is. The coding I have done is very simple and is based on available tutorials and references.</p>

<p>TL;DR: You can download all the steel section in AutoCAD <a href="/download/all%20steel%20sections.zip?v=0X202603260822" target="_blank">here</a>.</p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Download" /><category term="Tutorial" /><summary type="html"><![CDATA[This is an AutoLISP for AutoCAD to create beam sections effortlessly. I had already created a similar project before but using excel sheets and formulas to automate commands for AutoCAD. This is a continuation or an upgrade to that project. The output is seamless and very easy. How to load? Download creatbeam.lsp (in zip archive need to extract). Go to Tools &gt; Load Application then browse for creatbeam.lsp and click load. To load the AutoLISP file when AutoCAD startup add it to the StartUp Suite case.]]></summary></entry><entry><title type="html">Reference Links (Updated Regularly)</title><link href="https://royluardo.github.io/2020/09/24/reference-links.html" rel="alternate" type="text/html" title="Reference Links (Updated Regularly)" /><published>2020-09-24T00:00:00+00:00</published><updated>2020-09-24T00:00:00+00:00</updated><id>https://royluardo.github.io/2020/09/24/reference-links</id><content type="html" xml:base="https://royluardo.github.io/2020/09/24/reference-links.html"><![CDATA[<h2>This post contains bookmarked links for some important things:</h2>

<p>WordPress.com</p>

<ul>
<li><a href="https://en.support.wordpress.com/videos/youtube/" target="_blank">Embed YouTube videos in WordPress.com</a></li>
<li><a href="https://en.support.wordpress.com/excel-web-app/" target="_blank">Embedding Excel document in WordPress.com</a></li>
<li><a href="https://en.support.wordpress.com/distraction-free-writing/" target="_blank">Enabling Distraction Free Writing</a></li>
<li><a href="https://en.support.wordpress.com/press-this/" target="_blank">How to use Press This for WordPress.com</a></li>
<li><a href="https://en.support.wordpress.com/images/image-settings/" target="_blank">Modify image placement, size and hyperlink in WordPress.com</a></li>
<li><a href="https://en.support.wordpress.com/avatars/blavatars/" target="_blank">Creating a Favicon/Blavatars in WordPress.com</a></li>
<li><a href="https://en.support.wordpress.com/posts/post-revisions/" target="_blank">See Post Revisions and how to revert to previous post versions</a></li>
<li><a href="https://en.support.wordpress.com/twitter/twitter-embeds/" target="_blank">Embeding twitter post in WordPress.com</a></li>
</ul>

<p>WordPress.org</p>

<ul>
<li><a href="https://codex.wordpress.org/Creating_a_Favicon" target="_blank">Creating a Favicon in WordPress.org</a></li>
<li><a href="https://codex.wordpress.org/Press_This" target="_blank">How to use Press This for WordPress.org</a></li>
</ul>

<p>Blogger.com</p>

<ul>
<li><a href="https://simple-blogger-tips.blogspot.sg/2011/01/how-to-remove-attribution-widget-on.html" target="_blank">How to Remove Attribution Widget on Blogger.com</a></li>
</ul>]]></content><author><name>royzkie</name></author><category term="Internet" /><category term="Links" /><category term="Reference" /><summary type="html"><![CDATA[This post contains bookmarked links for some important things:]]></summary></entry><entry><title type="html">How to install Express Tools without admin rights</title><link href="https://royluardo.github.io/2014/09/17/install-express-tools-without-admin-rights.html" rel="alternate" type="text/html" title="How to install Express Tools without admin rights" /><published>2014-09-17T10:30:10+00:00</published><updated>2014-09-17T10:30:10+00:00</updated><id>https://royluardo.github.io/2014/09/17/install-express-tools-without-admin-rights</id><content type="html" xml:base="https://royluardo.github.io/2014/09/17/install-express-tools-without-admin-rights.html"><![CDATA[<h2>Guide on how to install Express Tools in AutoCAD without administration rights.</h2>

<p>There are other very useful tools in AutoCAD that are not installed by default. Working in a company with company owned computers gives you limited rights to install softwares or programs without administration rights. **"Express Tools"** is a built in feature in all AutoCAD releases but are not installed by default. Most of the times, your IT personnel are too busy or they don't have any idea when you come up to them and ask them to install the "Express Tools" for you and will lead to much confusion and sometimes debates.</p>

<p>To avoid those long talks and explanations, here is a guide on How to install the "Express Tools" on your AutoCAD without administration rights.This is a do it your self installation which involves downloading of files from the internet, extracting archives and a little bit of browsing your computer. I tested  this on a AutoCAD Mechanical 2014 (full version, not LT) run on Windows 7 PC. I have not tried this on other versions, but it might just work. (You can try it at your own risk, well it's not even risky at all.)</p>

<p>Here goes:</p>

<ul>
<li>1. Download <a href="https://goo.gl/gKEPIv" target="_blank">Express.zip</a>.</li>
<li>2. Extract contents to C:\Users\username\appdata\roaming\autodesk\autocad mechanical 2014\r19.1\enu\support\express (Make sure hidden files are shown in Folder Options to access "AppData" folder).</li>
<li>3. Right Click "express" folder then click "Properties" &gt; "General" tab &gt; "Attributes" then uncheck "Read-only" then "Apply" (Apply to subfolders as well).</li>
<li>4. Run AutoCAD Mechanical 2014.</li>
<li>5. Type in "CUI" command to open "Customize User Interface".</li>
<li>6. Go to "Customize" tab &gt; "Customization in All Files" under "AMPP" look for "Partial Customation Files".</li>
<li>7. Right Click "Partial Customation Files" select "load partial customation files'.</li>
<li>8. Browse to your support folder C:\Users\username\appdata\roaming\autodesk\autocad mechanical 2014\r19.1\enu\support and open "acetmain.cuix", apply then close "Customize User Interface".</li>
<li>9. Go to "Tools" &gt; "Options", under "Files" tab, expand "Support File Search Path" then add express folder path C:\Users\username\appdata\roaming\autodesk\autocad mechanical 2014\r19.1\enu\support\express.</li>
<li>10. Under "Files" tab, expand "Trusted Locations" then add express folder path C:\Users\username\appdata\roaming\autodesk\autocad mechanical 2014\r19.1\enu\support\express (If a warning says about express folder being read-only just agree and continue).</li>
<li>11. Hit "Apply" and close "Options" menu.</li>
<li>12. Go to "Tools" &gt; "Load Applications" locate "Startup Suite", click "Contents".</li>
<li>13. Add 2 files "acettest.fas" and "acetultil.fas" which can be found inside the express folder.</li>
<li>14. Close "Load/Unload Applications" menu then restart AutoCAD.</li>
<li>15. Check "Express" menu if its loaded and try the command if they are working.</li>
</ul>

<p>And just in case you have admin rights to your computer, here's how to install AutoCAD's "Express Tools" the normal way:</p>

<ul>
<li>1. Verify that AutoCAD is already installed in your computer, go to "Control Panel".</li>
<li>2. Find AutoCAD, right click and select "Uninstall/Change".</li>
<li>3. AutoCAD install will start up, select "Add or Remove Features" from the pop-upped menu.</li>
<li>4. Click through the screen then scroll to a list of features and you would find that "Express Tools" is crossed out (Red).</li>
<li>5. Click on the cross to check it (Green) then click "Update".</li>
<li>6. Let AutoCAD finish updating the changes that you've made.</li>
<li>7. Verify that "Express Tools" is loaded ones you run AutoCAD.</li>
</ul>

<p>Why the need to install "Express Tools"? Here is a <a href="https://goo.gl/s4ckKh" target="_blank">list</a> of all the commands that can be found under "Express Tools" and how to use them.</p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Tutorial" /><category term="Download" /><summary type="html"><![CDATA[Guide on how to install Express Tools in AutoCAD without administration rights.]]></summary></entry><entry><title type="html">GStar ICAD - A Low cost alternative to AutoCAD</title><link href="https://royluardo.github.io/2014/04/23/gstar-icad-a-low-cost-alternative-to-autocad.html" rel="alternate" type="text/html" title="GStar ICAD - A Low cost alternative to AutoCAD" /><published>2014-04-23T10:32:18+00:00</published><updated>2014-04-23T10:32:18+00:00</updated><id>https://royluardo.github.io/2014/04/23/gstar-icad--a-low-cost-alternative-to-autocad</id><content type="html" xml:base="https://royluardo.github.io/2014/04/23/gstar-icad-a-low-cost-alternative-to-autocad.html"><![CDATA[<h2>GStarICAD is the innovative alternative to AutoCAD</h2>

<p><strong>GStarICAD</strong> is based on the well-known IntelliCAD software which is the industry standard for low-cost CAD software. GStarICAD is the innovative alternative to AutoCAD that provides OpenDWG file compatibility, similar environment, as well as full support for AutoCAD commands, menus, scripts, styles, patterns etc. GStarICAD is the top quality version of IntelliCAD worldwide, 99% identical to AutoCAD and its speeds and performances with an attractive and competitive price are totally unbeatable.</p>

<p>Unrivaled AutoCAD compatibility</p>

<p>GStarICAD's native file format is .DWG, so when you open an existing Autodesk AutoCAD file (2.5 to 2007), there's no file conversion and no data loss. GStarICAD also provides a full compatibility with AutoCAD Command Line, menu (.MNU) and script (.SCR) files, hathes, fonts and true type fonts-Complex linetypes, Multiline Text, Lightweight polyline, Draw commands, Audit &amp; Recover as well as AutoLISP and ADS. That means you can get to work immediately using the AutoCAD files, commands and applications you rely on.</p>

<p>Exceptional productivity</p>

<p>GStarICAD offers smooth Microsoft Windows integration plus many unique productivity features, including the ability to Multiple open drawings (MDI) at once; a Drawing Explorer that lets you review and exchange drawing content with drag-and-drop ease; and visual customization of menus and toolbars -- no programming required! And thanks to its ActiveX integration, you can insert GStarICAD drawings (or just parts of them) into a Microsoft Office application file or a Visio 2000 Technical Edition schematic.</p>

<p>Open Communication<br />
Import-Export of DWG files (opendwg), DXF and SCR (script) files;<br />
Import of mnu (menu) and dcl (dialog box) files;<br />
Export of WMF, EMF (Enhanced Metafile) files and SLD (slides);<br />
Reading of BMP, GIF, JPG, TIF, PCX images within DWG files;<br /></p>

<p>Third Party Applications</p>

<p>GreatStar is a world-leading CAD full sets solutions service provider. We provide Building Solutions, Manufacturing Solutions, Building Industry Solutions to our users. Our Industry Software includes Architectural, Structural, Electrical, HVAC, Water Supply and Drainage, Mechanical Software.</p>

<p>Unbelievable Affordability</p>

<p>It's purchase cost is only 1/10 of the competitor's. In addition, considering an easy-understanding training plus the 30 days free support, our solutions manage to bring a surprising return for your investment.</p>

<p>Working with GStarICAD you are able to:</p>

<ul>
<li>Start immediately working on your existing work: If you have used AutoCAD, you will find GStarICAD so easy to use because of the same interface and operating style as AutoCAD. No learning time and learning cost are required, just install and begin to draw!</li>
<li>Communicate with anyone else: When you open an existing Autodesk AutoCAD file (AutoCAD2.5 to R2007) there's no file conversion and no data loss.</li>
<li>Feel Safe and absolutely Legal (owns Independent intellectual property rights)</li>
<li>Save a lot of money, increase profits, reduce risk, and minimize inefficiency.</li>
</ul>

<p><a href="http://www.gstarcad-me.com/product.html" target="_blank">Learn more...</a></p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Download" /><summary type="html"><![CDATA[GStarICAD is the innovative alternative to AutoCAD]]></summary></entry><entry><title type="html">Tekla Structures (Xsteel) Tutorials</title><link href="https://royluardo.github.io/2014/03/04/tekla-structures-xsteel-tutorials.html" rel="alternate" type="text/html" title="Tekla Structures (Xsteel) Tutorials" /><published>2014-03-04T04:30:12+00:00</published><updated>2014-03-04T04:30:12+00:00</updated><id>https://royluardo.github.io/2014/03/04/tekla-structures-xsteel-tutorials</id><content type="html" xml:base="https://royluardo.github.io/2014/03/04/tekla-structures-xsteel-tutorials.html"><![CDATA[<h2>Formerly known as Xsteel, Tekla Structures is 3D building information modeling.</h2>

<p>Tekla Structures is 3D building information modeling (BIM) software used in the building and construction industries for steel and concrete detailing. The software enables users to create and manage 3D structural models in concrete or steel, and guides them through the process from concept to fabrication.</p>

<p>With Tekla Structures, you can transform design into reality. It turns great ideas into complete construction projects and covers the entire building process, from conceptual design to fabrication and construction management.</p>

<p>Now this award-winning software for building information modelling (BIM) is even more user friendly. Expect faster and more reliable production of consistent high quality information for structural engineering design and construction projects.</p>

<p>New features:</p>

<ul>
    <li>See what you get while modifying shapes with direct manipulation</li>
    <li>Drawing improvements for better documentation quality</li>
    <li>Interoperability improved for construction project collaboration</li>
    <li>Higher levels of automatic production with fewer human errors</li>
    <li>Increased creativity and productivity in 3D modeling</li>
</ul>

<p>Retool yourself for reliable modeling, efficient BIM workflow and openly transparent project communication. Realize your world-class ideas and learn Tekla Structures today!</p>

<p>Tutorials: Tekla Structures v.10.0</p>
<ul>
  <li><a href="/download/tekla-structures-basic-training-lesson-01-basic-modeling.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 1 Basic Modeling</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-02-creating-system-connections.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 2 Creating System Connections</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-03-creating-interactive-connections.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 3 Creating Interactive Connections</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-04-custom-components.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 4 Custom Components</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-05-basic-modeling-2.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 5 Basic Modeling 2</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-06-catalog.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 6 Catalog</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-07-steel-detailing.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 7 Steel Detailing</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-08-concrete-detailing.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 8 Concrete Detailing</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-09-numbering-and-reports.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 9 Numbering and Reports</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-10-principles-of-working-with-drawings.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 10 Principles of Working with Drawings</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-11-assembly-and-single-part-drawings.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 11 Assembly and Single Part Drawings</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-12-cast-unit-drawings.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 12 Cast Unit Drawings</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-13-ga-drawing.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 13 GA Drawing</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-14-multi-drawing-and-multinumbering.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 14 Multi-drawing and Multinumbering</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-15-collaboration.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 15 Collaboration</a></li>
  <li><a href="/download/tekla-structures-basic-training-lesson-17-analysis-and-design.pdf?v=0X202603260822" target="_blank">Tekla Structures Basic Training - Lesson 17 Analysis and Design</a></li>
  </ul>

<p>Tutorials: Tekla Structures v.11.0</p>
<ul>
<li><a href="https://tinyurl.com/93z9e6ua" target="_blank">Tekla Structures 11.0 Basic Training - Profiles and Materials</a></li>
<li><a href="https://tinyurl.com/yptdmzrx" target="_blank">Tekla Structures 11.0 Basic Training - Applied Precast Concrete  Detailing</a></li>
<li><a href="https://tinyurl.com/2cjazvyb" target="_blank">Tekla Structures 11.0 Basic Training - Applied Steel Detailing</a></li>
<li><a href="https://tinyurl.com/4prumt7k" target="_blank">Tekla Structures 11.0 Basic Training - Numbering and Reports</a></li>
<li><a href="https://tinyurl.com/ybbe8uwf" target="_blank">Tekla Structures 11.0 Basic Training - Template Editor</a></li>
<li><a href="https://tinyurl.com/bp6cbj32" target="_blank">Tekla Structures 11.0 Basic Training - Principles of Drawings</a></li>
<li><a href="https://tinyurl.com/bdstcsva" target="_blank">Tekla Structures 11.0 Basic Training - Assembly and Single Part Drawings</a></li>
<li><a href="https://tinyurl.com/tc9brs58" target="_blank">Tekla Structures 11.0 Basic Training - Cast Unit Drawings</a></li>
<li><a href="https://tinyurl.com/mtav8xku" target="_blank">Tekla Structures 11.0 Basic Training - General Arrangement Drawings</a></li>
<li><a href="https://tinyurl.com/54wby9cn" target="_blank">Tekla Structures 11.0 Basic Training - Project Manager</a></li>
</ul>

<p>Tutorials: Tekla Structures v.12.0</p>
<ul>
<li><a href="https://tinyurl.com/38cpttra" target="_blank">Tekla Structures 12.0 Basic Training - Basic Modeling 1</a></li>
<li><a href="https://tinyurl.com/ycy3ybvz" target="_blank">Tekla Structures 12.0 Basic Training - System Components for Precast Concrete</a></li>
<li><a href="https://tinyurl.com/4ks9k4w6" target="_blank">Tekla Structures 12.0 Basic Training - Creating System Components for Steel</a></li>
<li><a href="https://tinyurl.com/yc6ddd74" target="_blank">Tekla Structures 12.0 Basic Training - Interactive Precast Concrete Detailing</a></li>
<li><a href="https://tinyurl.com/2tcb5dz6" target="_blank">Tekla Structures 12.0 Basic Training - Interactive Steel Detailing</a></li>
<li><a href="https://tinyurl.com/mr2j8v63" target="_blank">Tekla Structures 12.0 Basic Training - Custom Components for Precast Concrete</a></li>
<li><a href="https://tinyurl.com/yv75z4jr" target="_blank">Tekla Structures 12.0 Basic Training - Custom Components for Steel</a></li>
<li><a href="https://tinyurl.com/4kkfc44y" target="_blank">Tekla Structures 12.0 Basic Training - Basic Modeling 2</a></li>
</ul>

<p>Tutorials: Tekla Structures v.13.1</p>
<ul>
<li><a href="/download/tekla-full-detailing-basic-training-modeling.pdf?v=0X202603260822" target="_blank">Tekla Full Detailing Basic Training Modeling</a></li>
<li><a href="https://tinyurl.com/5n6rdnyh" target="_blank">Tekla Structures 13 - Keyboard Shortcuts</a></li>
</ul>

<p>Updated: 2025-02-13</p>

<p><i>Note: PDF files are sourced through google search. Sharing for educational purposes only. No Copyright infringement intended.</i></p>]]></content><author><name>royzkie</name></author><category term="Tutorial" /><category term="Reference" /><category term="App" /><summary type="html"><![CDATA[Formerly known as Xsteel, Tekla Structures is 3D building information modeling.]]></summary></entry><entry><title type="html">Create New Command in AutoCAD</title><link href="https://royluardo.github.io/2012/10/15/command-in-autocad.html" rel="alternate" type="text/html" title="Create New Command in AutoCAD" /><published>2012-10-15T00:00:00+00:00</published><updated>2012-10-15T00:00:00+00:00</updated><id>https://royluardo.github.io/2012/10/15/command-in-autocad</id><content type="html" xml:base="https://royluardo.github.io/2012/10/15/command-in-autocad.html"><![CDATA[<h2>Steps on how to create new command in AutoCAD</h2>

<p>Objective</p>

<p>As a sample (let’s make it as simple as possible), say you want to create a new command that “Create 2 Vertical viewports” (See my other post “AutoCAD Macros” for other sample command macro).</p>

<p>Steps</p>

<ul>
<li>1. Open CUI by accessing menu tools &gt; customize &gt; interface (or by typing “CUI” on commandline). You will find a menu with 3 areas (see fugure below).</li>
<li>2. Click on “Create a new command” button.</li>
<li>3. Provide the name of command and the macro.</li>
<li>4. Above the properties, select/create/edit a command icon of your choice.</li>
<li>5. Drag the newly created command to any tootlbar of your choice. You can also drag it outside the CUI menu to any existing tool bar on your workspace.</li>
<li>6. Click “Apply” and “OK” to close CUI menu.</li>
</ul>

<p>You’re done here. Try the new command by clicking the icon you created.</p>

<p>Tested on AutoCAD 2011 classic workspace enabled, it should work on all other version of AutoCAD specially on newer versions.</p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Programming" /><category term="Engineering" /><summary type="html"><![CDATA[Steps on how to create new command in AutoCAD]]></summary></entry><entry><title type="html">Create beam and girder sections for AutoCAD</title><link href="https://royluardo.github.io/2012/02/20/create-beam-and-girder-sections-for-autocad.html" rel="alternate" type="text/html" title="Create beam and girder sections for AutoCAD" /><published>2012-02-20T12:32:18+00:00</published><updated>2012-02-20T12:32:18+00:00</updated><id>https://royluardo.github.io/2012/02/20/create-beam-and-girder-sections-for-autocad</id><content type="html" xml:base="https://royluardo.github.io/2012/02/20/create-beam-and-girder-sections-for-autocad.html"><![CDATA[<h2>Use MS Excel to create beam and girder sections for AutoCAD</h2>

<p>Update [March 2014]</p>

<p>I made some changes. You can't see the formula now, just click on the cell, right click select "Copy" then paste to command line in AutoCAD. I also included some common beam sizes and sections for easy reference. You can copy the dimensions of the beam you want to make, paste it in the section maker then copy the cell. Easy does it.</p>

<p>Draw beam sections easily in AutoCAD (at least version 2000 up) by simply inputting beam dimensions (in MS Excel). Then copy formula and paste to AutoCAD command line. Easy does it.</p>

<p>Download Beam Section Maker for AutoCAD <a href="http://sh.st/qk5BP" target="_blank">“HERE”</a>: [New Version]</p>

<p>For beam size download this <a href="/download/SteelUK001202-.zip" target="_blank">UK Steel Section Properties</a>.</p>]]></content><author><name>royzkie</name></author><category term="App" /><category term="Download" /><category term="Tutorial" /><summary type="html"><![CDATA[Use MS Excel to create beam and girder sections for AutoCAD]]></summary></entry></feed>