Tech-Funda

…in touch with tomorrow









Directory Listings, list files and subfolder using php

This is the simple example to list contents of any Directory. To do this we are going to define function DirDisply( ) which will read the current directory contents and display it as a list.

We first open current directory by $TrackDir=opendir(”.”);

The opendir function returns a directory handle resource on success, or FALSE on failure.

Read the rest of this entry »


Applying CSS style to buttons and HTML links

In this article we are going to decorate buttons by using a small piece of CSS
on it.

while design CSS enable forms Applying CSS style to buttons is play a vital
role. its improve your sites beauty that give pleasure to the senses.

This article gives more idea to biginner to change/modify normal look of button
by Using Cascaded style sheets.

Click here to see Live example:

CSS Buttons

Read the rest of this entry »



Add a blinking flash message at the status bar of Web browser(IE)

The following sample of code gives an idea of how to add a blinking flash message at the status bar. Adding flash text at the status is very simple for that we use a single if-else loop in function blinkflash(). This script is compatible with IE. Click here to see live example.

First of all we define three variables var message for ‘display message at status bar’, var speed for ‘set time interval to flash text’, and var control to control blinking of message

Read the rest of this entry »


Browsing files in a folder using VB.NET

This small piece of code will give an idea to browse file in a given folder.

Start your VB.NET application and create a new project (Ctrl+Shift+N) in Windows Application and design your form as you like. I have design my form as below (Figure 1.):

Browsing files in a folder using VB.NET Read the rest of this entry »


How to Get a Free C# Command Line Compiler
When you buy Visual Studio 2005, you get the full-featured integrated development environment (IDE). If you don’t have Visual Studio 2005, You can also get a free C# compiler by using one of the following options:
You can get the command-line compiler (csc.exe) from Microsoft site
Read the rest of this entry »