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 gkittelson 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. EfratS

    Time difference in miliseconds

    dear PCLewis, This basic problem arouse when I've tried to implement rmikesmith's solution. I appriciate his effort very much, and his answer is very relevant to my problem - it just that I encounter another problem in the way. That was my intention. from your kind answer I now understand that...
  2. EfratS

    Time difference in miliseconds

    First - thank you all for your answers. Zathras: I don't need to find the time difference between start to end, but between 2 given values from worksheet. rmikesmith and PCLewis: your ideas seem to be in the right direction, but I have a basic problem in putting the information from the...
  3. EfratS

    Time difference in miliseconds

    Hello, I have two cells in excel which I need to find the time difference between them in miliseconds: a = 2005-07-07 04:38:43.998 b = 2005-07-07 04:38:44.002 The answer should be: 4 How can I find it using vba code? I saw the "datedif" function but the units don't have milisecond option.. In...
  4. EfratS

    pop/push to array

    ok, let me rephrase my question: The size of my array is dynamic - it'll be changed during the running time: If certain condition is true - I want to add element to my array. If another condition is true - I want to remove the elements from the array in FIFO order until it'll be empty. The way...
  5. EfratS

    pop/push to array

    Is there a convenient way to push/pop element to/from an array in vba? Thanks!
  6. EfratS

    query table structure

    Hello all, What is the sql query for getting some table's structure? (field name, field type etc..) Thanks!
  7. EfratS

    compare hex variable to certain value

    tried this also...doesn't work.
  8. EfratS

    compare hex variable to certain value

    Hello, I'm trying to run the following code: $found = 0; $posCount = 0; while (!($found)){ $b = substr($callBuf, $posCount, 24); $data = unpack('H24',$b); if ($data == "0000001d0000000700000001"){ $found = 1; } else{ ++$posCount; } } $callBuf contains binary data that were...
  9. EfratS

    assign 2-dim array to other array - unclear behaviour

    hello, I'm tring to assign 2-dim array to another array with the following code: @tmpArr = @originalArr; The unclear behaviour has been detected with this code: print "here: @{$originalArr[1]}\n"; ${$tmpArr[1]}[0] = 111; print "here: @{$originalArr[1]}\n"; The originalArr value in cell...
  10. EfratS

    sort hash by dates

    Hi, How can I sort hash by date? Thanks..
  11. EfratS

    Get the date of the day before

    Hi, Is there a convinient way to get the privious date before any given date? example: the given date: 01/07/2004 the privious date: 30/06/2004 (the wanted output) Thanks.
  12. EfratS

    number of keys in a hash

    Hi, how can I know the number of keys I have in a hash? Thanks.
  13. EfratS

    "mod" operation in perl

    Hello, Does someone knows how can I implement the "mod" operation in perl? meaning: x= 5 mod 2 x = 1 thanks.
  14. EfratS

    Open web page with perl script

    When I'm trying to run your first suggestion, the following error message appears: "Undefined subroutine &main::redirect called" Do I need to insert any "use" ? Thanks!
  15. EfratS

    Open web page with perl script

    Hello, Does someone knows how can I simply run URL throw my perl code? To be more specific: I want that the last row in perl script will open the www.google.co.il web page, and then the script should be terminated. thanks.

Part and Inventory Search

Back
Top