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 Chriss Miller 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: Enea
  • Content: Threads
  • Order by date
  1. Enea

    Appending to a String

    I have the following: StringBuffer s=new StringBuffer(); s.append("add this"); If I want to attach "ing" to the word add, meaning I want to have s="adding this" how do I append in between characters?
  2. Enea

    StringBuffer length and how to edit the data

    I am learning about StringBuffer and have two questions: [1] I tried creating a new String using StringBuffer, initialize it and specify it's length using the following statement: StringBuffer s=new StringBuffer("Hi Gisela".length()); However when I do System.out.println(s); it does not...
  3. Enea

    Does BO retrieves the entire table first and then filters?

    When I run queries like the following in Business Objects: Select [field] from [table] WHERE [field] IN ('a','b','c'); Does BO retrieve the entire table first? and then filters 'a', 'b', 'c'? If that is the case, can I do anything to change that?
  4. Enea

    Java String class

    I am new to Java. I read the following: do not use the == operators to determine if strings are equal. It only returns true if the strings are stored in the same location. So..I opened Eclipse and tried the following with 2 ways of testing equality: public class TestingStrings { public static...
  5. Enea

    Business Objects question re: query speed

    When I run queries like the following in Business Objects: Select [field] from [table] WHERE [field] IN ('a','b','c'); Does BO retrieve the entire table first? and then filters 'a', 'b', 'c'? If that is the case, can I do anything to change that? The queries take a long time to run and I...
  6. Enea

    Calculating number of weeks between two dates

    I need to write a query that calculates the number of weeks left between today() and April 1, 2007. I wrote the following, but although it does not give me an error, it does not display anything: SELECT DateDiff("ww", now(),"April 1, 2007") AS Weeks FROM tblTest; I don't really need tblTest...
  7. Enea

    My calendar does not appear right away

    I have a form with a calendar. The on open event contains: DoCmd.GoToRecord , , acNewRec For some reason, the calendar does not appear as soon as I open the form, but if I put the cursor on the border of the form and resize it slightly, the calendar shows up. The form is much bigger than the...
  8. Enea

    Is it possible to display the results of a query in an txt box?

    I have created a little training log for myself. When I select an activity from a dropdown box I would like to immediately display a weekly total (time engaged) for that activity. I already have the query but what I would like to know is: is it possible to display the result of the query in my...
  9. Enea

    How do I reference an object located in a different project?

    I am new to Java. I created: Project: Learning Class: Bikes Now I just created a new project. I wish to create a new Bikes object called Motorino Bikes Motorino= new Bikes(model, color); How do I reference my class Bikes located in a different project?
  10. Enea

    Is there a way to copy a report from one Universe to another?

    I have a couple of Universes: one for Americas and one for Europe. They are a copy of each other. I have create a few reports in the Americas Universe; Is there a way to put a copy of my reports in the Europe Universe so I don't have to re-design them? Thank you in advance for your reply
  11. Enea

    May I have multiple users each with their own password?

    In an Access db, is it possible multiple users, each with their own password? Thank you
  12. Enea

    More than 1 field into one section? Is that possible?

    I have a report with name, dept, division ,telephone...etc. I set Name as Master so I have a section called Name. I wish to display information such as dept, division and telephone right next to the name. How do I do that? I don't wish to create a section for each field because that would take...
  13. Enea

    Is there a way for the users to Sort or filter reports?

    Is there a way for users to sort or filter reports while they are viwing them in webby? Thank you
  14. Enea

    How do I display only the first Top 10?

    I have a report with numbers in one column. I need to display only the top 10. How do I do that?
  15. Enea

    Set as master for a date/time field (removing the time)

    I have a date/time field I displaed the date only by using the format options however when I set the field as master, it displays one row at the time because it is not ignoring the time. How do I solve the problem? I am using BO 6.5
  16. Enea

    Can BO be used to read from MS Access Tables or queries?

    Is it possible to use BO with MS Access?
  17. Enea

    How do you create a report footer?

    Is there a way to create a report footer? (I have a page footer but I need a report footer as well). Thank you
  18. Enea

    Is there a way to display only the count?

    I have a simple table with 3 columns. Example: Company/Division/Order# I created a report and put a count in the order# column I now wish to show only the totals such as: ABC Marketing 25 Orders ABC Communications 21 Orders NBX Travel 3 Orders How...
  19. Enea

    Not in list

    When I wish to say: return all the records expect a and b for example. Do I use Not in List? if yes, how do I type the values? "a", "b" 'a', 'b' "a"; "b" ?
  20. Enea

    Date Time field

    I have a field which has date and time. How do I create my report so that users can say for example: give me all records From May 1 to 5 but only those from 11:00:00 to 14:00:00?

Part and Inventory Search

Back
Top