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: pump
  • Order by date
  1. pump

    Help!... Error Deleting Records

    When I use: delete from marcas where marca='GRA'; I get the error: pqReadData() -- backend closed the channel unexpectedly. This probably means the backend terminated abnormally before or while processing the request. The connection to the server was lost. Attemping reset: Failed. Can anyone...
  2. pump

    Perl: http cookies

    If a cookie is secure defines whether or not you want to restrict the transmission of the cookie to a secure server. If this flag is set to '1', by default the cookies you create will only be sent to secure servers by the client. A cookie is marked secure by putting the word secure at the end...
  3. pump

    don't know how to write array

    @ARGV contains the Arguments Given at the command line. perl myscript.pl argument1 argument2 The arguments here are argument1 and argument2 I don't know if you can modify this array.
  4. pump

    Perl: http cookies

    Eclipse: 1) Yes, a cookie can be limited to a specific domain or a specific path on a domain. 2) Yes: &delete_cookie("name1", "name2"); delete_cookie will delete cookies of the given names. It does so by setting the expiration date in the past so that the browser will...
  5. pump

    How to send emails from a VB application

    Well, I'll try to write it next week. I have a lot of work for now.
  6. pump

    How to start dowloading from a CGI script?

    Somewhere in the script, where you wish to have the script send the visitor, once they have submitting the form insert: print "Location: http://www.somewhere.com/file.zip\n\n"; This must be called before you print "Content-type: text/html\n\n";
  7. pump

    I want to have Get URL open a new window and size it?????

    On your page: <script LANGUAGE=&quot;Javascript&quot;> <!--// function yourfunc() { // put your javascript code here } // --> </script> On your flash: On Click Get Url (&quot;Javascript:yourfunc()&quot;) End
  8. pump

    How to send emails from a VB application

    You can do this with Microsoft Winsock Control 6.0 Usage: SendEmail EmailServer, FromName, FromEmailAddress, ToName, ToEmailAddress, EmailSubject, EmailBodyOfMessage General Declarations __________________________________________________________ Dim Response As String, Reply As Integer...
  9. pump

    Perl: http cookies

    What is a cookie? A cookie is a chunk of information that you're allowed to save on a client computer. Normally, for security reasons, you are not allowed access to computers that visit your web page. However, cookies are an exception that allow you to save information on someone's computer in...
  10. pump

    Auto Cursor in ListBox

    Private Sub Command1_Click()<br>&nbsp;&nbsp;&nbsp;&nbsp;List1.SetFocus<br>End Sub<br><br>

Part and Inventory Search

Back
Top