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!

Search results for query: *

  • Users: ratjetoes
  • Content: Threads
  • Order by date
  1. ratjetoes

    Return Table A or Table B based on condition

    Hi, I would like to know what the best approach is to return a table based on a condition. For example i have a table which has current orders, let's call it ORDERS_CURRENT. I have another table with the same signature called ORDERS_HISTORY. Now when i need to retrieve orders i can do this...
  2. ratjetoes

    How to set the vertical scrollbar on a ListView

    hi, I would like to know how I can set the vertical scrollbar position on a ListView. I have a ListView which resembles a TreeListView. When you expand a node, the ListView is cleared and the extra items are added (I do not use Insert and Remove for specific reasons). What I would like to...
  3. ratjetoes

    Xsl Fo border not showing correctly

    hi, i've got a weird problem. when i define a left border on a table-cell using border-left-style=solid, it shows the left border (as expected) on all table cells. but if i define a right border on a table cell using border-right-style=solid, only the right border on the most right table cell...
  4. ratjetoes

    Capture Up, Down event DateTimePicker

    Hi, I would like to raise an event from a custom DateTimePicker when an user clicks the Up or Down button (with the distiction of Up/Down). I know normally the OnValueChanged event is raised. In my example I have a custom format (dddd) which only shows the day. So the Up/Down buttons do not...
  5. ratjetoes

    Select max 1 record per grouping

    hi, i need to create a query which only returns one record per grouping. for example: TABLE_X FIELD_A FIELD_B FIEL_DATE_TIME Something like this: SELECT FIELD_A, FIELD_B, MAX(FIELD_DATE_TIME) FROM TABLE_X GROUP BY FIELD_A, FIELD_B Thing is, i need the MAX(FIELD_DATE_TIME) being...
  6. ratjetoes

    NVL(7.50, 0) or TO_CHAR(7.50, 0) give 7.5 instead of 7.50

    Hello, I created a function which calculates using significant numbers. For example, when you add 65 + 2.17 the result would be 67. Or 6.221 * 5.34 = 33.2. The problem is however, when I have a number which has an ending digit of 0, it get's lost in the conversion. Therefor, if you use 7.50 and...
  7. ratjetoes

    Compare current value with previous parent node in xsl

    hi, i have a xml document like this: <Row> <Column>Value A</Column> <Column>Value B</Column> </Row> <Row> <Column>Value C</Column> <Column>Value B</Column> </Row> Now i would like to print the rows as: Value A Value B Value C .. If the current value of the column is the...
  8. ratjetoes

    join problem

    hi, i built a join clause like this: select * from (select p.ZID from tbl_P p where p.EID=4) ps inner join (select * from (select t.ID from tbl_T t where t.TCode='EN') ts inner join tbl_PT pt on ts.ID = pt.ID) pj on ps.ZID=pj.ZID is says field ID is double in pj, how should i...
  9. ratjetoes

    checking for empty data from within .net

    hi, i want to check if the report has empty data so i can display a custom message instead of showing an empty report. t.i.a., ratjetoes.
  10. ratjetoes

    Unable to connect: incorrect parameters ms access

    hi, after installing sysdb32 from seagate (secure database) i can't connect to my ms access database anymore, though it has no security set. what can i do? t.i.a., ratjetoes.
  11. ratjetoes

    Calculating accumulate values on group level

    hi, i want to show the accumulate values at group level in the report. ex. subtotal week 38 100 100 subtotal week 39 25 125 when u drill down on a week u see the orders by day, plus accumulated using a running total. i wanted to use a running total for showing the accumulated subtotals...
  12. ratjetoes

    Passing parameter values to Command

    hi, i'm a total newbie on crystal reports, and i've got a little problem passing the values of a parameter (created in crystal reports 9) to a command. the command exists from a query like this: select a.c, b.d from c inner join b on c.x=b.x where a.y=PARAMETER group by b.d how can i assign...
  13. ratjetoes

    Exists clause in Sql Expression Field

    hi, i've got a little problem. i've written a sqlstatement using an exists clause. ex. select c.a, o.b from .order o left outer join customer c on c.id=o.id where not EXISTS (select u.c from uitval u where u.x=o.x) the error it returns says that the subquery can return more than one...

Part and Inventory Search

Back
Top