Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: josoers
  • Content: Threads
  • Order by date
  1. josoers

    strange DB problem

    Im having a strange problem here. When im reading from my db in my perl script, everything goes fine. However when I write to the db, the perl script goes from 1% CPU load to 60% CPU load, and stays there. This happens every now and then so not every time when writing to the db. What could cause...
  2. josoers

    masking string

    i have written the following PHP function that masks a string with ***'s and then unveils 1/3 of its original letters to form a hint: $length = strlen($answer); $hint = ""; for ($x=0;$x<$length;$x++){ $hint .= "*"; } for ($x=0;$x<($length/3);$x++){ $ran = rand(0,$length-1); $hint[$ran] =...
  3. josoers

    scrollbar colors

    Is there a possibility to change the colors of a scrollbar of a textbox within director? if so, how? thanks in advance
  4. josoers

    animated mask

    What code should i use to animate a mask?
  5. josoers

    absolute to relative path

    I have the following code Dim objFSO As FileSystemObject Dim objTS As TextStream Dim strPath As String Dim strLine As String Set objFSO = New FileSystemObject strPath = &quot;c:\vb\files.txt&quot; Set objTS = objFSO.OpenTextFile(strPath, ForReading) Do While objTS.AtEndOfStream = False...
  6. josoers

    variable objectname

    I have a number of objects in my form, lets say they are labels. label1 label2 label3 label4 label5 i want to change all the labels .caption using a loop: for x = 1 to 5 label<x>.caption = 'test' next x but i dont know how to do this. For example, i tried for x = 1 to 5 tmp = 'label' + x...

Part and Inventory Search

Back
Top