11/12/08

मलमली तारुण्य माझे,

मलमली तारुण्य माझे, तू पहाटे पांघरावे
मोकळ्या केसात माझ्या, तू जीवाला गुंतवावे
लागुनि थंडी गुलाबी, शिरशिरी यावी अशी ही
राजसा माझ्यात तू अन् मी तुझ्यामाजी भिनावे
कापर्‍या माझ्या तनूची तार झंकारुन जावी
रेशमी संगीत स्पर्शाचे, पुन्हा तू पेटवावे
रे तुला बाहुत माझ्या, रुपगंधा जाग यावी
मी तुला जागे करावे, तू मला बिलगून जावे

मन

मन

8/6/08

Figure 3 Toolbox window with its controls available commonly.

Control Description
  1. Pointer : used to interact with the controls on the form
  2. PictureBox : used to display images
  3. TextBox : used to accept user input which can display only editable text
  4. Frame : used to group other controls
  5. CommandButton : used to initiate an action by pressing on the button
  6. CheckBox : used to do a choice for user (checked or unchecked)
  7. OptionButton : used in groups where one at a time can be true
  8. ListBox : used to provide a list of items
  9. ComboBox : used to provide a short list of items
  10. HScrollBar : a horizontal scrollbar
  11. VScrollBar : a vertical scrollbar
  12. Timer : used to perform tasks in specified intervals.
  13. DriveListBox : used to access to the system drives
  14. DirListBox : used to access to the directories on the system
  15. FileListBox : used to access to the files in the directory
  16. Shape : used to draw circles, rectangles, squares, ellipses
  17. Line : used to draw lines
  18. Image : used to display images. But less capability than the PictureBox
  19. Data : used to connect a database
  20. OLE : used to interact with other windows applications
  21. Label : used to display texts which cannot be edited

Project -Project 1

The window titled Project -Project 1 is called the project explorer which contains the project files Property window displays the properties of a form or a control. Properties are attributes such as size, name etc. as well as the form all the controls have its own set of properties Toolbox window contains a set of controls which are used to customize forms. Using this controls user can create an interface between user and the application

Figure 2 Standard Exe project

Getting started

To open the Visual Basic environment and to work with it select and click on Microsoft Visual Basic 6.0 in the start menu. When Visual Basic is loaded the New Project dialog shown in figure 1.1 will be displayed with the types available in Visual Basic. You can notice that Standard Exe is highlighted by default. Standard Exe allows the user to create standard executable. Standard executable is a type which has most of the common features of Visual basic.

Visual basic 6. 0

Visual basic is a high level programming language developed from the earlier DOS version called BASIC. Although Visual Basic .NET is the dominator in the current IT trend, Visual basic 6. 0 hasn't lost it's powerful status among the programmers. Visual Basic was developed from the BASIC programming language. In the 1970s, Microsoft started developing ROM-based interpreted BASIC for the early microprocessor-based computers. In 1982, Microsoft QuickBasic revolutionized Basic and was legitimized as a serious development language for MS-DOS environment. Later on, Microsoft Corporation created the enhanced version of BASIC called Visual Basic for Windows. Visual Basic is an event-driven programming language. This is called because programming is done in a graphical environment unlike the previous version BASIC where programming is done in a text only environment and executed sequentially in order to control the user interface. Visual Basic enables the user to design the user interface quickly by drawing and arranging the user elements. Due to this spent time is saved for the repetitive task.

8/1/08

Are Java and JavaScript the Same? NO! Java and JavaScript are two completely different languages in both concept and design! Java (developed by Sun Microsystems) is a powerful and much more complex programming language - in the same category as C and C++.

