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

    Text Limit for a Form Field?

    Is there a limit on how many characters that you can pass from a form? AJ [americanflag] Do you feel lucky?
  2. Gatorajc

    Passing a SP a Variable with multiple values.

    Just in case anyone has the same probelem. I got my answer probabaly should have posted this in the SQL Server Programming section. I just passed in the string as a varchar. set @String = '''' + Replace('TIRES_CAPS_WHEELS','_',''',''') + '''' Then put that in my query string. AND...
  3. Gatorajc

    Passing a SP a Variable with multiple values.

    I had previously posted a question (thread333-831424) regarding about how I would query Tires,Wheels,Caps. If I should break it up or was there something in SQL. Got a great answer WHERE YourCriteria IN(YourCommaDelimitedListOfSelectedItems) Well the problem I am now having is How do I get...
  4. Gatorajc

    Calling a SP with changing Parameters

    Not exactly a coding question more of a logic question. I have this shipping screen. It has a select/text box that you can make multiple selections. (its one of those Javascript codes where you click a button and it moves the choice from the left box to the right). Well when it submits it...
  5. Gatorajc

    Barcode Scanner throwing off Javascript

    Thanks Jeff, Yea I have to be better about commenting first. I fixed it. I took the alert out and went with something else.Works great now. The scanner probably has some return character at the end of its input causing the problem. Thanks for your time. AJ [americanflag] Do you feel lucky?
  6. Gatorajc

    Barcode Scanner throwing off Javascript

    Im having a wierd problem that may or may not be related to Javascript. I created the following script. It is a mixture of Javascript and ASP. The function is supposed to read a text field after the 13th character it either increments a text box or throws an alert saying the number was entered...
  7. Gatorajc

    Linking 3 tables

    Perfect AJ [americanflag] Do you feel lucky?
  8. Gatorajc

    Linking 3 tables

    I have 3 tables Orders pk OrderID CustId OrderItems pk OrderItemID fk OrderID fk productid qty Products pk ProductId ProductDescription I want to get this result CustID Qty ProductDescription Smith 4 Meter Thanks in advance. AJ...
  9. Gatorajc

    Getting duplicate entries

    What would the query be for getting a duplicate entry. ID DOCID DRFNAME DRLNAME 1 JSMITH Joe Smith 2 JSMITH Joe Smith 3 TJONES Thomas Jones I just want the JSMITH's Thanks in advance AJ [americanflag] Do you feel lucky?
  10. Gatorajc

    Function does not return value.

    Knew it was something simple thanks AJ [americanflag] Do you feel lucky?
  11. Gatorajc

    Function does not return value.

    Sorry no its on the server side also. It looks like this <% BillStatus = SetStatus() %> AJ [americanflag] Do you feel lucky?
  12. Gatorajc

    Function does not return value.

    I have been looking at this to long. Must be something simple I am doing wrong. Can anyone tell me why this is not returning a value. BillStatus = SetStatus() <% '----------------------------- FUNCTION TO SET STATUS ACCORDING TO DATE ---------------------------------- Function SetStatus()...
  13. Gatorajc

    .selected

    That worked also thanks. AJ [americanflag] Do you feel lucky?
  14. Gatorajc

    .selected

    PERFECT!!!!! Thanks for your help. AJ [americanflag] Do you feel lucky?
  15. Gatorajc

    .selected

    How would I go about getting a result like this? document.OrderItems.ACDV_BillStatus[0].selected = true The bold part is dynamic. I tried document.OrderItems.products[pcnt]_BillStatus[0].selected = true; This is what the function looks like function ChangeStatus(formname) { productlist =...
  16. Gatorajc

    Streaming Text

    That worked. AJ [americanflag] Do you feel lucky?
  17. Gatorajc

    Streaming Text

    Is there a new line or carriage return in ASP? Im trying to stream some parameters to a Java Applet. I Tried this but that is no good because it is reading the <BR> as part of the stream. <% Response.write "[HIGHLIGHT]"%><BR> <% Response.write "X = 824" %> So when all is said and done. It...
  18. Gatorajc

    Adjusting value based on even or odd number.

    I am trying to change a value based on if another variable is Even or Odd. Mod1 = "KX" ICD=25001 This variable changes This is the part giving me problems. I know this would not work just showing what I want to do. If (ICD=Odd) then Mod1 = "KS" End if Much Thanks in advance. AJ...
  19. Gatorajc

    Getting next number in sequence.

    Thanks for the help though. AJ [americanflag] Do you feel lucky?
  20. Gatorajc

    Getting next number in sequence.

    Sorry Sunil didnt thing about where I was posting this. It is a pervasive DB and the +1 sytax does not work. AJ [americanflag] Do you feel lucky?

Part and Inventory Search

Back
Top