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 bkrike 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: ktucci
  • Content: Threads
  • Order by date
  1. ktucci

    2-byte header for SSL transaction

    i have a request that requires the use of a 2-byte header for an SSL transaction. i posted below the requirement and the code snippet where the 2-byte header designation would go. if anyone can offer any assistance into this, it would be greatly appreciated. thanks in advance. here is spec...
  2. ktucci

    convert .net code to CF...help...

    i am far ffrom an expert on coldfusion and need to implement some exisitng .net into CF...is this possible, if so could someone point me in the right direction...this below code is what i am trying duplicate in CF and below that is my attempt... any help will be greatly appreciated...thanks...
  3. ktucci

    modify system stored proc

    is there anyway to modify a system stored proc...if so, how...? any help will be greatly appreciated
  4. ktucci

    convert binary data to string

    what is the easiest way to convery binary data to a string in VB.net thanks in advance -keith
  5. ktucci

    simple sql performance question

    here is a simple question, but just recently this issue is really causing havoc imagine i have a stored proc that simply select some rows and it takes 10 seconds to run it query analyzer...now imagine i run this same query 2 times concurrently through query analyzer and now it takes 18 seconds...
  6. ktucci

    add and retrieve data to and from array

    i need to store this data returned from a recordset in some sort of an array or collection by looping through the result set: key,f1,f2 1,aaa1,aaaa 1,aaa2,bbbb 1,aaa3,cccc 2,bbb1,aaaa 2,bbb2,bbbb 3,ccc1,aaaa i would then need to retrieve all of the data by requesting the key eg: i would...
  7. ktucci

    store XML string in DB

    how can i best store the XML string resulting from the query below...i presume inserting into an 'image' field would be the answer assuming these XML string will be very large...i was wondering if anyone has any way i can accomplish this inserting of the XML string into an 'image' field through...
  8. ktucci

    need to locate dialog window and sendkeys

    i need to locate a dialog window(my request involves the ssl certificate dialog windows) and sendkeys to 'enter' hese two windows as they appear...i am running a web browser control in my application and dialog window displayed when i access the required page from the browser control...i need to...
  9. ktucci

    sql server 2000 if i pass a stor

    sql server 2000 if i pass a stored proc a string of 1,2,3,4,5 for @var_view and p.preorder_postatus_id has an datatype of integer...how could i convert this variable to and integer so the query can process it *btw...i am passing the string to the stored proc from coldfusion...
  10. ktucci

    insert then update another table with max values

    i need help with the following...i am no sql expert so keep in mind with my poor explanantion of what i am trying to do sql server 2000 in my stroed proc i just inserted some number of records into a table, i now need to requery that table 'sql1.[csr-soi].dbo.btnlist' and get the value of the...
  11. ktucci

    coldfusion server/iis virtual directory shared location

    i have coldfusion running on a server w/IIS...coldfusion works fine with directories physically on that server...if i go into IIS and make a virtual directory pointing to a share located on another computer such as "\\filesvr1\devcode$" the coldfusion files are unaccessable and i get...
  12. ktucci

    regular expressions question

    how do i use regular expressions to look for '\w{2,5}' but not have the result be a number by itself i would want to match:(letter number combinations) abc1a 1abcd abcde 1234a a4bcd but not:(any integer without a letter) 12345 123 12 22222 any help will be greatly appreciated thanks keith
  13. ktucci

    regular expressions question

    how do i use regular expressions to look for '\w{2,5}' but not have the result be a number by itself i would want to match:(letter number combinations) abc1a 1abcd abcde 1234a a4bcd but not:(any integer without a letter) 12345 123 12 22222 any help will be greatly appreciated thanks keith
  14. ktucci

    regular expressions question

    another regular expressions question...how would i go about parsing out the values from the examples below...i need the same pattern to parse all of the below examples using match... something like re.Pattern = "((/\w+).*?)" Set Matches2 = re.Execute(Match1.SubMatches(2))...
  15. ktucci

    regular expressions problem (again)

    does anyone know of any easy way using regular expressions to parse out these fields, i will be evaluating one line at time..below are some examples of the lines i will be evaluating this is the desired output i wish to get for each line even if they dont have data in the fields...
  16. ktucci

    regular expressions problem

    i am trying to use regular expressions to parse the below file, i get most of the file parsed with a few exceptions...the file may look a bit malformed but if you copt it into notepad it should look OK....basically i am look to parse everything from the occurence of ---S&E near the top of the...
  17. ktucci

    regular expressions problem

    i am trying to use regular expressions to parse the below file, i get most of the file parsed with a few exceptions...the file may look a bit malformed but if you copt it into notepad it should look OK....basically i am look to parse everything from the occurence of ---S&E near the top of the...
  18. ktucci

    regular expressions problem

    i am trying to use regular expressions to parse the below file, i get most of the file parsed with a few exceptions...the file may look a bit malformed but if you copt it into notepad it should look OK....basically i am look to parse everything from the occurence of ---S&E near the top of the...
  19. ktucci

    regular expressions question (lookahead)

    i am trying to use this pattern but wish to not include the second portion of the pattern in the match...i tried using lookahead with no luck...does anyone have any ideas on how to best accomplish this re.Pattern = "((\s+\d+\s+\w+\s+/\w+\b).*?)(\s+\d+\s+\w+\s+/\w+\b)" thanks keith
  20. ktucci

    parsing problem has got me stumped

    i have this text file and i am trying to parse from each occurence of ALN to the next occurence into 4 fields...i am reading through the file LINE BY LINE and i am having problems figuring this one out. this is hwo i am opeing the file...i would like to use this same method and continue to read...

Part and Inventory Search

Back
Top