What can a JavaScript Do?

  1. JavaScript gives HTML designers a programming tool - HTML authors are normally not programmers, but JavaScript is a scripting language with a very simple syntax! Almost anyone can put small "snippets" of code into their HTML pages
  2. JavaScript can put dynamic text into an HTML page - A JavaScript statement like this: document.write("

    " + name + "

    ") can write a variable text into an HTML page
  3. JavaScript can react to events - A JavaScript can be set to execute when something happens, like when a page has finished loading or when a user clicks on an HTML element
  4. JavaScript can read and write HTML elements - A JavaScript can read and change the content of an HTML element
  5. JavaScript can be used to validate data - A JavaScript can be used to validate form data before it is submitted to a server. This saves the server from extra processing
  6. JavaScript can be used to detect the visitor's browser - A JavaScript can be used to detect the visitor's browser, and - depending on the browser - load another page specifically designed for that browser
  7. JavaScript can be used to create cookies - A JavaScript can be used to store and retrieve information on the visitor's computer

Basic

JavaScript is THE scripting language of the Web. JavaScript is used in millions of Web pages to add functionality, validate forms, detect browsers, and much more. JavaScript is the most popular scripting language on the internet, and works in all major browsers, such as Internet Explorer, Mozilla, Firefox, Netscape, and Opera. What is JavaScript?

  • JavaScript was designed to add interactivity to HTML pages
  • JavaScript is a scripting language
  • A scripting language is a lightweight programming language
  • A JavaScript consists of lines of executable computer code
  • A JavaScript is usually embedded directly into HTML pages
  • JavaScript is an interpreted language (means that scripts execute without preliminary

compilation)

  • Everyone can use JavaScript without purchasing a license

7/31/08

JScript

Alert Message Box The alert method has one argument, the string of text you want to display to the user. The string is not HTML. The message box provides an OK button so the user can close it and is modal, that is, the user must close the message box before continuing. window.alert("Welcome! Press OK to continue."); Confirm Message Box The confirm message box lets you ask the user a "yes-or-no" question, and gives the user the option of clicking either an OK button or a Cancel button. The confirm method returns either true or false. This message box is also modal: the user must respond to it (click a button), and thereby close it, before proceeding. var truthBeTold = window.confirm("Click OK to continue. Click Cancel to stop."); if (truthBeTold) { window.alert("Welcome to our Web page!"); } else window.alert("Bye for now!"); Prompt Message Box The prompt message box provides a text field in which the user can type an answer in response to your prompt. This box has an OK button and a Cancel button. If you provide a second string argument, the prompt message box displays that second string in the text field, as the default response. Otherwise, the default text is "". Like the alert( ) and confirm( ) methods, prompt displays a modal message box. The user must close it before continuing. var theResponse = window.prompt("Welcome?","Enter your name here.");

JScript

Using alert, prompt, and confirm Use alert, confirm, and prompt message boxes to obtain input from your user. The boxes are methods of the interface window object. Because the window object is at the top of the object hierarchy, you do not actually have to use the full name (for example, "window.alert()") of any of these message boxes, but it is a good idea to do so, because it helps you remember to which object they belong.

7/29/08

Colorful & Beautiful Peacock

7/28/08

JavaScript and Object Oriented Programming

JavaScript and Object Oriented Programming (OOP) Credits: This tutorial is written and contributed by Tim Scarfe. Edited by JavaScriptKit.com for content/ structure. Please see footnote for more information on author. JavaScript is an excellent language to write object oriented web applications. It can support OOP because it supports inheritance through prototyping as well as properties and methods. Many developers cast off JS as a suitable OOP language because they are so used to the class style of C# and Java. Many people don't realize that JavaScript supports inheritance. When you write object-oriented code it instantly gives you power; you can write code that can be re-used and that is encapsulated. What's so great about objects? Objects work so well because they act just like real life objects- objects have properties and methods. So if we were talking about a lamp, a property of it may be its height or width, say 12cm. A method of it may be to shine (an action). And when it's shining, its brightness property would be of a greater value than when it wasn't. JavaScript gives you the ability to make your own objects for your own applications. With your objects you can code in events that fire when you want them to, and the code is encapsulated. It can be initialized any amount of times. Creating objects using new Object() There are several ways to create objects in JavaScript, and all of them have their place. The simplest way is to use the new operator, specifically, new Object(): We define a custom object "person," then add to it its own properties and method afterwards. In this case, the custom method merely initializes two more properties. Creating objects using Literal Notation Another inline way of defining an object is via literal notation. Supported in JavaScript1.2 and above, it's a more robust form of creating an object on the fly: Literal notion can contain arrays or arbitrary JavaScript expressions or values. While using the new operator or literal notion to create a custom object is both simple and logical, the biggest shortcoming is that the result is NOT reusable- we cannot easily initialize different versions of the created object. For example with the first demonstration above, if the person's name is not "Tim Scarfe", we would need to redefine our entire object just to accommodate this change.

Sending e-mail with attachments from an ASP.NET page

The task of sending e-mails has become much easier in ASP.NET. In previous versions of ASP we either used a third party component or the limited functionality of CDONTS component for sending emails. The .NET framework provides simpler but powerful class libraries for sending emails. These classes are in the System.Web.Mail Namespace. Following table lists the classes and their use : Class Purpose MailAttachment To construct an email attachment. MailMessage To construct an email message. SmtpMail To send an email attachment using the SMTP mail service. High-end commercial email component : i. AspEmail : Most feature-rich mailing component. Supports message queueing, embedded images, secure mail, authentication. Read more. In order to access these classes we have to import the System.Web.Mail namespace within our ASP.NET page using the import directive as shown below : <% @ Import NameSpace = "System.Web.Mail" %> Then we construct an email message by creating an Instance of the MailMessage class as shown below : MailMessage MyMail = new MailMessage(); The MailMessage class has various properties which need to be set before sending emails. Following table shows some of the important properties of the MailMessage class : Property Description Attachments List of attachments that is sent with the email. Body Body of the email message. From Email address of the sender. Subject Subject line of the email message. To Email address of the recipient. To send an attachment with email we need to create an instance of the MailAttachment class. We pass the full path of the file to be attached as an argument to the constructor of MailAttachment class as shown below : MailAttachment MyAttachment = new MailAttachment("C:\\My Folder\\MyFile.txt"); Note : The file name passed should be valid file which exists on the server. This MailAttachment instance is then attached to the mail by using the Attachment property of the Mail class as shown below : MyMail.Attachments.Add(MyAttachment); Finally we send the email using the Send() method of the SmtpMail Class as shown below : SmtpMail.Send(MyMail);

Bride Mehndi Design

Bride Mehndi Design

Bride Mehndi Design

funny

rose

Importance of friendship

BramhaKAMAL

Flower

BramhaKAMAL

BramhaKAMAL

Bride Mehndi Design

Bride Mehndi Design