Menu
textbox
Last update: Saturday 11th of February 2012
1
This example shows you how to send a file to the recycle bin, instead of permanently deleting it.First, add a command button called cmdDelete, and a textbox called txtFileName. Add the code below, run your project, enter a file to delete, and click the button!
Dave's Quick Search Deskbar is a tiny textbox designed for search hounds with weary mouse-fingers. This little deskbar lets you launch searches without starting a web browser first, directly from your Windows Explorer Taskbar.
Why use the same styles for your textbox like everybody else? You can customize yourself very easily with a few cascading style sheets.There are a few examples but you can create your own and of course with other colors.
Option Explicit Here's some simply code showing you how to load the file test.txt into a text box.Code:Option Explicit ' Get a free file numberFileNum = FreeFile' Open Test.txt for inputOpen App.Path & "Test.txt" For Input As FileNum' Read the contents of the file into TextBox1TextBox1.Text = Input(Lof(Filenum), FileN
I needed to validate 3 textboxes for making a date input on a web page., but I needed to verify the content that the user was entering in the webpages. So I came up with the following Javascript Function.....