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 Mike Lewis 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. justinpl

    Using ASP to print to a LABEL PRINTER...

    Does anyone have any suggestions on how to do this... I would like to add certain information and then print on each submit to a label printer... thanks, Justin
  2. justinpl

    help displaying double quotations in a string

    From some reason when I pull a value out of our access d.b. that has the double quotation mark ("), asp stops processing. Is there a way to display the (") and the rest of the variable... here is what i have: ... WHILE NOT RS.EOF SQLString3 = "SELECT * FROM ExtraValues WHERE TransmissionType...
  3. justinpl

    problem with a form enctype="multipart/form-data"

    I am trying to upload an image file from the user and have to use the enctype="multipart/form-data" in the form. The problem is I have a variable that is generated from a checkbox. So if the user checks multiple options for the checkbox the value should read value,value,value,etc... For some...
  4. justinpl

    .DBF Sharing Violation

    I custom built .asp pages to read from a live .DBF file to get real time quantity and such. The .asp pages are working great. There is also an internal system built with clipper that accesses the same .DBF. Every time we run the .asp page the same time we access the .DBF through Clipper we get a...
  5. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    thanks for the reply. i did start using the foxpro drivers and that seems to work. now i am getting a database sharing violation. the .asp work great all the time, but the internal clipper program is getting the error.
  6. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    thanks so much for your help!!! that was easy... its working great now thanks...
  7. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    thanks for your help!!! that was easy..
  8. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    ASP Connecting to a .DBF Table w/ associated .FPT Issue I am using ASP to connect to a .DBF Table. The .DBF file is created by either FOX PRO, ADVANTAGE DATABASE SERVER, OR CLIPPER. The .DBF Table can be opened in ASP by using the following code...
  9. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    I am using ASP to connect to a .DBF Table. The .DBF file is created by either FOX PRO, ADVANTAGE DATABASE SERVER, OR CLIPPER. The .DBF Table can be opened in ASP by using the following code: --------------------------------------------------- cDataBasePath ="Provider=Microsoft.Jet.OLEDB.4.0;"...
  10. justinpl

    ASP Connecting to a .DBF Table w/ associated .FPT Issue

    I am using ASP to connect to a .DBF Table. The .DBF file is created by either FOX PRO, ADVANTAGE DATABASE SERVER, OR CLIPPER. The .DBF Table can be opened in ASP by using the following code: --------------------------------------------------- cDataBasePath ="Provider=Microsoft.Jet.OLEDB.4.0;"...
  11. justinpl

    ENTER NETWORK PASSWORD dialog box keeps popping up?

    I wrote a submit form and function that inserts the data into a DB. When some users submit they get the ENTER NETWORK PASSWORD dialog pop up box. When they click CANCEL it INSERTS the data and sends them to the confirmation page, as normal. I have the INTERNET_GUEST accounts set to...
  12. justinpl

    Problem sending Email Internally when External Email is blocked...

    I am using CDONTS and for some reason no one internally is getting emails, where I am still getting the same emails to my hotmail account when I send them there. We have the incoming email disabled on the network. It seems like CDONTS sends out through the SMTP and when it trys to come back in...
  13. justinpl

    Can GLOBAL.ASA work in directories other than the wwwroot?

    Can global.asa work in directories other that the wwwroot? This company installed FrontPage on there server and have built a few cheap applications. When they installed F.P. it created the Global.asa file and is filed with a bunch of F.P. crap. I created my own directory to build and house the...
  14. justinpl

    i monday Access Date issue...

    i meant to say A Monday Access Date Issue...
  15. justinpl

    i monday Access Date issue...

    I created a SELECT statement that querys an Access database and having a problem with the Date field. When the Access field data type is Date/Time set to Short Date I am having problems selecting any of the dates. Example: I do a "SELECT * FROM Corrective_Data WHERE Date = " &...
  16. justinpl

    Advanced FormatDateTime Issue - Help needed

    Thank you guys a ton!!! That worked great...
  17. justinpl

    Advanced FormatDateTime Issue - Help needed

    FormatDateTime(&quot;11/05/2003&quot;, 2) will equal 11/5/2003 11/05/2003 and 11/5/2003 are not read the same way in .asp The problem: <% If FormatDateTime(&quot;11/05/2003&quot;, 2) > FormatDateTime(&quot;11/12/2003&quot;, 2) Then %> YES <% Else %> NO <% End If %> This code states that...
  18. justinpl

    ASP Date Format Problem

    I am trying to format my date variable as mm/dd/yyyy which is standard for the function FormatDateTime(Now(), 2). The problem is when the date is 11/05/2003 this function will strip down to 11/5/2003, which is incorrect when doing a greater than or equal to statement. Ex: 11/5/2003 >=...

Part and Inventory Search

Back
Top