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 strongm 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
  • 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?

    ok, it looks like the problem might have been caused when someone truncated the log file because of storage space issues a few months back. I have tried the compare utility and it works great. but I'll have to run 900 sql scripts :( 300, for each table and three times each (one on a remote...
  6. x6213

    updating custom data types?

    Vongrunt, the correct one is the one on the right SQLDenis, since this happened months ago, all current backups are like this. all I have is a really old sample database(from 2001!) to compare with.
  7. 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...
  8. x6213

    asp upload to a server from a url?

    I kept getting 'write file error' until I realized I needed to add strFilename="filename.zip" and it worked, thanks for your help!
  9. x6213

    asp upload to a server from a url?

    I get an ActiveX component can't create object: 'Msxml2.ServerXMLHTTP.4.0' error I'm not sure if MSXML is installed on my server on this page http://msdn.microsoft.com/XML/XMLDownloads/default.aspx is it "Microsoft XML Core Services 4.0 Service Pack 2" ?
  10. 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.
  11. 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...
  12. x6213

    Variable is undefined help

    ok, i feel stupid. It was a "On Error Resume Next" set in one of the includes. Now I get a line number of the error, thanks for all your help everyone.
  13. x6213

    Variable is undefined help

    the actual Err.Description is just "Variable is undefined
  14. x6213

    Variable is undefined help

    this is what shows Technical Information (for support personnel) Variable is undefined but no varname
  15. x6213

    Variable is undefined help

    yes, it's the first line of my global include
  16. 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...
  17. x6213

    Free tool for generating PDF from ASP page

    here's one http://www.aspxnet.it/public/default.asp

Part and Inventory Search

Back
Top