String analyser help!

hi all....
am new to java and new to the forum as well...
i am having a slite problem with a string analyser class..
its supposed to obtain string input from user; as a sentence and count...
1. number of alphabetic characters in the
entire sentence.
2. number of numeric characters in the entire
sentence.
3. number of words in the entire sentence.
4. average number of characters per word.
5. length of longest word(in characters)
6. percentage of capital characters over all
non-blank characters.
7. number of vowels and consonants.
each in in a separate method!
i have started the implementation....
and i specifically started with counting the words, using StringTokenizer class...
the program worked fine until when i tried converting the code into a method,,
// reads and prints String in input
// until a null string is entered
import java.io.*;
import java.util.StringTokenizer;
public class StringAnalyser {
// Beginning of method main
public static void main(String[] args) throws IOException {
// create a text input stream
BufferedReader stdin = new BufferedReader (new InputStreamReader (System.in));
// to do the splitting we need a new instance
// of StringTokenizer
StringTokenizer strReader;
// Variables Declaration Here     
int count = 0;
int i =0;
// Prompting the user to input todays's exchange rate
System.out.println("Enter a sentence:");
// read the next line and tokenize it
strReader = new StringTokenizer (stdin.readLine());
while (strReader.countTokens() > 0) { // still input
count = strReader.countTokens();
while (count > 0) { // process this line
// System.out.println("The next word is: " + strReader.nextToken());
i++;
count--;
} // finish processing line
// read the next line and tokenize it
strReader = new StringTokenizer(stdin.readLine());
System.out.println("The number of words is: " + i);
i hope am using the right logic to solve the problem....
and if i am,
could you please help me fixing my errors!
thank you in advance...
regards!

StringAnalyser.java:104: cannot resolve symbol
symbol : method length ()
location : class java.util.StringTokenizer
for (int i=0; i<strReader.length(); i++) {This error is because strReader is a StringTokenizer
and not a String.
If you want to get every char in the input line you
can use the line you have like,
String s = stdin.readLine()); // one input line as a
String
for (int i=0; i<s.length(); i++) {
char ch = s.charAt(i);
// do something with the char
hi again...
am trying to use a method to inspect punctuation letters...
i only dont know if the method declaration is correct!!
please help!
// reads and prints String in input
// until a null string is entered
import java.io.*;
import java.util.*;
public class StringAnalyser {
// Beginning of method main
public static void main(String[] args) throws IOException {
// create a text input stream
BufferedReader stdin = new BufferedReader (new InputStreamReader (System.in));
// to do the splitting we need a new instance
// of StringTokenizer
StringTokenizer strReader;
// Variables Declaration Here     
int isLetter = 0;
int isDigit = 0;
int isLowerCase = 0;
int isUpperCase = 0;
int isPunctuation = 0;
// Prompting the user to input a sentence
System.out.println("\n\nEnter a sentence:");
// read the next line and tokenize it
// strReader = new StringTokenizer (stdin.readLine());
String input = stdin.readLine();
for (int i=0; i<input.length(); i++) {  
char ch = input.charAt(i); // do something with the char
if (Character.isLetter(ch)) {      // determines whether or not a
isLetter++; // character is a letter
if (Character.isDigit(ch)) {       // determines whether or not a
isDigit++; // character is a digit
if (Character.isLowerCase(ch)) {   // determines whether or not a 
isLowerCase++; // character is a lowercase
if (Character.isUpperCase(ch)) {   // determines whether or not a
isUpperCase++; // character is an uppercase
if (Character.isPunctuation(ch)) { // determines whether or not a   <------- this is line no. 126
isPunctuation++; // character is a punctuation letter
System.out.println("There is: " + isLetter + " letters in your statement.");
System.out.println("There is: " + isDigit + " digits in your statement.");
System.out.println("There is: " + isLowerCase + " lowercase letters in your statement.");
System.out.println("There is: " + isUpperCase + " uppercase letters in your statement.");
System.out.println("There is: " + isPunctuation + " punctuation letters in your statement.");
private boolean isPunctuation(char ch){
String punctuactionChars = ",.:;'\"!?";
return punctuactionChars.indexOf(ch)>=0?true:false;
am getting the following error:
StringAnalyser.java:126: cannot resolve symbol
symbol : method isPunctuation (char)
location: class java.lang.Character
if (Character.isPunctuation(ch)) { // determines whether or not a
^
1 error
any hints?
thank you in advance....
regards!

Similar Messages

  • Sort a string :: Please help.

    Hello Everyone,
    I am having this very simple problem of sorting a String. please help.
         static String sortString(String str){
              List list = Arrays.asList(str);                    
              Collections.sort(list);
              for(int i=0, n=list.size();i<n;i++){
                   System.out.println(","+ list.get(i));
    The function is supposed to take a String and sort it & print it out. This should be simple. Where am I making mistakes? Please help!!

    Hello Everyone,
    I am having this very simple problem of sorting a String. please help.
         static String sortString(String str){
              List list = Arrays.asList(str);                    
              Collections.sort(list);
              for(int i=0, n=list.size();i<n;i++){
                   System.out.println(","+ list.get(i));
                   return str;
    The function is supposed to take a String and sort it & print it out. This should be simple. Where am I making mistakes? Please help!!

  • Pass username and password ADFS without using query string, Please help.

    pass username and password ADFS without using query string, Please help.
    I used query string , but it is unsecured to pass credentials over url, with simple tool like httpwatch , anyone can easily get the password and decrypt it.

    Hi,
    According to your post, my understanding is that you had an issue about the ADFS.
    As this issue is related to ADFS, I recommend you post your issue to the forum for ADFS.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=Geneva
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding and support.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Arraylist and string split help

    i want to add items from a textfile into an array list here is the txt file
    Title,Artist
    tester,test
    rest,test
    red, blue
    here is the code i am using
    try{
      FileReader fr = new FileReader(fileName);
    BufferedReader br = new BufferedReader(fr);
    String s;
    int c = 0;
    while((s = br.readLine()) != null) {
      c=c+1;
      CD c3 = new CD("");
      String tokens[] = s.split(",");
            for(String token : tokens) {
          System.out.println(c);
           System.out.println(tokens.toString());
              if ( c == 2){
                c3.setTitle(token);
                    System.out.println(c);
                     System.out.println(token);
             c = c+1;
                  if ( c == 3 ){
                    c3.setArtist(token);
                    discsArray.add(c3);
                      System.out.println(token);
                    c = 1;
              System.out.println(token); }}
    fr.close();
    }catch (Exception e){
          System.out.println("exception occurrred");
      }here is the output of the array
    title: tester artist: tester title: rest artist: tester title: red artist: red
    as you can see it misses the last line of the textfile and also doesnt display all of the separated string;
    thanks any help is appreciated

    thanks for ur help but that wasnt the problem
    i have fixed it however when its read all the lines
    an exception is always thrown
    everything works just crashes at the end
    any ideas
    try{
      FileReader fr = new FileReader(fileName);
    BufferedReader br = new BufferedReader(fr);
    String s;
    int c = 0;
    while((s = br.readLine()) != null) {
      c=c+1;
      CD c3 = new CD("");
      String tokens[] = s.split(",");
            for(String token : tokens) {        
              if ( c == 2){
                c3.setTitle(token); 
                      c = c+1;
              if ( c == 3 ){
                    c3.setArtist(token); 
           if ( c == 3 ){
                    discsArray.add(c3);
                    c = 1; 
    fr.close();
    br.close();
      }catch (Exception e){
          System.out.println("exception occurrred");
      }

  • IP - Various problems with BEX Analyser - help would be nice

    Hi,
    we use IP in combination with BEX analyser. We experience certain problems. Does anyone experienced the same issues mentioned below:
    1) if a planning function is executed, it is executed twice when your cursor is within the query itself. If it is outside the query when clicking on the button, it is executed once (like it should).
    2) Locking: we don't have locking problems, but from the moment two people lock each other once, they need to close their analyser and re-open it (so logon again) in order to be able to start planning again in a non-locked part. If they just change their selection (to the not-lock part) they remain locked!!!
    3) planning function with multiple variables: system cannot retrieve values of all variables.
    details of function:
    CMD                                               1       EXECUTE_PLANNING_FUNCTION
    PLANNING FUNCTION NAME           1      AG10_COPY01
    DATA PROVIDER_FILTER                 1     DATA_PROVIDER_1
    VAR_NAME                                     1       PROF_CTR
    VAR_VALUE                                    1       510
    VAR_NAME                                     2     PERIOD
    VAR_VALUE                                    2        012
    VAR_NAME                                     3       CUSTOMER
    VAR_VALUE                                    3     1000
    -> following the instruction of the SAP course, in case of multiplle variables they should start from 0 and have an incremental increase. But the system only recognizes the variable with index = 1
    regards
    D

    Dear Dries,
    could it be that the variable type you use require a different set of commands?
    In general the parameters of the BEx Analyzer follow the rules of the SAp BW 3.5 Webruntime. When reading this detailed documentation you find that depending on the type of variable other names have to be used, e.g. when using a selection option variable you need something line varname_low, varname_high, ...
    The documentation can be found in the online-help:
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/07/ff413a3ace7022e10000000a11402f/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/07/ff413a3ace7022e10000000a11402f/content.htm</a>
    Best regards, Olaf Fischer

  • Problem reading a string:Plz help

    hi gurus
    I am reading some files (in a loop written by some other program). I am reading them line by line and I tokenize each line by space using split function.
    split(" ");
    In resultant string array, somewhere I found NULL or nothing , for example, I print all tokens and it prints like this
    ?penguins/nns? // I print ?on both sides to check any spaces
    ?march/nnp?
    ?? // now here is problem.. both ? combined..nothing between them
    I have checked the file.. this problem occurs where there are multiple spaces between tokens of a line...if I remove others and keep one space it works..
    Now I want to implement a check in program i.e. where there is SPACE or NULL, I should not process it but It does not work
    Please help
    Edited by: kimskams on Sep 30, 2008 4:51 AM

    Thanks a Lot Sir
    There is another problem that I am facing now..
    I am using this statement
    while ( (rec=dis.readLine() ) != null )to read a line from a file. What I have observed is that if there is a gap between two line then it stops executing file there and even does not go for further files..
    Can you identify the problem or better solution
    thanks

  • Compilation Error while using string (Please help)

    Hi,
    I am using "Sun WorkShop Compiler C++ SPARC Version 5.000". Compiling code which contains a "string variable" throws the following error:
    "/opt/WS5/SC5.0/include/CC/./new", line 32: Error: The prior declaration for ope
    rator new(unsigned) has no exception specification.
    "/opt/WS5/SC5.0/include/CC/./new", line 34: Error: The prior declaration for ope
    rator delete(void*) has no exception specification.
    "/opt/WS5/SC5.0/include/CC/./new", line 36: Error: The prior declaration for ope
    rator new[](unsigned) has no exception specification.
    "/opt/WS5/SC5.0/include/CC/./new", line 38: Error: The prior declaration for ope
    rator delete[](void*) has no exception specification.
    4 Error(s) detected.
    The command used for compilation is :
    /opt/WS5/bin/CC -compat=4 -I/opt/WS5/SC5.0/include/CC -features=%all try.cpp
    Would help if I could get some comments on the above.
    Thanks and Regards,
    M Shetty

    There is a requirement that I use the Workshop 5.0
    compilere with option "-compat=4".
    The program I am trying to compile contains:
    #include <string>
    int main()
    string test = "aaa";
    return 0;
    There is no "string" in "-compat=4". You need to
    do something like this:
    // --- start test.cc ---
    #include <rw/cstring.h>
    int main()
    RWCString test = "aaa";
    return 0;
    // --- end test.cc ---
    CC -compat=4 -library=rwtools7 test.cc

  • Problem in comparision of two strings.please help..

    I am retriving a string password from database and another string from html(user entered one).when i am printing those two strings its printing same strings.But whenever i am comparing strings and printing its not showing equal it is printing as false.what might be the reason.please help me regarding this.Thank you in advance.My cosing is as follows:
    while(rs.next())
    pwd=rs.getString("password");
    System.out.println("pmfg is..."+pwd);
    System.out.println("first string..."+pwd);
    System.out.println("second string..."+loginpwd);
    if(pwd.equals(loginpwd))
    System.out.println("true.....");
    else
    System.out.println("false....");

    once you got two string objects ......forget for where they are comming (database or html0 ....focus on those objects ....do the following
    1) use trim() function on both strings which removes the whitespaces from front and end
    2) use equalsIgnoreCase
    if the problem still persists ....then forget your code and sue the SUN people

  • Sorting and Searching String (Please help me)

    Hi, Could somn please be of any help here. I am trying to sort this string in alphabetical order and then search for data available but I am not makingprogress with the code. Does anyone have any advise or better still the code to solve this problem... This is hat I have at the moment
    import java.util.*;
    import java.io.PrintStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    public class coursework2
         public static final int MAX_RECORDS = 20;
         public static String lastName[] = new String[MAX_RECORDS];
         public static String firstName[] = new String[MAX_RECORDS];
         public static String telNumber[] = new String[MAX_RECORDS];
         public static String emailAddress[] = new String[MAX_RECORDS];
         public static int read_in_file(String file_name)
              Scanner read_in;
              Scanner line;
              int record_count = 0;
              String record;
              try
                   read_in = new Scanner(new File(file_name));
                   // read in one line at a time
                   read_in.useDelimiter(System.getProperty("line.separator"));
                   while (read_in.hasNext())
                        // Test to see if there are too many records in the file
                        if (record_count == MAX_RECORDS)
                             System.out.printf("Only %d records allowed in file", MAX_RECORDS);
                             System.exit(0);
                        // read in record
                        record = new String(read_in.next());
                        // Split the record up into its fields and store in
                        // appropriate arrays
                        line = new Scanner(record);
                        line.useDelimiter("\\s*,,\\s*");
                        lastName[record_count] = line.next();
                        firstName[record_count] = line.next();
                        telNumber[record_count] = line.next();
                        emailAddress[record_count] = line.next();
                        // Increment record count
                        record_count++;
              catch (FileNotFoundException e)
                   e.printStackTrace();
              return record_count;
         public static void write_out_file(int no_of_records, String filename)
              PrintStream write_out;
              int counter;
              try
                   // Create new file
                   write_out = new PrintStream(new File(filename));
                   // Output all reacords
                   for(counter = 0; counter < no_of_records; counter++)
                        // Output a record
                        write_out.print(lastName[counter]);
                        write_out.print(",,");
                        write_out.print(firstName[counter]);
                        write_out.print(",,");
                        write_out.print(telNumber[counter]);
                        write_out.print(",,");
                        write_out.println(emailAddress[counter]);
                   // Close file
                   write_out.close();
              catch (FileNotFoundException e)
                   e.printStackTrace();
         // Your 'functions' go here
         //This code sorts out the record after loaded into alphabetical order using
         //the selection sort method
         public static void sort()
         // Your 'main' code goes here
         //The code below uses a binary search method to search for record because
         //record have been sorted and this would make search faster and more efficient
         public static boolean linearSearch(String strFirstName, String strLastName)
              //Set-up data_input and declare variables
              //This linear search searches for record in the contact application.
              //Search for a record using surname only
                   int i = 0;
                   boolean found = false;
                   while (!found && i < lastName.length)
                        if(strFirstName.equals("") && strLastName.equals(""))
                             return true;
                        if(lastName.equalsIgnoreCase(strLastName)){
                   //List records from surname only
                   System.out.println("Enter your search criteria (last name only):");
                        System.out.print(lastName[i] +     "\t" + firstName[i] + "\t" + telNumber[i] +"\t" + emailAddress[i]);
                        System.out.println("");
                        if (lastName[i].compareTo(strLastName) == 0)
                             //Compare the last name values and type to make sure they are same.
                             found = true;
                                  i++;
                                  System.out.print(lastName[i] +     "\t" + firstName[i] + "\t" + telNumber[i] +"\t" + emailAddress[i]);
                                       System.out.println("");
                             return found;
              //Search for a record using first name only
         public static void main(String[] args)
              // Set-up data input
              Scanner data_input = new Scanner(System.in);
              // Declare Variables
              int number_of_records;
              String filename;
              int counter;
              // Get filename and read in file
              System.out.print("Enter the masterfile file name: ");
              filename = data_input.next();
              number_of_records = read_in_file("data2.dat");
              //Get new filename and write out the file
              System.out.print("Enter new masterfile file name: ");
              filename = data_input.next();
              //System.out.println("Enter your search criteria (first or last name):");
              linearSearch("*", "");
    Am very sorry this is long, the file should be sorted after it is loaded and I have that, You can make up some data with last ane, first name, tel and email to show me an example. Thanks alot
    Joseph

    Hi Monica, Thanks for you patience with me.
    I have tried writing a selection sort method but am having some errors. Could you kindly have a lookand correct me please.
    This is the code i wrote
    public static void selectionSort(Comparable [] data)
              String strFirstName;
              String strLastName;
              Comparable temp;
              for(int i = 0; i < lastName.length; i++)
                   lastName = index;
                   for (int j = i; j < lastName.length; j++)
                        if (lastName[j].compareTo(lastName) < 0)
                             lastName[j] = lastName[i];
                   //Swap the string values
                   temp = lastName[j];
                   lastName[j] = lastName[i];
                   lastName[i] = temp;
    As you requested, below are 4 error messages I had
    E:\coursework2.java:101: cannot find symbol
    symbol : variable index
    location: class coursework2
                   lastName = index;
    ^
    E:\coursework2.java:107: cannot find symbol
    symbol : variable j
    location: class coursework2
                   temp = lastName[j];
    ^
    E:\coursework2.java:108: cannot find symbol
    symbol : variable j
    location: class coursework2
                   lastName[j] = lastName[i];
    ^
    E:\coursework2.java:109: incompatible types
    found : java.lang.Comparable
    required: java.lang.String
                   lastName[i] = temp;
    ^
    4 errors
    JCompiler done.
    JCompiler ready.
    Joseph

  • Problems with the Strings Urgent Help needed

    I have a unique problem. I have to retrieve a particular value from a String. I tried using String tokeniser but in vain. I cannot use java.util.regex package to match the expressions as the version of java on the client m/c is 1.1.8 and they are not ready to upgrade the same.
    The string From which I have is a very long one running into more than 100 lines which can vary from case to case all I know is to retrieve the value which is just in front of "TestValue" which occur only once in the String Can Anybody suggest a bettter alternative.
    Thanx.
    ebistrio

    StringTokenize on TestValueHow would you suggest that was done?
    As I understand it StringTokenizer tokens = new StringTokenizer(string, "TestValue"); would not tokenize on the string "TestValue" but on any of the characters 'T', 'e', 's', 't', 'V', 'a', 'l' or 'u'. This is a common java pitfall in my opinion due to bady named parameters (I feel it should be called "delims" not "delim") or in other people's opinion due to bad parameter type (should be a char[] not a string).
    A clearer explanation of the problem would help.

  • Problem with prepared statement where cluase when passing string value.Help

    I am updating a table using the following code. I am using string parameter in where clause. if I use Long parameter in where clause with ps.setLong , this code is working. Is there any special way to pass string value? Am I doing anything wrong?
    ===================
    updateMPSQL.append("UPDATE MP_Table SET ");
         updateMPSQL.append("MPRqmt = ?,End_Dt = ? ");
              updateMPSQL.append("where POS = ? ");
              System.out.println(updateMPSQL.toString());
              con     = getConnection(false) ;
              ps      = con.prepareStatement(updateMPSQL.toString());
              ps.setLong(1,MPB.getMPRqmt());
              ps.setDate(2,MPB.getEnd_Dt());
              ps.setString(3,MPB.getPos());
    result = ps.execute();
              System.out.println("Result : " + result);
    ==========
    Please help me.
    Thanks in advance.
    Regards,
    Sekhar

    doesn't Pos look like a number rather than a string variable?
    if I use Long
    parameter in where clause with ps.setLong , this code
    is working.
    updateMPSQL.append("where POS = ? ");
    ps.setString(3,MPB.getPos());

  • String Tokenizer Helps

    I need a little help
    i am having trouble removing ALL the white space from my string using a tokenizer
    here is my code so far:
        String str = "klj f a sklj fdaskldf"
        String deLimiters = " ";
        StringTokenizer tokens = new StringTokenizer(str, deLimiters);
        while(tokens.hasMoreTokens())
    }how would i remove all the white space...and then display the string w/out white space???

    DrLaszloJamf wrote:
    <quote>
    StringTokenizer is a legacy class that is retained for compatibility reasons although its use is discouraged in new code. It is recommended that anyone seeking this functionality use the split method of String or the java.util.regex package instead.
    </quote>
    It feels quite comfortable to use StringTokenizer over split. And in schools, and the way that I was tough at my time
    instructors mainly used StringTokenizer.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Develop tab not working. Error msg "?;0: attempt to perform arithmetic on a string value" Help!

    I continue to get the error msg "?;0: attempt to perform arithmetic on a string value" when clicking on the 'Develop' tab in LR.  I've uninstalled and reinstalled the software 3 times from the original disc.  I'm in the middle of a wedding edit.  Help!

    It sounds like you might have a corrupted preset.
    Here's something you could try:
    Go to your Preferences/Presets tab and push the Show Lightroom Presets Folder button.
    Then close Lightroom and temporarily rename that folder. If the problem goes away, one of your presets is bad. Otherwise name the folder back to what it was and let us know what happened.
    Hal

  • Variance Analysis Help

    Dear All
    I have created a Scenario to tackle variance analysis and called ActualvsBudget
    Example is
    Revenue
    Actual - Budget = Variance.
    The problem I have is that the Favourable or Adverse variance works at accounte level however is distorted when consolidated.
    Example
    For Revenue
    Actual Revenue £20
    Budget Revenue £30
    Variance = minus £10 (Adverse Variance) Because Revenue was less than expected.
    For Costs
    Actual Cost £30
    Budget Cost £50
    Variance = plus £20 (Favourable Variance) - Because Costs are lower than expected.
    Gross Margin should Therefor be
    Actual (Revenue - Cost) = Minus £10
    Budget (Revenue - Cost) = Minus £20
    Variance = plus £10 (Favourable Variance) As Gross Margin better than predicted.
    So the Gross Margin Variance should be plus £10 as a favourable variance.
    However when HFM consolidates it will calculate as follows.
    minus 10 (revenue variance) minus +10 the cost variance analysis giving -20 variance on Gross Margin which is correct.
    The only way I can see around this is to be able to calculate the parent just for that scenario but it will not let me do that.
    Probably because not an input level account.
    Can anyone help.

    Hi,
    Now for the finished good  create material cost estimate with quantity structure
    Create standard cost estimate (marking and release to be carried out)
    now for the same old process order in the cost analysis u can see different value for  total target cost
    carry out confirmation  and u will get the total actual costs based on the activity types u have assigned
    -Variance=(difference between  total target cost and total actual cost)
    Variance related settings are done in consultation with Controlling people.
    Regards,
    Raj

  • Substitution string and Help page

    I have a substitution string used in item label. However, when the Help page is displayed, instead of substitution value the substitution string is displayed. Is this expected behaviour, a bug, or something else?
    Thanks,
    S

    What's your first name, please?My first name is Sima.
    Is this a popup item help page?No, this is not a popup item help page.
    Please show the content of the item label. Does it end in a period? What is it, a page item, application item, ...?This is the content of the item label (it does end with a period):
    * &ACCOUNT_NO_LABEL.
    It is a page item.
    This is the relevant content of the help page:
    Region: Search Accounts
    * &ACCOUNT_NO_LABEL.
    : Enter the account number for which you want to ...
    Thanks

Maybe you are looking for

  • How to get rid of 'created with adobe elements 9 trial version' message off my video?

    I have created a film using the trial version and this message is right in the centre of the whole thing! Does anyone know how I can get it off? Help :S Hann x

  • Have Problem with setting up Fingerprint sign in with window 8.1

    I am using a Fujitsu laptop and the AuthenTec FingerPrint drivers for the fingerprint scanner. It worked well with omnipass in windows 8 BEFORE i updated to windows 8.1 (i have already uninstalled omnipass after update). Yet, when i was trying to se

  • Reports 10g - Dynamic Alignment?

    Hi, On my report let say I am displaying 3 sets of data (Ex: Employees data, Dept data & HR data). I want my report to be aligned in the Center. For any reason if I dont get back any data for Depts, does the report dynamically align itself or does it

  • Using U.S. bought macbook in Malaysia/Singapore

    I bought my Apple here in US. Am I able to use it as is in Malaysia or will there be voltage issues or ac adapter/charging problems? Thanks for any information on this.

  • Strange error while starting OIM-----

    I am getting an error when i try to start OIM i am using OIM 910 OracleAppserver version 10133 Oracle RAC database 10204 Unable to establish connection to "xlXAConnectionPool". Error message: Exception occurred testing connection. Exception: java.sql