Another example of simple text search which implements a Search Next button, which continuously searches for the given text. Its very easy. Heres how…
Simple text search
Searching is one of the tasks of programing that reduces so much of our work and hardship. Today we see a very simple string search sample code…
"Shuvo Noboborsho" and here is a new mascot
Today is 14 April 2013, the first day of Bangla calendar. And in this auspicious day, an idea for a cartoon figure, as a mascot for LazPlanet has come to my mind. Here is the first image of him…
How to Capitalize Text
We write the words in the middle of the sentence in lowercase letters. Capitalizing is sometimes necessary to emphasize things. Any text (or string) can be converted to uppercase (capitalize). Here’s how…
Make your forms transparent!
Forms are boring solid objects. But you can make it fun in many ways. One of them is transparency. Here’s how…
Get all running windows' titles
With this simple little code you can list the windows/software that are running. You can identify if some specific software is running or do some magic tricks with Windows API. It is up to you…
How to get your mouse cursor position (+Bonus: set position also!!)
Find out if your user is pointing to left or right, top or down of the screen. If you are keen for a shock, then yes! You can also position the cursor wherever you want! Without having the user moving their mouse! Here’s how
Convert a number to Roman
Roman characters look very formal. I, II, III, IV … BBC uses Roman for their copyright statement (e.g. BBC (c) MMVI). And it looks exceptional. What is your birth year in Roman? Let your program find that for you! Here’s how:
Count how many words are in a string
Suppose you have found a huge paragraph. How many words are in that paragraph? Do you want to count yourself? No. We can let our program count the words! Here’s how…
Clone your form into many !!!
This is a fun code example to try. When you open up a new Application project, you get a form. To have fun, we can create hundreds of “copies” of this form! On runtime. Here’s how…