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 SkipVought 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. gremolin

    Dell P780 - 1280x960, 85 Hz

    Hi, I have a Dell UltraScan P780. By manifacture specification this monitor can do: 1024x768 - 85 Hz. 1280x1024 - 75 Hz. 85 Khz max, 120 Hz max. There is no anything for 1280x960. I am with Linux Slackware 10, Xorg 6.7. My video vard is Gigabyte Vanta 16MB RAM. In this moment I work at 1280x960...
  2. gremolin

    Scope of variable

    I found how to do what I want. thank you ;)
  3. gremolin

    Scope of variable

    Hi, I have a packet, in which i have declarated a hash %some_hash : package some_package; my %some_hash = ( key1 => val1, key2 => val2 ); within a function from this package I am calling an other function which is in other package sub _function { require the_other_package...
  4. gremolin

    a regexp problem

    I try this and it is OK now, thank you. I was scared that if a_word -> some1 that 1 will become $2. But this state will never happen in a_word.
  5. gremolin

    a regexp problem

    Hi, so, I want to do this: I have a string like this 'a_word digit_1 digit_2' a_word is always required, digit_2 cannot be there without digit_1 I have a three states of string: 1 - 'a_word' 2 - 'a_word digit_1' 3 - 'a_word digit_1 digit_2' I want to use a regular expression to catch a_word...
  6. gremolin

    Why DAY(some_column) truncate lead zero ?

    thanks, I resolve my problem. DATE_FORMAT() is more powerfull from CONCAT()
  7. gremolin

    Why DAY(some_column) truncate lead zero ?

    hi all. I have a problem with a date extraction. In a table I have a date column. I want to take the rows in which the value of this date column is after, for example, 1 December, no matter of year. Like EXTRACT(YEAR_MONTH FROM some_column) function do, I concatenate like this select * from...
  8. gremolin

    I need help with my cookies

    www.car.bg, but it's still a new site, and there is no usefull information at all. I work on this:-)
  9. gremolin

    Perl Editors...

    Under Unix system I use XEmacs (And I don't want nasty word from Vi people:-) ), under Win I use Aditor Pro (It's amazing), Jext (but he get a lot of resources). I recomneted Aditor Pro, if you use Win.
  10. gremolin

    I need help with my cookies

    Hi again:-) You know, I have to write a login system for my site too. The first I have writed before a couple of months is not good enough. I'm sorry for my English, it is not good. So, for the new system I think to use cookies. But I don't want to write any information into a file at all. I...
  11. gremolin

    max function

    hm, I don't know such function in Perl, but you simply can use map for this: $max_value = 0; map { $max_value < $_ && $max_value = $_ } @array; or for cycle: $max_value < $_ && $max_value = $_ for @array; As you like it.
  12. gremolin

    I read the FAQ, but it don't work

    I'm sorry for this post. This is my second post for this think. I have found my error, and it's is funny error, but... :-)))
  13. gremolin

    I need help with my cookies

    try to see the value of this cookie, when created it and when retrieve it. after $cookie = { ... }; print MYDEBUGFILE &quot;COOKIE _VALUE: $cookie&quot;; and see if the value is what you want. I don't now whether the value of cookie may content symbol like '/'. I think is good idea to check...
  14. gremolin

    I read the FAQ, but it don't work

    Hi. This is about uploading files with CGI.pm. I read the FAQ for this, used the code posted there, and make some changes, but the main things are the same. This is the code who I use. Everyting work fine, but there is zero size of uploaded file. Can some tell me where I'm wrong, please. Thanks...
  15. gremolin

    I need help with my cookies

    ops, sorry, the correct syntax is ($get_cookie = $q->cookie('cookie_name')) or die 'no such cookie'; :-)
  16. gremolin

    I need help with my cookies

    try retrieving cookies like this way: $get_cookie = $q->('cookie_name'); I use it, and I don't have a problem. For sure may try ($get_cookie = $q->('cookie_name')) or die 'No such cookie';
  17. gremolin

    CGI.pm file upload problem

    I have problem with uploading files with CGI.pm. When I use $cgi->param(‘file_to_upload’) I got back as value the name of the file. But in the documentation it is written that the return value is a reference to file manipulator. I think that I couldn’t just open a file with the name which I...
  18. gremolin

    CGI.pm file upload

    Hi. I have problem with uploading files with CGI.pm. When I use $cgi->param(‘file_to_upload’) I got back as value the name of the file. But in the documentation it is written that the return value is a reference to file manipulator. I think that I couldn’t just open a file with the name which I...

Part and Inventory Search

Back
Top