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 Chriss Miller 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: NEVERSLEEP
  • Content: Threads
  • Order by date
  1. NEVERSLEEP

    list-view ¦ tree-view ¦ WM_NOTIFY ¦ help?

    Greetings, im writing a simple chat application, in this one, i wish to make a 'buddy' list. (comparable to msn messenger) My 1st attempt was using a List-view control. (allowing me to make a 'list' and add diferent icons) All when well, except for the moment i wanted to do a right click menu...
  2. NEVERSLEEP

    vc6++ pro, stupids questions ...

    how can i switch from c++ to c my hole (new) project ? *1 how can i determine the asm optimization ? *2 *1, ie use .c files (from the vc 'new' menu) and use C intead of c++ *2, my application will only run on a x type of cpu how can i tell this to the compiler, to optimize for this type of cpu...
  3. NEVERSLEEP

    regex question

    lets say i have this simple regex &quot;aYEPb&quot; to &quot;bYEPa&quot; $r =~ s/a(.+?)b/b$1a/gi; now how can i do &quot;aYEcNOPEcPb&quot; to &quot;bYEPc&quot; hope im clear, thanks for the help <-- --------------------------------------- someone knowledge ends where someone else knowledge...
  4. NEVERSLEEP

    Home Made Modules Volontary Abort Compilation ?

    hi just a question regarding home made modules : lets my module is : package somemodule; sub somesub { print $_[0]; } 1; so the script : #!perl -W use somemodule; somemodule::somesub('hello'); will print hello ok how can i make my module abort compilation if in somesub $_[0] is not defined...
  5. NEVERSLEEP

    Perl Tk notebook entry focus trouble ...help !

    Greetings all, Im having a trouble with a perl/Tk app of mine im trying to ...well let me explain first $nb is a Notebook widget $entry is a Entry widget ($p1->Entry ...) so im trying to set the focus on $entry each time $p1 is raised i thought it would have been easy ... but i didn't found a...
  6. NEVERSLEEP

    perl\tk $entry-&gt;configure(-show =&gt; 'NORMAL') ???

    hi i was just wondering if any of u know how to configure back a Entry widget 'show' ? let me explain : i have an entry box (no show option on declare) then i 'protect' this field on user request sub { $entry_widget->configure(-show => '*'); } now all data entered in the $entry_widget are * (but...
  7. NEVERSLEEP

    PERL NETWORKING APP IN WIN32

    I need to get my self i book and i dont want to pay for only 10 pages ... the book im seeking is a book that speeks : - of perl (dah) - Networking application (tcp/ip) (client/server) - in the world of win32 (NT) any one have a tip ? i looked a this one below but ..only one chapter...
  8. NEVERSLEEP

    IO::Socket fork win32 bug ? or i su......

    # hi , im having problems with fork on : # nt , perl 5.6.1 built for MSWin32-x86-multi-thread # the fork is in a simple sender/receiver 'client' # the bug : # when the 'client' send a message it freeze # server dosen't receive until abort of client ???? # below are the bogus parts....any tip...
  9. NEVERSLEEP

    p4 auto shut down ?

    hi i also asked my question in this thread616-277750 i was just wodering if any one ever been &quot;auto shutdown&quot; ? this has happened to me twice losing data.. (win2k create a FOUND.00x folder..) - is anybody know if there is a auto-shutdown on cpu overheat? - if so is there a...
  10. NEVERSLEEP

    p4 auto shutdown ?

    hi i was just wodering if any one ever been &quot;auto shutdown&quot; ? this has happened to me twice losing data.. (win2k create a FOUND.00x folder..) - is anybody know if there is a auto-shutdown on cpu overheat? - if so is there a &quot;datafile&quot; or something telling me what is going...
  11. NEVERSLEEP

    using tk simple -&gt;geometry question

    hi i just want to know how to center a tk application or get the screen width & height curently i use a geometry method to place it on the screen use strict; require Tk; use Tk; my $main = new MainWindow # ... $main->geometry('+30+100'); #... --------------------------------------- someone...
  12. NEVERSLEEP

    two question on win32 machines

    1: on my 2kpro machine... print $^O; # returns MSWin32 how can i be sure the client os is 2k ? 2: how can i use the Open($Register,$hkey) here to display all sub directory also. this must also apply to GetKeys & GetValues methods here what i got (this dont do sub! please optimize my...
  13. NEVERSLEEP

    help me with this

    i wanted to show someone.... now im the one needing help [lol] on perl -c &quot;find.pl syntax OK&quot; on run infinite time those two error Use of uninitialized value in numeric eq (==) at C:\Documents and Settings\Administrator\Desktop\fin d.pl line 30, <stdin> line 2. Use of uninitialized...
  14. NEVERSLEEP

    code only code that draw a circle ?

    can someone show me how to create a circle NOT using some image tricks... thanks --------------------------------------- someone knowledge ends where someone else knowledge starts
  15. NEVERSLEEP

    store perl -c result into a array

    lets say u do $value = system($command); it will return a 0 or 1 depending if it succed so i was wondering how to store @value = ?????('perl -c $file'); # so that $value[0] contain the 1st error and so on... thanks again (...i keep saying that to u guys [lol])...
  16. NEVERSLEEP

    use console ?

    im trying to get the 'dos buffer height' max i have read C:\Perl\html\site\lib\Win32\Console.html and dont seem do get it done... what i am to achive is like this example #!perlpath $file; # lets say there is 3000 lignes in this file open(FILE, &quot;$file&quot;) || die &quot;\ndead $!&quot...
  17. NEVERSLEEP

    batch / perl

    in perl is there some variables like 'batch' %windir% ? if so can someone point me to some doc of available vars thnka again --------------------------------------- someone knowledge ends where someone else knowledge starts
  18. NEVERSLEEP

    perl (not cgi's) progress

    lets say u have a program than does x time a operation how can show i progress (like &quot; 12 % done &quot; etc..) without doing something like : &do_operation; print &quot;1 % done&quot;; &do_operation; print &quot;2 % done&quot;; etc... cause this could b false (say the operation are not the...
  19. NEVERSLEEP

    server hardware

    lets sat tomoromow i win the loto can someone show me a link to buy freak servers multiple cpu, xxxG rams etc. thanks someone knowledge ends where someone else knowledge starts
  20. NEVERSLEEP

    just a question

    if i have a cgi that somewhere in the code open a file , read it , return the value if two users request my cgi will there be a problem like file violation or something if so can some point the route to resolve this ? thanks someone knowledge ends where someone else knowledge starts

Part and Inventory Search

Back
Top