The Flying Dutchman
   Computer stuff
 
Download Service providers
IExplorer TheList
Netscape Internet sp's
Real Player Roadrunner
NetshowPlayer
Quicktime Prodigy access numbers
Shockwave Prodigy access numbers
AcrobatReader BlueLight (free)
Midi BlueLight download
Microsoft design Gallery Free internet
Proxi-servers Test: Tampabay.rr.com
Winfiles
Microsoft updates JUNO ( FREE)
Office2000 upgrades
Copy a DVD
CoffecupSoftware !! Free software
Free service providers
Driverfiles
Linksys Anti-virus
Netsonic Symantec
Windows2000 Anti-virus page

compatiblity check

Virus hoaxes
 
Test connection for sites:
CuteFTP 1) run
WSftp 2) type in : tracert dollybay.com
ROUTERSHOP . NL WEBHOSTING
Blue Domino.com unlimited $ 18.95
59Hosting.com 20 MB $ 2.95 pm

Internet Buy hardware/software
Submit this Comp Disc Warehouse
Web tutorial Surplus Direct
Builder web building tools Dunnet Rotterdam
MyDesktop Network The memory Place
Java Boutique Surplus auction on line
Email anti spam HardwareCentral
250-000 free images Computer Shows
Images disk ZDNet
Internet University A2Z MobileOfficeSolutions
The  Internet Plaza CompuAmerica
WebPromote Outpost.com
Micro Warehouse
All Animated Gifs Computers4sure
FirstSource
Check if a domain is available Onvia
DYNAMICDRIVE Euclidcomputers.com
Lacc.com
Buymoreproduct.com
Netmechanics -Check your site
Midi.com Java Applets
Computer News on CNet Problem solving
ZDNet Anfy Java Applets
Check sites
Is your computer safe
Netsurfer digest Proxy servers
Cybercafes Winfiles-C-Net
Speedtest Easy proxy home page
Meta tag generator
Form Mail Code generator

 

Check what automatically running Go to Start > Run, then type regedit.exe
Check items in the startup group Go to Start > All Programs > Startup
Check items in the WIN.INI file Go to Start > Run, then type WIN.INI
Window's system configuration utility Go to Start > type MSCONFIG
   

 

 

 

Your browser in unable to view Java Applets

 

top/left/main frame html

<HTML>
<HEAD>
<TITLE>A Practice Page</TITLE>
</HEAD>

<FRAMESET ROWS="83,*">
<FRAME SRC="banner.html">
<FRAMESET COLS="20%,80%">
<FRAME SRC="directory.html">
<FRAME SRC="home.html">

</FRAMESET>
</FRAMESET>

</HTML>

Java script voor roulerende plaatjes die aanklikbaar zijn naar een link

step 1)

Insert the following in the HEAD of your page :

<script language="JavaScript1.1">
<!--

/*
JavaScript Image slideshow:
By Website Abstraction (www.wsabstract.com)
Over 200+ free JavaScript here!
*/

var slideimages=new Array()
var slidelinks=new Array()
function slideshowimages(){
for (i=0;i<slideshowimages.arguments.length;i++){
slideimages[i]=new Image()
slideimages[i].src=slideshowimages.arguments[i]
}
}

function slideshowlinks(){
for (i=0;i<slideshowlinks.arguments.length;i++)
slidelinks[i]=slideshowlinks.arguments[i]
}

function gotoshow(){
if (!window.winslide||winslide.closed)
winslide=window.open(slidelinks[whichlink])
else
winslide.location=slidelinks[whichlink]
winslide.focus()
}

//-->
</script>

+++++++++++++++++++++++++++++++++++++++++++++++++

Step 2)

Insert the following in the BODY part of your page, where you want it to appear:

<a href="javascript:gotoshow()"><img src="food1.jpg" name="slide" border=0 width=300 height=375></a>
<script>
<!--

//configure the paths of the images, plus corresponding target links
slideshowimages("food1.jpg","food2.jpg","food3.jpg","food4.jpg","food5.jpg")
slideshowlinks("http://food.epicurious.com/run/recipe/view?id=13285",

"http://food.epicurious.com/run/recipe/view?id=10092",

"http://food.epicurious.com/run/recipe/view?id=100975",

"http://food.epicurious.com/run/recipe/view?id=2876",

"http://food.epicurious.com/run/recipe/view?id=20010")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2000

var whichlink=0
var whichimage=0
function slideit(){
if (!document.images)
return
document.images.slide.src=slideimages[whichimage].src
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}
slideit()

//-->
</script>
<p align="center"><font face="arial" size="-2">This free script provided by</font><br>
<font face="arial, helvetica" size="-2"><a href="http://wsabstract.com">Website
Abstraction</a></font></p>

++++++++++++++++++++++++++++++++++++++++++++++++++

To configure the slideshow, edit the code in Step 2. Just refer to the comments inside the code.

 

 

Proscroll.class handleiding

Applet Parameters

The below table lists the parameters available to the applet in configuring it:

TEXT The text to scroll. For multi-colored text, put the following codes in:
#red# - red
#green# - green
#blue# - blue
#yellow# - yellow
#orange# - orange
#white# - white
#lightGray# - light gray
#gray# - gray
#darkGray# - dark gray
#black# - black
#cyan# - cyan
#magenta# - magenta
#pink# - pink

For example, TEXT="#blue#Hello #green#world" will scroll the word 'Hello' in blue and 'world' in green. To insert an image, place a $ sign in the place where you want it be. Then in the IMAGES parameter, specify a space separated list of image file names, in the order in which they appear in the text.
Here's the tag for an example applet that will scroll image1.gif and image2.gif:

<APPLET CODE=ProScroll WIDTH=400 HEIGHT=26>
<PARAM NAME=TEXT VALUE="$$">
<PARAM NAME=IMAGES VALUE="image1.gif image2.gif">
</APPLET>


If you want an actual # or $ symbol in the text, rather than a color change or an image, insert /# and /$. If you want a /, use //.

TEXTURL The URL to fetch the text from. If an error occurs while loading the URL, the text from the TEXT parameter is used instead.
FONT The font to use for display. Default is TimesRoman.
SIZE The font size to use for display. Default is 12 point.
STYLE The font style to use for display. Valid styles are plain, bold, italic and bolditalic. Default is plain.
URL The URL to point the browser to when the user clicks on the scroller. There isn't a URL by default.
TARGET The frame to display the URL in, this is either _self, _top, _blank, or the name of a frame. Default is _self. This is only used if a URL is specified.
SPEED The speed at which to scroll. Valid values are slow, medium, and fast. Default is fast.
IMAGES See TEXT parameter info.
BGCOLOR The background color of the scroller. This is specified as a TEXT parameter-style color name. See the TEXT parameter info for a list of all the colors names. Default is black. Note that the # aren't needed, so specify something like red instead of #red#.

 

Freewarejava.com
Check out Freewarejava.com, our sister site, for direct links to hundreds of free Java applets, tutorials, references, and more.

Disable right mouse click  
<SCRIPT language=JavaScript>
<!--

/*
Disable right mouse click Script (By Crash @ http://walk.to/crash)
Submitted to and permission granted to Dynamicdrive.com to feature script in it's archive
For full source code to this script and 100's more, visit 
http://dynamicdrive.com
*/

var message="Now why would you want to right click on me?";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 
</SCRIPT>
 

 

    Updated 15 March, 2007 - webmaster Dirk Steine

webmaster Dirk Steine - Last updated 15 March, 2007