NAVIGATIE

Freetime overzicht
Zoeken


  RUBRIEKEN

FAQ / Help
Wat mag niet?
WZL Wedstrijden
WZL Chat
WZL Toolbar
WZL Statistieken
WZL leden
WZL shop
E-cards

RSS

Fun-feed
Babe-feed
Stud-feed

Een groot aantal pokerrooms geven de mogelijkheid om poker te spelen op internet en geld te storten via het veilige iDeal betaalsysteem.
Overzicht » WZL » Algemene zever » Het grote ctrl + v topic!
Onderaan pagina
« vorige - 1 - .. - 94 - 95 - 96 - .. - 130 - volgende »
egel 3.509
wzl-lid
Sinds 2/1/2007
T:7 - R:288
29/5/2007 - 13:09u | Quote
<APPLET CODE = BSCOutline.class
CODEBASE = "."
ID = BSCOutline
WIDTH = "300"
HEIGHT = "400">
<PARAM NAME = Icon1 VALUE = "./icons/desktop.gif">
<PARAM NAME = Icon2 VALUE = "./icons/net-mypc.gif">
<PARAM NAME = Icon3 VALUE = "./icons/drive.gif">
<PARAM NAME = Icon4 VALUE = "./icons/folder-closed.gif">
<PARAM NAME = Icon4O VALUE = "./icons/folder-open.gif">
<PARAM NAME = Icon5 VALUE = "./icons/drive-shared.gif">
<PARAM NAME = Icon6 VALUE = "./icons/net-hood.gif">
<PARAM NAME = Icon7 VALUE = "./icons/drive-floppy.gif">
<PARAM NAME = Icon8 VALUE = "./icons/doc3.gif">
<PARAM NAME = Icon9 VALUE = "./icons/doc1.gif">
<PARAM NAME = Icon10 VALUE = "./icons/doc2.gif">
<PARAM NAME = Icon11 VALUE = "./icons/doc4.gif">
<PARAM NAME = Icon12 VALUE = "./icons/drive-cd.gif">
<PARAM NAME = Icon13 VALUE = "./icons/net-drive.gif">
<PARAM NAME = Icon14 VALUE = "./icons/folder-printer.gif">
<PARAM NAME = Icon15 VALUE = "./icons/folder-tools.gif">
<PARAM NAME = Icon16 VALUE = "./icons/folder-tasks.gif">
<PARAM NAME = Icon17 VALUE = "./icons/net-all.gif">
<PARAM NAME = Icon18 VALUE = "./icons/net-pc.gif">
<PARAM NAME = Icon19 VALUE = "./icons/recycle.gif">
<PARAM NAME = OutlineFile VALUE = "./explorer.out">
<param name=FontFace value="Arial">
<param name=FontStyle value=0>
<param name=FontSize value=12>
<param name=FontColour value="000000">
<param name=BackColour value="FFFFFF">
<param name=SelectColour value="FFFFFF">
<param name=SelectBackColour value="000080">
<param name=Target value="_new">
<param name=ShowLines value=1>
<param name=DashedLines value=1>
<param name=ShowIcons value=1>

<PARAM NAME = InitialState VALUE = "1|2|4|31|">
</APPLET>
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
29/5/2007 - 16:47u | Quote
Hollywoodland
Einstein
[mod] Kayniaan
Sinds 24/6/2004
T:84 - R:2433
29/5/2007 - 21:30u | Quote
http://pHosted.com/0705/Lollipopdude.png
egel 3.509
wzl-lid
Sinds 2/1/2007
T:7 - R:288
29/5/2007 - 22:03u | Quote
http://www.outerbanks.com/wrightbrothers/
Ric 2.791
wzl-lid
Sinds 30/1/2006
T:60 - R:671
30/5/2007 - 10:43u | Quote
http://images.ucomics.com/comics/ga/2007/ga070530.gif
Monne 2.407
Deserteur
Sinds 12/7/2003
T:2 - R:305
8/6/2007 - 18:28u | Quote
Monne schreef:
http://www.bianca-dark.be/


edit: ff een verklaring eer je conclusies neemt: dit mevrouwtje is een overgebuur van iemand die ik ken...!
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
8/6/2007 - 18:43u | Quote
http://www.bianca-dark.be/
Flaviac 2.943
wzl-lid
Sinds 24/9/2004
T:97 - R:4206
8/6/2007 - 22:12u | Quote
MrRed schreef:
http://www.bianca-dark.be/

