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 strongm 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. damgog

    Trouble with nsqlprep

    I am using SQL Server 2000 on Windows 2000, and I am trying to get embedded sql working. I am also using the djgpp c compiler from delorie.com. When I run the sqlprep utility on one of the examples that comes with sql server, example1.sqc, I get the following: gcc.exe: /E: No such file or...
  2. damgog

    C Compiler

    Can anyone point me to a good C compiler that will run on Windows 2000. It must be free, easy to install and run by command line (no IDE). Thanks.
  3. damgog

    Automatically save email attachement to file

    Is there a way that I can include some visual basic when sending an email, so that when it reaches it's destination, the attached file is automatically saved to a particular folder, without knowledge of the recipient. Thank you.
  4. damgog

    submit button - onclick

    I have a followup question to this. If I have a form, whic does not have a submit button, but it has a button with an onClick event. This should run a vbscript function to submit the form. At the moment, it successfully runs a javascript function. The header of my form is as follow: <form...
  5. damgog

    XMLDOM object error

    I figured out the error. The xml was beign returned properly, but the error occured because of the header on the xml document, ie an invalid tag. I stripped that off and it works fine now. Thanks
  6. damgog

    XMLDOM object error

    I am using an XMLDOC object to get values from an xml document, using the following code: Set rtnDoc = Server.CreateObject(&quot;Microsoft.XMLDOM&quot;) rtnDoc.loadXML(xml.responseText) Set nodes = rtnDoc.documentElement.childNodes , but I keep getting the following error: Error...
  7. damgog

    submit button runs function after submit

    I can refresh and then submit fine, but I would like the page to refresh after the submit. When the submit button is clicked, the user is not redirected. They remain on the current page, but the form information is posted to another page, which performs some operations. I would like one of the...
  8. damgog

    submit button runs function after submit

    I have a frames, and a form with a submit button. When the user clicks the submit button, I would like the form details to be submitted and one of the frames (not the one with the form) to be refreshed. Any way to do this? Thanks
  9. damgog

    Query IF..ELSE problem

    I am new to SQL so please be gentle. I have three tables A, B and c. I am selecting from a JOIN on these three tables. There are three cases: if value1 in A > value2 in A do something, ie. UPDATE tables A, B and C else if value1 in A = value2 in A do something else else if value1 in A <...
  10. damgog

    visual basic automatically run when email received

    I am not very experienced with visual basic and I hope that someone can help me. This is the situation: When an email is received from a particular source, I would like the attached file to be saved in a particular folder, eg. c:\attachments. This should happen automatically, and the user...

Part and Inventory Search

Back
Top