Posts

Showing posts with the label beginners

Some lisp routines for autocad beginners

Some lisp routines for autocad beginners Some  lisp routines for autocad or zwcad  beginners .  ;;VIEW COMMANDS (vs, vr, vst, vrt)  (defun c:vs() ;;Saves view (of name to be supplied by user).  (command "-v" "s"))  (defun c:vr() ;;Use this to restore Named View created by vs (Type in the name supplied earlier)  (command "-v" "r"))  (defun c:vst() ;;Creates view called temp.  (command "-v" "s" "temp"))  (defun c:vrt() ;;Restores view "temp"  (command "-v" "r" "temp"))  ;;ZOOM COMMANDS (z7, z12, ze, za, zp)  (defun c:z7() ;;Zooms (out) 0.7x  (command "zoom" ".7x"))  (defun c:z12() ;;zooms (in) 1.2x  (command "zoom" "1.2x"))  (defun c:ze() ;;Zooms extents, then zooms out 0.9x  (command "zoom" "e" "zoom" ".9x"))  (defun c:za() ;;Zoom all  (command "zoom" "all" "zoom" "...

Silverlight WindowsPhone How to communicate with C code from WebBrowser javascript and vice versa beginners tutorials C XAML

Image
Silverlight WindowsPhone How to communicate with C code from WebBrowser javascript and vice versa beginners tutorials C XAML Introduction: We can use WebBrowser control in silverlight windows phone(8.0 &8.1) for displaying html content, and so some times we may need to communicate windows phone native code (C#) from webbrowser html content. For example, lets assume there is one html button in webbrowser content, and when clicking on html button we need to navigate to another windows phone native page. Which means we need to trigger windowsphone native program(i.e, C# code) from javascript function and then navigate to another page. Also from this article we can learn how to call javascript function from windows phone C# code. Requirements: This sample is targeted for windows phone silverlight 8.0 OS,So make sure you�ve downloaded and installed the Windows Phone 8.0 SDK or later. For more information, see Get the SDK. I assumes that you�re going to test your app on the Windows P...

Website Creation Tutorial for Beginners

Image
Website Creation Tutorial for Beginners Website Creation Tutorial for Beginners So you want to create a website, but maybe youre not clear on the best way to start? With all the web hosting options available today, how do you know the best approach for your website needs? Relax, youve found a resource that will guide you step by step through the website creation process. Start here and discover what you need to know so you dont make the mistakes many newbies make. The Perfect Site Guide is Free! No need to pay for books to learn how to build a website and make money online. The only site guide you will ever need is right here and its free! Download The Perfect Guide here.  (Right-click your mouse and  Save As ) What You Need to Build Your Website There are two things you absolutely must have to build a static website or a blog: 1) A domain name (yoursite.com or yoursite.net, etc.) 2) A web host Watch this quick, 2-minute overview video that shows yo...