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 Chriss Miller 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: zzzqqq
  • Content: Threads
  • Order by date
  1. zzzqqq

    reading user id from user environment/registry

    Hi, Anyone know how to read a user id from the user environment/registry in VBScript. I'm new to VBScript and using IIS Server and asp pages. Is there a variable for this? Thanks
  2. zzzqqq

    microsoft access 97 close button

    Hi, Anyone know in microsoft access 97 is it possible to remove the close button (top right hand corner) when a form is maximised? Thanks.
  3. zzzqqq

    Retrieving Value from database table using Database and RecordSet

    Hi, Anyone know how to retrieve the actual table value after these steps? New to vb and finding it difficult to figure this out? Dim dbs As Database Dim rst As Recordset Dim strSQL As String Dim strRequestNo As String Dim retVal Dim checker As Integer Dim ReqNo, stDocName As String Dim...
  4. zzzqqq

    requery not working

    Hi, I'm relatively new to VB and Microsoft Access. I currently have difficulty with the requery function. I'm trying to reload a textareas on the load event of a form. Here is the code Private Sub Form_Load() Me.Refresh DoCmd.Maximize Me.NoOfRec = Me.lstSearch.ListCount...
  5. zzzqqq

    Dynamically generating form context

    Hi, Does anyone have an idea in Microsoft Access 97, if content on a form can be generated dynamically? I need an example as if someone clicked on a button and a textbox was then created. Can't really use hidden objects, because I need an example like, on button, it says "Create new user" and...
  6. zzzqqq

    Index of current array

    Hi, Anyone know is it possible to get the current index of an array in perl? Eg. $index = @array($index); Say current index is 3. Cheers, Mark.
  7. zzzqqq

    delimiting special characters

    Hi, Anyone know of a complete function that would delimit majority of special characters in a string? E.g. +,-,@,space, / Know I can use the translation function for tr/replace/original/d for individual characters, could this be used for groups of characters? Space and + are the major characters...
  8. zzzqqq

    indexing a string

    Hi, Anyone know is it possible to insert a string value at a specific index in another string? For example insert "234" into "657878768" at index 5 therefore overwriting it? Cheers, Mark.
  9. zzzqqq

    unmatched bracket ( in regex

    Hi, Anyone have an idea behind this one? I'm trying to search a string say: branchRetrievalDetails.scheduleAtFixedRate(branchDetailsServlet,getTomorrowMorning6am(),repeat); for something like this: scheduleAtFixedRate( but when I do a line =~ string comparison, I get following error: Unmatched...
  10. zzzqqq

    string substitution

    Hi, Anyone know is it possible to replace certain characters in a string with nothing? Tried: $variable =~ tr/\t\+\"\?//, but doesn't work. This does work: $variable =~ tr/\t\+\"\?/ /, but replaces with characters with spaces. Any ideas? Cheers, Mark.

Part and Inventory Search

Back
Top