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 Wanet Telecoms Ltd 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: x6213
  • Content: Threads
  • Order by date
  1. x6213

    regular Expression patern to ignore between parentheses

    I need help making a regex patern to split strings with the delimiter as a backslash; and I need it to ignore any backslashes inside parentheses "(" & ")" example string = "red \ (blue) \ (green\blue)\ black" split should be 0=red 1=(blue) 2=(green\blue) 3=black also there is no uniformity...
  2. x6213

    query active directory group membership with ASP?

    I have a page that requires a window's login and access only from domain users, is there a way to pull up the security group membership from active directy using asp? I want to disable/enable links/menu functions for certain groups and I really don't want to manage and upkeep a separate sql...
  3. x6213

    reading shared memory (delphi code to vb.net)

    I'm trying to read a shared memory that the software ‘EVEREST Ultimate’ monitoring module uses. They give this example in Delphi, But I need it in vb.net //Delphi Const sharedmem_name = 'EVEREST_SensorValues'; Function ExtApp_SharedMem_ReadBuffer(bu:PChar;bu_size:DWord):Boolean; Var...
  4. x6213

    putting apostrophe in string from a function?

    I have a procedure that starts something like this function exampleX(@value1,@value2,@string1) that is built from an online form with 3 variables and one of the variables is a string and when I greate the sql string i get something like exec...
  5. x6213

    updating custom data types?

    Somehow all of the user defined data types and some of the lengths have been changed to the sql default datatypes in every column in one of our databases. I think it was caused by a conflicting software that shares the sql database. No one wants to take responsibility for this, but and I have...
  6. x6213

    asp upload to a server from a url?

    I can find hundreds of examples of doing an upload from the client's local machine, but I need one that will upload a zip file to the server from the web.
  7. x6213

    cleaning up any unused css styles?

    I have a 4000+ line css file that has been bloated from every designer that has appended to it over the years and I'm think a lot of it is not used. Other than doing a line by line search for the class/id field in the 50+ pages using this stylesheet and manually removing them, is there a...
  8. x6213

    Variable is undefined help

    I get a "Variable is undefined" error but I have no idea which variable. I'm editing pre-existing code and there are numerous variables, so the only way I've been able to debug is to ' comment out each variable one by one and see if the error stops to find the faulty variable, but this is very...

Part and Inventory Search

Back
Top