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 Mike Lewis 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: puck2
  • Order by date
  1. puck2

    VB to transfer data into bitmap file

    I reference these two sites for info all the time. <http://www.devguru.com/Technologies/vbscript/quickref/vbscript_intro.html> <http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsfctInputBox.asp> Basically everything associated with VB Script is listed.
  2. puck2

    How to browse for a file's using VBScript

    There are several methods for what you want to do. If you just want a file selection box to open with a file type filter do this. FPath = FileSelectionBox(&quot;Select a TextFile.&quot;, &quot;*.txt&quot;, FileSelectionModeOpen) This the first step selecting the file and apply a file type...
  3. puck2

    Can you specify the number of characters alowed in an input box?

    In VBScript can you specify the number of characters alowed in an input box? I want to limit the number of chatarcters the user is able to place into the input box or make it word wrap after so many characters. The word wrap method would be prefered. TIA, puck2
  4. puck2

    Placing values into a table or array

    Even more confusing this actually CATScript. It's based on VB Script but the API's are poorly written and not always up to date. I've tried the Ubound method and it seems to produce the same result in this case. (It was actually the first method I tried for that line of code.) Thanks to...
  5. puck2

    Placing values into a table or array

    Thanks I'll give this a try. And yes there was a problem reading the array so I will use the interim step. Thanks Again puck2
  6. puck2

    Placing values into a table or array

    Great, method 2 is what I'm pursuing now because I don't know the number of parameters. The only problem I have now is getting the parameters back out of the array one at a time. I'm trying this method. If UBound(arrPos) <> 0 Then For i = 0 to arrPos.Count - 1 Text.SetParameterOnsubString...
  7. puck2

    Placing values into a table or array

    I'm making a script to place notes as one note on the face of a drawing and I'm keeping track of which notes are to have a flag on their number. I've been able to hard code the positions just fine but I would like to be able to add the position to a table or array to have the flag generated...

Part and Inventory Search

Back
Top