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

    reroute incoming ftp connection

    Hi! Is it possible to reroute an incoming ftp connection to an other server from a specific ip address. Thanks in advanced
  2. denis60

    importing text files question

    Hi! I did a dts task importing 1 file to a table with the text file souce connection, but how to import multi text files in 1 table. I tried with the execute process task (with a dos batch) copy append to 1 file. It work fine but i don't know how to return code to validate. Help please!
  3. denis60

    Help on importing file

    Hi! everyone I'm a newbe in SQL server 2000. I need help on how could be the best way to transfer data (+10,000 lines) from a linux server to a SQL 2000 server (some codes would be appreciate). Here the step i'm thinking about: 1- Server linux send each 10 minutes a text file with data for...
  4. denis60

    matching variable problem

    Hi! I'm trying to match a variable containing a $(dollar sign) and it fail, like $tst="2->DATA$\n"; $tst1='2->DATA$'; if($tst =~ $tst1){print "yes\n"}else{print "no\n"}; These 2 variables are here to represent data capture in 2 files and compare. How to fix it ??? Thanks in advance for your help
  5. denis60

    manipulate file error

    Hi! I have a corrupted compressed file. It opened well but after reading 3 lines it failed and return: zcat: /home/denis/jf/jftemp/240DU050725230311JF.Z: corrupt input. How can i control the error message. Here my script: #!/usr/bin/perl $var="/home/denis/jf/jftemp/240DU050725230311JF.Z"...
  6. denis60

    Problem with substitution

    Hi! Is it possible to substitute a variable containing special characters like $ and use it as a character and not like a variable ex: $rwrd=substr("cic $ nil",1,6); $data =~ s/$rwrd/+\n/; Each time a $ appear the substitution fail.
  7. denis60

    menu bar hidden when child form activate ???

    Hi everyone! I have a mdi form with 2 children form. I put a menu bar in my mdi form. One of the 2 children form (always the second form) when clicked hide the menu bar and reappear when the first child form is clicked. Why??? Thanks in advance!
  8. denis60

    Hidden asp date in javascript function

    Hi! I want to submit (onclick) in a javascript function and open a new window in it (window.open). But i want to send to the new window the server time of the submit action. ex.: <HTML <BODY BGCOLOR="#FFFFFF"> <SCRIPT language='javascript'> function popup(){ var token=<%=DateDiff("s"...
  9. denis60

    How to find a range of time in a log file

    Hi! I'm trying to grep logs in a huge file between a certain period of time. Ex:. SFOY PM106 MAR09 02:44:25 3661 RTS LCM SFOY AUDT106 MAR09 02:45:28 3664 INFO SFOY * PM106 MAR09 02:58:23 3698 RTS SFOY SWER MAR09 04:23:03 4108 Is it possible to grep(or else) logs...
  10. denis60

    How to get fetchrow result in one string

    Hi everyone Is it possible to get all the result of a fetchrow in one string or array like: $result = $db->FetchRow(); or @result = $db->FetchRow(); In VB they use getstring and getrows. if not what is the fastest for each one. Thanks in advence!
  11. denis60

    multidimentional array with data at start-up

    Hi! Is it possible to define a multidimentional array with its data. An exemple would be appreciate. Thanks in advence.
  12. denis60

    Use a form like a msgbox

    Hi! I use a button where it's process is very long. I would like to use (create) a small form (like a msgbox without buttons) to show the progress of my process. When i use a form it get the priority until i close it.I'd like to use it in paralel with my main form sending it data (text) and...
  13. denis60

    How to add 2 array together

    Hi! Is it possible to add 2 array of the same width like: arr3 = arr1 + arr2
  14. denis60

    how to fixed a header with a scrolling list

    Hi! I want to create a web page with a scrolling list and a fixed header. My web page is create with window.open and document.write. I thought using frameset and replace "src=" with my body code but it fail. Any better idea would be apreciate
  15. denis60

    count an element of a multidimensional array

    Hi! I'm looking for a code to find the size of an element in a multidimensional array. exemple @tst=([1,2][1,2,3][1,2,3,4][1,2,3,4,5]) I find the size of the array with $#tst but what is the code to find the size of element 0,1,2 etc.? Thanks in advence
  16. denis60

    get the size of a multidimensional array layer

    Hi! How to know the size of an element of a multidimensional array. Exemple: @tst=([1,2][1,2,3][1,2,3,4][1,2,3,4,5]); I get the size of the array with $#tst I'm looking for a code for the size of each layer(element) Thanks in advance
  17. denis60

    Lost quote in cell

    Hi! I have a problem in Excel 2000 If i write a word in a cell starting with a quote ' like 'month, the quote become hidden. And after if i use code(VBA) to capture info from the cell, the quote is not capture by the variable. Why and how to fix it. Thanks in advence...
  18. denis60

    How to convert a string variable in object variable

    Hi everyone I have a textbox in my form that i want to control in a variable. If i use this sentence with the real textbox name, it work: Dim MyItem as object MyItem = txbTicket xx = MyItem.tag How to do the same thing with the textbox name in a variable like: Dim MyItem as object MyVar =...
  19. denis60

    Backcolor of caption's frame

    Hi! How to colored a background'caption of a frame. Frame1.backcolor didn't?
  20. denis60

    Loading the same form twice

    Hi! Is it possible to load (use) the same form twice (or more) instead of creating many (same) form in the projet? Thanks in advance...

Part and Inventory Search

Back
Top