Posts

Showing posts with the label text

Blog Button Text Box Tutorial

Image
Blog Button Text Box Tutorial I have gotten a request for a tutorial on how to do the text box with the code for your button underneath the blog button (do you understand me? Hopefully you understand me). So without further ado, here it is!   **I am still using Windows, Google Chrome, and Blogger as a platform. Again, you may not be able to follow this easily if youre using something different.   **I am basing this on my tutorial on how to make a blog button, which can be found here.   **I will do a tutorial on another platform if requested. Once you have your button, youre going to want to share it, right? First off, you can put it in the sidebar. Go into your dashboard, and click the "Layout" tab. Click "Add a Gadget" where you want it to be, then scroll down till you see this nifty little thing. It should open up a box like this. This is the coding you shall need to put into the content box. <img src= "YourButtonImageURL" alt= "YourSiteTitle...

Blinking Text

Blinking Text Pertama Buatlah  Command Button Label Timer Copy Source code di "Form Code" Private Sub Command1_Click() If Command1.Caption = "Blinking" Then Cek apakah caption command adalah "blinking"     Timer1.Enabled = True mengaktifkan blinking     Command1.Caption = "Stop" Mengubah Label Command1 menjadi "Stop" ElseIf Command1.Caption = "Stop" Then Cek apakah caption command adalah "stop"     Timer1.Enabled = False Menonaktifkan Blinking     Command1.Caption = "Blinking" Mengubah Label Command1 menjadi "Blinking" End If End Sub Private Sub Form_Load() Timer1.Enabled = False Menonaktifkan Blinking Label1.Caption = "Welcome" Mengubah Caption Label1 menjadi "Welcome" Command1.Caption = "Blinking" Mengubah Caption Command1 menjadi "Blinking" Timer1.Interval = 100 Memberi interval waktu pada timer 1000 = 1 detik End Sub Private Sub Timer1_Timer() If Label1....

Book review Python 2 6 Text Processing Beginner’s Guide by Jeff McNeil

Book review Python 2 6 Text Processing Beginner’s Guide by Jeff McNeil Jeff McNeil�s �Python 2.6 Text Processing: Beginner�s Guide� is a practical introduction to a wide range of methods for reading, processing and writing textual data from a variety of structured and unstructured data formats. Aimed primarily at novice Python programmers who have some elementary knowledge of the language basics but without prior experience in text processing, the book offers hands-on examples for each of the techniques it discusses � ranging from Python�s built-in libraries for handling strings, regular expressions, and formats such as JSON, XML and HTML, through to more advanced topics such as parsing custom grammars, and efficiently searching large text archives. In addition it contains a great deal of general supporting material on working with Python, including installing packages and third-party libraries, and working with Python 3. The first three chapters lay the foundations, covering a number ...