http://www.bianca-dark.be/
toffe site
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
9/6/2007 - 16:08u | Quote
Private Sub cboType_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboType.SelectedIndexChanged
UitschakelenAperetief()
InvullenBerekenenTeBetalen()
End Sub
---------------------------------------------------------------------
Sub UitschakelenAperetief()
Select Case cboType.SelectedItem.ToString
Case "Kind"
chkAperitief.Enabled = False
chkKoffie.Enabled = False
Case "Leerling"
chkAperitief.Enabled = False
chkKoffie.Enabled = True
Case Else
chkAperitief.Enabled = True
chkKoffie.Enabled = True
End Select

End Sub
----------------------------------------------------------------------
Sub InvullenBerekenenTeBetalen()
If chkAperitief.Checked = False And chkVoorgerecht.Checked = False And chkSoep.Checked = False And chkHoofdgerecht.Checked = False And chkNagerecht.Checked = False And chkKoffie.Checked = False Then
lblTotaal.Visible = False
txtTotaal.Visible = False
Else
lblTotaal.Visible = True
txtTotaal.Visible = True
txtTotaal.Text = CStr(Prijs())
End If
End Sub
---------------------------------------------------------------------
Private Sub chkAperitief_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkAperitief.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
----------------------------------------------------------------------
Private Sub chkVoorgerecht_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkVoorgerecht.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
----------------------------------------------------------------------
Private Sub chkSoep_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkSoep.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
-----------------------------------------------------------------------
Private Sub chkHoofdgerecht_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkHoofdgerecht.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
-------------------------------------------------------------------------
Private Sub chkNagerecht_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkNagerecht.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
-----------------------------------------------------------------------
Private Sub chkKoffie_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chkKoffie.CheckedChanged
InvullenBerekenenTeBetalen()
End Sub
------------------------------------------------------------------------
Function Prijs() As Integer
Const cintAperitief As Integer = 3
Const cintVoorgerecht As Integer = 7
Const cintSoep As Integer = 4
Const cintHoofdgerecht As Integer = 17
Const cintNagerecht As Integer = 4
Const cintKoffie As Integer = 2
Dim intPrijs As Integer
If chkAperitief.Checked = True Then
intPrijs = intPrijs + cintAperitief
End If
If chkVoorgerecht.Checked = True Then
intPrijs = intPrijs + cintVoorgerecht
End If
If chkSoep.Checked = True Then
intPrijs = intPrijs + cintSoep
End If
If chkHoofdgerecht.Checked = True Then
intPrijs = intPrijs + cintHoofdgerecht
End If
If chkNagerecht.Checked = True Then
intPrijs = intPrijs + cintNagerecht
End If
If chkKoffie.Checked = True Then
intPrijs = intPrijs + cintKoffie
End If
Return intPrijs
End Function
End Class
geen zin om te typen 3.194
wzl-lid
Sinds 15/6/2005
T:9 - R:2073
9/6/2007 - 22:20u | Quote
http://www.totalegekte.com/pics/vdweek/dirkjan135.jpg
funkjunk 3.393
wzl-lid
Sinds 25/12/2004
T:10 - R:1207
9/6/2007 - 22:45u | Quote
http://www.jippii.be/?st4w0ZE1XsQBavszuq7wTEJbJ

