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: *

  • Users: Firemyst
  • Order by date
  1. Firemyst

    $_REQUEST issues

    Daniel, How do I turn the error reporting on and off as you suggested? Thanks!
  2. Firemyst

    $_REQUEST issues

    Hey everyone, Yes, I do use the backets. I just put up the snippet of PHP code. As for the javascript option -- it's not possible. We're not allowed to use javascript to check. So everything has to be on the PHP side. If the PHP developers are reading this, I should just be allowed to do...
  3. Firemyst

    $_REQUEST issues

    Hi there, I have multiple PHP 4 scripts which set variables in the program similar to: $r_admin_email = $_REQUEST["admin_email"]; where $_REQUEST["admin_email"]; is obviously passed in through a form. However, there are times when this value is not passed along. Then the...
  4. Firemyst

    Unanswered question -- can anyone help?

    Hey there, Yes, I've tried posting this thread with a subject more related to the issue. However, those threads generated absolutely no responses (for the latest, just look under Tuesday's postings). One would think there'd be an API to determine if a machine is locked, but I couldn't find...
  5. Firemyst

    Unanswered question -- can anyone help?

    Hi there, I need to be able to tell if an NT user has their machine "locked" -- where they hit "ctrl-alt-delete" and select "lock workstation". Is there any way to do this using VB6? Thanks!
  6. Firemyst

    Is there a way to tell if a machine is "locked" in VB6?

    Hi there, I need to be able to tell if an NT user has their machine "locked" -- where they hit "ctrl-alt-delete" and select "lock workstation". Is there any way to do this using VB6? Thanks!
  7. Firemyst

    A way to add graphics to a list box?

    I currently have a list box that allows multiple selections and the style is set to "checkbox". Is there a anyway to add any sort of graphics to the list box? Either next to each list item, in the background, or anywhere else? Thanks
  8. Firemyst

    Multiline text field not accepted carriage returns?

    THanks! Your code worked! :)
  9. Firemyst

    Multiline text field not accepted carriage returns?

    Hi there, I have a multiline text field which is not accepting carriage returns. I have the lock property set to false. When I hit the carriage return ("enter" key), it clears the text in another multiline text field I have set as locked. Does anyone have any ideas on what I may...
  10. Firemyst

    How can I have multiline text auto-scroll to the bottom?

    Thanks! Your suggestion works perfectly!
  11. Firemyst

    How can I have multiline text auto-scroll to the bottom?

    Hi there, I have a multiline text field which contains status messages. Everytime a new status comes up, it's appended to the text field. Unfortunately, the scrollbars always seem to reset to the top. How can I set it up and/or program the text field so that when a new status is appended...
  12. Firemyst

    Does VB 6 allow for any sort of threading?

    So I can have multiple processes working in parallel which do not interact with each other?
  13. Firemyst

    A way to tell if a machine is locked in VB6?

    What I need to do is see if the user currently logged in has their machine locked or not. If their machine is locked, it means they might not be around and thus I cannot execute certain parts of my application. So somehow I need to be able to tell. Any help would be appreciated. Thanks!
  14. Firemyst

    A way to tell if a machine is locked in VB6?

    Hi everyone, In VB6, is there a way to tell if a user has their machine "locked"? If so, how? Thanks!
  15. Firemyst

    Is there a VB function similar to "net send"?

    Hi everyone, Is there a VB6 command that works similarly to: net send userid message so launching the shell isn't necessary? If so, what is it? Thanks!
  16. Firemyst

    How to execute DOS commands from VB?

    Hi everyone, I'm writing a VB6 application, and need to have it execute the DOS "net send userid message" command so that the particular user "userid" who's logged into the network will receive the "message" in the popup box on their workstation. Can anyone please...
  17. Firemyst

    How to determine is a user is logged in to the network?

    Hi everyone, I'm writing a VB6 application and need to know how to be able to determine if a user has logged into the NT4.0 network. There are multiple machines, so the user may not always log into the same machine. But I need to know if the user is logged in somewhere. Is there a way to do...
  18. Firemyst

    HASH issues

    Hi there, I have the following hash data structure. I have two issues: 1) how do I add to it? 2) how do I reference the lowest level array values from it? For example, if I want to add another "test" value in the "heading" key of the "datestamp1" key of the...
  19. Firemyst

    PERL and Windows NT

    From my experience, using Active State's Active Perl, unless you use specific Unix perl functions, most of what you read/write is good on Windows as well. The biggest difference is that on Windows, you hardly ever have to use the: #!/usr/loca/bin/perl as the first line if you're running IIS...
  20. Firemyst

    Text parsing question

    Carg: The syntax error is because there's no ending semicolon ";" on the line before: print "$SuccessCount records found.\n" That should work for you now. :-]

Part and Inventory Search

Back
Top