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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Katya85S

  1. Katya85S

    "Error on page" in date/time comparison

    Thanks to both of you.
  2. Katya85S

    "Error on page" in date/time comparison

    I’m trying to apply javascript Timer I found on the Internet. That script works perfectly, but when I added my script lines to that code I got “Error on page” message on the status bar. What I’m trying to do: compare value from aspx’s textboxes txtEndDay and txtEndHour with system’s current Date...
  3. Katya85S

    Long Integer does not allow over 9 digit numbers. A way around?

    In access table i need a field that exceeds 9 digit numbers. And the field has to be a number-field, as the percentage will be calculated against this number. When i'm entering an over-9-digit-number i receive an error message: the value you're entering isn't valid for this field. For example...
  4. Katya85S

    EditCommandColumn and ItemCommand in one DataGread

    Thanks much! Encouraged by your answer (which meant to me that both features should work in one datagreed and that i should look up an error in ItemCommand sub). My error was there. thank you jbenson001 :)
  5. Katya85S

    EditCommandColumn and ItemCommand in one DataGread

    I need a few buttons in my DataGreed. One should work to edit record content (EditCommandColumn would be perfect for this functionality with its onEdit, OnUpdate and OnCancel commands features), and other buttons should perform functions different from editing, for which ItemCommand would do the...
  6. Katya85S

    Any formulas to get read of comas in numeric field?Right click->Format

    And thank you guys, Ian and Brian, for your posts. they work greatly and i believe are more efficient then my SQL Expresion Field. Thanks much!!!
  7. Katya85S

    Any formulas to get read of comas in numeric field?Right click->Format

    I got it. Thank you all. I have created SQL Expresion Field convert(char,right(10000000000+myNumericField,9)) and then applied this one to a picture function.
  8. Katya85S

    Any formulas to get read of comas in numeric field?Right click->Format

    Any formulas to get read of comas in numeric field? Right click->Format Field won't help. To be particular, below is what i need in the project: I want to display numeric field in xxx-xx-xxxx format. The formula, lets call it @myFormating used is picture (cstr({myNumericField}), "XXX-XX-XXXX")...
  9. Katya85S

    Can we pass a Parameter to a Stored Procedure?

    Crystal XI does it too :) Thank you Madawc! :)
  10. Katya85S

    Is it a MIN function?

    Many thanks to you guys! George, a special thank for your explanation in the second post. I appreciate it very much.
  11. Katya85S

    Is it a MIN function?

    The select query consists of number of INNER JOINs and brings several records per CustomerAccount different by 2 fields: Day field and Balance field. What I need is: 1 record per customer. The record should have the lowest balance of the selected Customer and the earliest day. I thought min...
  12. Katya85S

    Can we pass a Parameter to a Stored Procedure?

    Is there a way to pass reports (Crystal XI) parameter to a stored procedure which is the report’s data source? Thank you all in advance :)
  13. Katya85S

    How to get the first row in combobox blank

    Great! many thanks pwise!
  14. Katya85S

    How to get the first row in combobox blank

    Thanks much guys!!!
  15. Katya85S

    How to get the first row in combobox blank

    Hi guys. How do I get the first row in combobox blank. It's row source is a Select statement of a table: Select ID, Field1 from tblTable order by Field1. The combo box displays the Field1 value, starting from an 'A', but i need it to be a blank unless user specifies otherwise. thank you all in...

Part and Inventory Search

Back
Top