Monne 2.407
Deserteur
Sinds 12/7/2003
T:2 - R:305
29/6/2007 - 14:34u | Quote
verslavend spel
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
29/6/2007 - 15:37u | Quote
http://video.google.com/videoplay?docid=504327290164493****
MINIMAX 3.338
wzl-lid
Sinds 17/12/2005
T:16 - R:768
30/6/2007 - 11:57u | Quote
http://i134.photobucket.com/albums/q91/tettengek2/001.jpg
Nookie
garfield
Sinds 12/4/2003
T:19 - R:771
30/6/2007 - 13:47u | Quote
Ocean's Thirteen 8.3
Zaterdag 30/06 OV Fr/Nl ot. 14:00 - 17:00 - 20:00 - 22:30
geen zin om te typen 3.194
wzl-lid
Sinds 15/6/2005
T:9 - R:2073
30/6/2007 - 16:38u | Quote
http://www.wzl.be/users/Rolangsje/
Hawkeye 3.213
Spam Queen
Sinds 31/1/2005
T:14 - R:12483
30/6/2007 - 16:44u | Quote
<style type="text/css">table.lfmWidget20070630144252 td {margin:0 !important;padding:0 !important;border:0 !important;}table.lfmWidget20070630144252 tr.lfmHead a:hover {background:url(http://panther1.last.fm/widgets/images/en/header/chart/toptracks_regular_black.png) no-repeat 0 0 !important;}table.lfmWidget20070630144252 tr.lfmEmbed object {float:left;}table.lfmWidget20070630144252 tr.lfmFoot td.lfmConfig a:hover {background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat 0px 0 !important;;}table.lfmWidget20070630144252 tr.lfmFoot td.lfmView a:hover {background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat -85px 0 !important;}table.lfmWidget20070630144252 tr.lfmFoot td.lfmPopup a:hover {background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat -159px 0 !important;}</style>
<table class="lfmWidget20070630144252" cellpadding="0" cellspacing="0" border="0" style="width:184px;"><tr class="lfmHead"><td><a title="Pitt0r: Overall Top Tracks" href="http://www.last.fm/user/Pitt0r/charts/?charttype=overall&subtype=track" target="_blank" style="display:block;overflow:hidden;height:20px;width:184px;background:url(http://panther1.last.fm/widgets/images/en/header/chart/toptracks_regular_black.png) no-repeat 0 -20px;text-decoration:none;"></a></td></tr><tr class="lfmEmbed"><td><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="184" height="160" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab%23version=7,0,0,0" style="float:left;"><param name="bgcolor" value="000000" /><param name="movie" value="http://panther1.last.fm/widgets/chart/9.swf" /><param name="quality" value="high" /><param name="allowScriptAccess" value="sameDomain" /><param name="FlashVars" value="type=toptracks&amp;user=Pitt0r&amp;theme=black&amp;lang=en" /><embed src="http://panther1.last.fm/widgets/chart/9.swf" type="application/x-shockwave-flash" name="widgetPlayer" bgcolor="000000" width="184" height="160" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" FlashVars="type=toptracks&amp;user=Pitt0r&amp;theme=black&amp;lang=en" allowScriptAccess="sameDomain"></embed></object></td></tr><tr class="lfmFoot"><td style="background:url(http://panther1.last.fm/widgets/images/footer_bg/black.png) repeat-x 0 0;text-align:right;"><table cellspacing="0" cellpadding="0" border="0" style="width:184px;"><tr><td class="lfmConfig"><a href="http://www.last.fm/widgets/?widget=chart&amp;colour=black&amp;chartType=toptracks&amp;user=Pitt0r&amp;chartFriends=&amp;from=code" title="Get your own widget" target="_blank" style="display:block;overflow:hidden;width:85px;height:20px;float:right;background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat 0px -20px;text-decoration:none;"></a></td><td class="lfmView" style="width:74px;"><a href="http://www.last.fm/user/Pitt0r/" title="View Pitt0r's profile" target="_blank" style="display:block;overflow:hidden;width:74px;height:20px;background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat -85px -20px;text-decoration:none;"></a></td><td class="lfmPopup"style="width:25px;"><a href="http://www.last.fm/widgets/popup/?widget=chart&amp;colour=black&amp;chartType=toptracks&amp;user=Pitt0r&amp;chartFriends=&amp;from=code&amp;resize=1" title="Load this chart in a pop up" target="_blank" style="display:block;overflow:hidden;width:25px;height:20px;background:url(http://panther1.last.fm/widgets/images/en/footer/black.png) no-repeat -159px -20px;text-decoration:none;" onclick="window.open(this.href + '&amp;resize=0','lfm_popup','height=260,width=234,resizable=yes,scrollbars=yes'); return false;"></a></td></tr></table></td></tr></table>
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
30/6/2007 - 16:55u | Quote
nothing lasts 4ever
geen zin om te typen 3.194
wzl-lid
Sinds 15/6/2005
T:9 - R:2073
30/6/2007 - 23:25u | Quote
http://www.vivante.nl/images/styles/woonkamer/woonkamer.jpg
MrRed 3.101
wzl-lid
Sinds 5/6/2005
T:229 - R:13960
1/7/2007 - 8:19u | Quote
« vorige - 1 - .. - 94 - 95 - 96 - .. - 130 - volgende »
 
Bovenaan pagina