The following warnings occurred:
Warning [2] Undefined variable $smilie_cache - Line: 1029 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1029 errorHandler->error_callback
/inc/plugins/quickadveditorplus.php 1170 mycode_inserter_quick
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined array key "sourceeditor" - Line: 1135 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1135 errorHandler->error_callback
/inc/plugins/quickadveditorplus.php 1170 mycode_inserter_quick
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined array key "vbquote" - Line: 1147 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1147 errorHandler->error_callback
/inc/plugins/quickadveditorplus.php 1170 mycode_inserter_quick
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined array key "showquickreply" - Line: 1175 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1175 errorHandler->error_callback
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined array key "sourceeditor" - Line: 1135 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1135 errorHandler->error_callback
/inc/plugins/quickadveditorplus.php 1176 mycode_inserter_quick
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined array key "vbquote" - Line: 1147 - File: inc/plugins/quickadveditorplus.php PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/quickadveditorplus.php 1147 errorHandler->error_callback
/inc/plugins/quickadveditorplus.php 1176 mycode_inserter_quick
/inc/class_plugins.php 142 codebuttonsquick
/showthread.php 470 pluginSystem->run_hooks
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 45 - File: showthread.php(1617) : eval()'d code PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1617) : eval()'d code 45 errorHandler->error_callback
/showthread.php 1617 eval
Warning [2] Undefined variable $usersbrowsing - Line: 91 - File: showthread.php(1617) : eval()'d code PHP 8.2.7 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1617) : eval()'d code 91 errorHandler->error_callback
/showthread.php 1617 eval




Excel vraagje
#1
Kan iemand mij vertellen hoe ik een cell in een worksheet met een kleurtje laat knipperen???
We can't, can not get, we can not get enough!!
Reply
#2
Ekslem Wrote:Kan iemand mij vertellen hoe ik een cell in een worksheet met een kleurtje laat knipperen???

[Image: gay.gif]

In mijn Vista-versie van Excel zit het niet.
She was only the Gardener's daughter, but boy! What a melons!
Reply
#3
de vraag is meer...wil je dat?


nee ik weet t ook niet
Reply
#4
Ekslem Wrote:Kan iemand mij vertellen hoe ik een cell in een worksheet met een kleurtje laat knipperen???

Volgens mij kan dat met Auto-opmaak. hoe precies weet ik niet.
Daarmee kan je wel aangeven dat bedragen onder, stel, € 1000 rood worden en daarboven groen.

Maar hoe je ze moet laten knipperen, geen idee. Misschien heel snel en heel vaak achter elkaar je monitor uitzetten?
Oh, my god, we bought Kenny!
Reply
#5
Als Excel open is druk je op Alt+F11 nu kom je in de "Visual Basic Editor"
Klik rechts op "Vbproject(Map1)" en kies Invoegen - Module
Rechts zie je Option Explicit met de cursor,
de code hieronder kopieer je en plak je in dit vak.
Ga nu naar Extra - Macro - Macro's en kies Knipper
Sla het bestand op.

Sub Knipper()
Dim interval As Date, myCell As Range
Set myCell = Worksheets(1).Range("A1")
interval = TimeValue("00:00:02")

knip = Not knip
tel = tel + 1
If tel = 10 Then
myCell.Interior.Color = 0
Exit Sub
End If

myCell.Interior.Color = IIf(knip, RGB(256, 0, 0), RGB(0, 256, 0))
Application.OnTime Now + interval, "Knipper"

End Sub

Cel A1 zal nu knipperen
And so you see children, Genghis Khan was a Mongol, not to be confused with a mongoloid, like the actor Nicholas Cage.
Reply
#6
Mac Wrote:de vraag is meer...wil je dat?


nee ik weet t ook niet

Het is een vraagJE! Dead
Geld, drank en lekkere wijven!
Dat is het waar het in het leven om draait...
Daar kan je mee in leven blijven, dat maakt het leven de moeite waard!

Song of the decade:

<!-- m --><a class="postlink" target="_blank" href="http://www.youtube.com/watch?v=F-3HibNnsnE">http://www.youtube.com/watch?v=F-3HibNnsnE</a><!-- m -->
Reply
#7
Bocaloca Wrote:Als Excel open is druk je op Alt+F11 nu kom je in de "Visual Basic Editor"
Klik rechts op "Vbproject(Map1)" en kies Invoegen - Module
Rechts zie je Option Explicit met de cursor,
de code hieronder kopieer je en plak je in dit vak.
Ga nu naar Extra - Macro - Macro's en kies Knipper
Sla het bestand op.

Sub Knipper()
Dim interval As Date, myCell As Range
Set myCell = Worksheets(1).Range("A1")
interval = TimeValue("00:00:02")

knip = Not knip
tel = tel + 1
If tel = 10 Then
myCell.Interior.Color = 0
Exit Sub
End If

myCell.Interior.Color = IIf(knip, RGB(256, 0, 0), RGB(0, 256, 0))
Application.OnTime Now + interval, "Knipper"

End Sub

Cel A1 zal nu knipperen

NERD! NERD! NERD! :Big Grin
She was only the Gardener's daughter, but boy! What a melons!
Reply


Forum Jump: