Search results

  1. W

    Two dropdown list boxes accessing values

    ex I am trying: box1 : 22 33 44 box 2: ayz888 bbbccc dddddd Now in box 2 they select : ddddd which is item number 2 I want to select 44 from box 1
  2. W

    Two dropdown list boxes accessing values

    I have two dropdown list boxes I select the first one and I get the index value of what i selected say item number 2 Using that indexvalue I would like to acccess the second dropdown box and get the value of it Both boxes will have the same amount of items in it Is there not a way to do...
  3. W

    Enter key press and button OnClick event firing

    Okay changed this property: UseSubmitBehavior = false now when I hit enter it does not go in my button on_click event Another one: when ever you hit <enter> it always goes to the server? seems like it will execute load_page event, any txtLoadEvent? I noticed I can check if it is a postback...
  4. W

    Enter key press and button OnClick event firing

    I am using visual web developer right click the button and properties comes up where would this property be I don't see anything that says default Thanks for anymore help
  5. W

    Enter key press and button OnClick event firing

    Have a form with a button and some text fields on it When I hit enter after filling a field the event for the button fires up event onClick How can I get around this since on one of the fields I have a textchangeEvent I to fire up Why would this occurs?
  6. W

    combining Xcell sheets into one HOW

    I found this code to copy all sheets ina spreadsheet into one It works until a certain limit and then stops I don't know much about vba excel so any help would be appreciate I have 4 sheets and trying to combine them all into one sheet Sub Combine() Dim J As Integer On Error Resume...
  7. W

    Created a function Cannot get it to work

    type error =returnDate([Date1],[Date2],[Date3]) It gives me an error Any of these passing fields can be null It seems the function will not accept them
  8. W

    Created a function Cannot get it to work

    I actually pass three dates and the dates are from a table which can contain null When I pass a date that is null it doesn't work This is what I have =returnDate([Date1],[Date2],[Date3],[Date3]) is on the control source of the unbound field in a form it gives me an error Function: Public...
  9. W

    Created a function Cannot get it to work

    I have created a function to check for three dates passed in Which ever one is not null return that date I call the function from a form for an unbound field I set the control source of the unbound field to call this function Anyone of the dates can be null Can't I not pass down a null...
  10. W

    Subreport in Report Fotter

    Well got it to work the link Now how can I not print the page heading from the report? I have p[laced the subreport in the report footer of the main report I don't what the page heading of the mai report to print anymore Is there a way to supress that
  11. W

    Subreport in Report Fotter

    I have placed a sub-report in the Footer of the main report This subreport is a report all on its own. I would like to have it run after the main report finishes so i put it there Is there another way to call this subreport after main report finishes? Also I get the Page header of the main...
  12. W

    Eliminating repeated data in detail lines

    Is there a way to print out first detail line with all the info for that line Subsuent lines have the same data as first detail line except for some fiels that might be different I woul;d like not to [print the fields that are the same Is there a way to do that in Crystal
  13. W

    Cystal Syntax question

    Thanks for the response I believe that is correct. I like to use basic syntax instead
  14. W

    Cystal Syntax question

    Have this syntax WhilePrintingRecords; numberVar Discountable; if (Datbase.Field1 = 1 ) then Discountable := Discountable + (Datbase.Field2 * Datbase.Field3) else Discountable := Discountable Question: Is := the same as an = syntax in Basic syntax...
  15. W

    Grouping By: Does not bring linked field in reportl

    I have two databases: Sales and Customer I do an outer join on Sales to Customer to select customer name I group my report by sales-nbr. The group then should show the customer name for that sales-nbr On the first one it does, but after the next groups of sales-nbr, the customer names is...
  16. W

    Converting Julian date to Normal Date

    In my database (Btrieve) there is a field stored as a Julian Date, actually stored as a number which represents a Julian Date I am trying to do a DATEDIFF function with this date and it says I need a date How do I change that Julian Date to a normal Dtae field Any help is appreciated
  17. W

    The 'Select Case' statement

    Okay, all these different languages do it slightly different. will try with or thanks
  18. W

    The 'Select Case' statement

    I have a a case Stament: Select case (userid) case 'AA' formla = 10 case 'BB' formula = 15 case 'CC' case 'DD' case 'EE' formula = 20 case 'FF" formula =25 end case If my value i cc or dd or ee I do not get the value...
  19. W

    Grouping gives different results everytime I refresh report

    I have created a report that groups customer names within territory. Each customer belongs to a territory. Each customer has many invoices which I want to list So I select customers based on a Territory they belong to. I use a Prompt paramater to select which Territory I want to report...
  20. W

    Linking tables

    Problem was that I did not have Cyrstal XI service pack#1 and #2 installed. There was a bug with Crystal itself
Back
Top Bottom