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 Chris 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: *

  1. zzzqqq

    reading user id from user environment/registry

    Sorry, This seems to get me the asset number, I'm looking for getting the user id if logged onto the system, e.g. User Name = 23543. Is this possible? Thanks.
  2. 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
  3. zzzqqq

    microsoft access 97 close button

    Cheers Mate. You just saved my project. Mark.
  4. 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.
  5. 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...
  6. 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...
  7. zzzqqq

    Dynamically generating form context

    Cheers, I want something like this. When a button is clicked, it creates a new row in table for a user to enter, say a new staff member details. This needs to be done dynamically. Cheers, Mark.
  8. 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...
  9. zzzqqq

    Index of current array

    Cheers, Just trying to find the index number of an element in an array. say $array[3] = "29". Hoping there's a way of finding the index number, i.e. say the 3 number in this case. Mark.
  10. 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.
  11. zzzqqq

    delimiting special characters

    Hi, actually have found solution to what I was interested in doing: E.g. $microsoftProductNumber = grep /\Q$microsoftProductName/,@microsoftProducts; Use \Q and this turns off special character meaning for strings when comparing to the regex. Thanks to everyone who helped in this case. Cheers...
  12. zzzqqq

    delimiting special characters

    Cheers, Thanks for the replies. Have problems with txt files. reading file line like this: Visual C++ Error message: Nested quantifiers in regex: <-- Here in m/"InstallShield for Microsoft Visual C++ <-- HERE 6"/ Is there a problem with ++ quantifier? I already understood the s/[replacement...
  13. 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...
  14. zzzqqq

    indexing a string

    Cheers, Excellent! Had a fair idea of that was really wondering was there a direct indexing method of doing it? Thanks
  15. 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.
  16. 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...
  17. 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