Help needed in getting formatted output ?

Hi members,
I am a newbie in Java programming. I know C, C++ upto a good level. I was trying to print a pattern like:
1
12
123
1234
12345
But wasn't able to get the output in desired format. I just wanna know how can i get the above mentioned output. The code i written is shown below alongwith the output:
/* This program is used to print the Pattern of 1,12..... */
class pattern
     public static void main(String args[])
          int i=1,j=1;
          while(i<=5)
               j=1;
               while(j<=i)
                    System.out.println("\t "+ j);
                    j++;
               i++;
               System.out.println("\n");
output:
F:\Jprograms>java pattern
1
1
2
1
2
3
1
2
3
4
1
2
3
4
5
F:\Jprograms>
Any help will be appreciated.
With regards
Real Napster

It's the statement you're using to print to the console:
println() means print, then go to next line.
print() doesn't go to the next line.
So:
System.out.println("1");
System.out.println("2");
Gives
1
2
But System.out.print("1");
System.out.print("2");
Gives
12

Similar Messages

  • Help needed in getting the previous Quarter Data

    Hello folks,
    I have this procedure where i have to modify the current procedure in the following manner:
    I need to get rid of the variables p_start and p_end so that i cannot see them in the crystal report and include the Frequency in the procedure to get the Data based on the Dates.
    and Main requirement is" If the Frequency is Quarterly " it should get the previous quarter Data, if "Frequency is monthly" it should return the previous month data.Can anyone please let me know where shud i make changes. Am including the procedure for refernce. Any help is appreciated
    Thanks a millioin,
    CREATE OR REPLACE PROCEDURE hcsc_recovery_report_h(report_record in out cr_return_types.gen_cursor,
    p_start       string,
    p_end         string)
    IS
    v_startdate date;
    v_enddate date;
    BEGIN
    v_startdate := to_date(p_start, 'YYYY/MM');
    v_enddate := last_day(to_date(p_end, 'YYYY/MM'));
    open report_record for
    select --distinct r.recovery_id
    r.event_id,
    r.event_case_id,
    c.client_id,
    c.client_code,
    c.client_name,
    b.branch_group_code,
    b.branch_group_description,
    g.employer_group_code,
    g.employer_group_name,
    e.client_policy_identifier,
    e.date_of_incident,
    e.event_type_code,
    sum(nvl(r.amount, 0)) as amt_received,
    nvl(sum(case
    when r.amount >= 0 then
    rd.fees
    else
    rd.fees * (-1)
    end),
    0) as fees,
    ec.close_date, *001* commented
    (case
    when ec.close_date <= to_date(to_char(v_enddate, 'MMDDRRRR') || '235959',
    'MMDDRRRR HH24MISS') then
    ec.close_date
    else
    null
    end) as close_date, --*001*  added
    get_case_value(ec.event_id, ec.event_case_id, v_enddate) as case_value,
    nvl(etl.fee_percent_flag, 'N') workmans_comp,
    max(to_char(r.recovery_date, 'FMMonthYYYY')) Year_Month,
    max(to_char(r.recovery_date, 'YYYYMM')) Y_M,
    max(to_date(to_char(r.recovery_date, 'MMYYYY'), 'MM/YYYY')) date_MY
    from recovery r,
    recovery_detail rd,
    event e,
    client c,
    branch_group b,
    employer_group g,
    event_case ec,
    event_type_lookup etl
    where r.event_id = e.event_id
    and r.event_case_id = ec.event_case_id
    and ec.event_id = e.event_id
    and rd.recovery_id(+) = r.recovery_id
    and r.recovery_date between v_startdate and
    to_date(to_char(v_enddate, 'MMDDRRRR') || '235959',
    'MMDDRRRR HH24MISS')
    and e.client_id = c.client_id
    and g.client_id = c.client_id
    and b.client_id = c.client_id
    and g.employer_group_id(+) = e.employer_group_id
    and b.branch_group_id(+) = g.branch_group_id
    and e.event_type_code = etl.event_type_code -- SST 130852 04/14/09
    group by r.event_id,
    r.event_case_id,
    c.client_id,
    c.client_code,
    c.client_name,
    b.branch_group_code,
    b.branch_group_description,
    g.employer_group_code,
    g.employer_group_name,
    e.client_policy_identifier,
    e.date_of_incident,
    e.event_type_code,
    ec.close_date,
    get_case_value(ec.event_id, ec.event_case_id, v_enddate),
    nvl(etl.fee_percent_flag, 'N')
    having sum(nvl(r.amount, 0)) <> 0
    order by c.client_code,
    b.branch_group_code,
    g.employer_group_code,
    r.event_case_id;
    Edited by: user11961230 on Oct 20, 2009 9:02 AM

    user11961230 wrote:
    1. I want to get rid of the p_start and p_end. So how do i declare the v_startdate and v_enddate in the following part?
    v_startdate := to_date(p_start, 'YYYY/MM');
    v_enddate := last_day(to_date(p_end, 'YYYY/MM'));I'm not sure what you mean by "declare".
    In PL/SQL, "declare" means state (at the beginning of a block) that there will be a certain variable with a certain name (such as v_startdate) and datatype (such as DATE). You're already declaring the variables v_startdate and v_enddate correctly, right before the BEGIN statement.
    Declaring a variable is not the same as initializing it, that is, giving it a value for the first time. Your next question seems to be about initializing..
    2. where exactly shud i include the logic that u have mentioned. sorry a dumb questionIn place of the two assignment statments that reference p_start and p_end.
    3. This time am gonna use frequency instead of report_type so that i will get rid of the p_start and p_end from the procedure.Do you mean you want to pass an argument (called frequency) that tells if you want a quarterly or a mionthly report, just like the variable report_type in my example?
    If so, replace report_type in my example with frequency.
    I think you want something like this:
    CREATE OR REPLACE PROCEDURE hcsc_recovery_report_h
    (      report_record         in out     cr_return_types.gen_cursor
    ,      frequency         IN           VARCHAR2
    IS
         -- Declare local variables:
         v_startdate     date;
         v_enddate      date;
    BEGIN
         -- Initialize v_startdate and v_enddate, depending on frequency
         IF  frequency = 'QUARTERLY'
         THEN
              v_startdate := TRUNC ( ADD_MONTHS (SYSDATE, -3)
                                           , 'Q'
              v_enddate := TRUNC (SYSDATE, 'Q');
         ELSIF  frequency = 'MONTHLY'
         THEN
              v_startdate := TRUNC ( ADD_MONTHS (SYSDATE, -1)
                             , 'MM'
              v_enddate := TRUNC (SYSDATE, 'MM');
         END IF;
         --   Subtract one second from v_enddate
              v_enddate := v_enddate - ( 1
                                            / (24 * 60 * 60)
         open report_record for
         select --distinct r.recovery_id
                r.event_id,
         and     r.recovery_date  BETWEEN  v_startdate     
                         AND       v_enddate
         ...When you post formatted text on this site (and code should always be formatted), type these 6 characters:
    (small letters only, inside curly brackets) before and after sections of formatted text, to preserve spacing.
    Edited by: Frank Kulash on Oct 20, 2009 2:37 PM
    Changed query to use BETWEEN                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Help needed, M getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem but instead I cannot login I to my itune account.

    Help needed,
    I am getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem , and i triyed it but still  I cannot login I to my itune account. Same message keeping. Popping up,  this problem started supricly today.

    Take a look at the instructions here.
    http://www.technogal.net/2012/03/this-is-not-test-user-account-please.html

  • Help needed in getting file url

    Hi,
    I work in a project where i need to get the url of the specified file. The code for that is as,
    URL fileURL = Thread.currentThread().getContextClassLoader().getResource();
    The required resource is available in the concerned path. But the file url returns null
    Can you please help in solving the problem.
    Thanks and Regards,
    Mclaren

    Where (text area, label, button) do you want it to do it.
    What do you want it do (browse within the local text area, open the default browser...)
    Text area, use above, JButton (or alike) and open default browser, use ActionListener and JDIC.

  • Help me to get the output !

    REPORT ZTEST9 LINE-SIZE 800.
    TABLES: VBAP.
    DATA: BEGIN OF I_VBAP OCCURS 0,
            VBELN TYPE VBAP-VBELN,
            POSNR TYPE VBAP-POSNR,
            MATNR TYPE VBAP-MATNR,
            MATWA TYPE VBAP-MATWA,
            PMATN TYPE VBAP-PMATN,
            CHARG TYPE VBAP-CHARG,
            MATKL TYPE VBAP-MATKL,
            ARKTX TYPE VBAP-ARKTX,
            PSTYV TYPE VBAP-PSTYV,
          END OF I_VBAP.
    BREAK-POINT.
    SELECT * FROM VBAP INTO CORRESPONDING FIELDS OF TABLE I_VBAP
    WHERE VBAP~VBELN EQ '60002744'.
    LOOP AT I_VBAP.
    WRITE :/
            I_VBAP-VBELN,
            I_VBAP-POSNR,
            I_VBAP-MATNR,
            I_VBAP-MATWA,
            I_VBAP-PMATN,
            I_VBAP-CHARG,
            I_VBAP-MATKL,
            I_VBAP-ARKTX,
            I_VBAP-PSTYV.
    ENDLOOP.
    I AM NOT GETTING ANY OUTPUT WHEN I USE 'EQ' OPERATOR. BUT ITS WORKING FINE WHEN I AM USING PARAMETES : ..
    PLEASE HELP

    hi nirajana ,
    DATA: BEGIN OF i_vbap,
    vbeln TYPE vbap-vbeln,
    posnr TYPE vbap-posnr,
    matnr TYPE vbap-matnr,
    matwa TYPE vbap-matwa,
    pmatn TYPE vbap-pmatn,
    charg TYPE vbap-charg,
    matkl TYPE vbap-matkl,
    arktx TYPE vbap-arktx,
    pstyv TYPE vbap-pstyv,
    END OF i_vbap.
    DATA: t_vbap LIKE STANDARD TABLE OF i_vbap.
    SELECT vbeln
           posnr
           matnr
           matwa
           pmatn
           charg
           matkl
           arktx
           pstyv
    FROM vbap INTO TABLE t_vbap
    WHERE vbeln EQ '6000274'.
    LOOP AT t_vbap INTO i_vbap .
      WRITE :/
      i_vbap-vbeln,
      i_vbap-posnr,
      i_vbap-matnr,
      i_vbap-matwa,
      i_vbap-pmatn,
      i_vbap-charg,
      i_vbap-matkl,
      i_vbap-arktx,
      i_vbap-pstyv.
    ENDLOOP.
    do like this .
    for particular vbeln entry . no data is present in the table .
    regards ,
    sandeep patel
    award point if it is helpful.

  • Help needed with String formatting

    Hi there,
    I have this string
    /C:/Documents%20and%20Settings/sickboy/workspace/Take%20A%20Note/bin/deployment/TOC.htmlI managed to get the last field with this
    file = ViewClass.getEditorPane().getPage().toString().substring(ViewClass.
                            getEditorPane().getPage().toString().lastIndexOf('/') +
                            1);which gives me TOC.html
    but finally I need to get also the folder in which this file is contained, which means deployment/TOC.html
    I can't find out how I can do this. Any ides?
    Thanks in advance

    use string.split("/") to pass the string to an array of strings and then get the last 2 elments

  • Help need in getting thread join to actionperformed event.

    Hi,
    I am trying to building a small application which should give me the following functionality.
    My main function should span two windows. One window(1) will be receiving the input from the user and after the user enter a string and press the OK butten, the other window(2) should display this string and first window should set unvisible.
    To have this function working my window(2) should wait for the window(1) ActionPerform event complete and receive the message from it.
    Can any of you please help me getting some hints or sample codes for this action to be done.
    Thanks.

    Varad,
    Not sure what you are suggesting is what I am looking to do. I believe with your example here that I would need to create a new item table in my current DB in order to recall this data. This table would be populated with the items I selected (checkbox) from the original page. This is one solution, but the issue is that this is dynamic and these values would change as a new search is generated or different values are selected.
    Is there anyway in which to make (code) in ApEx so as that the values (i.e. P1_items 123 : 234 : 456) (note that these items are defaulted to colon delimitation by ApEx) are properly formatted so as SQL can read them as independent items. Note if I simply rewrite the original SQL script and replace the :P1_item with generic values (123 , 234 , 456) the SQL operates as intended.
    Thank you for your support and help,
    Randy

  • Help needed regarding getting jnlp

    Hi all,
    we need help regading java web start. We are downloadng some set of jar files to the client side using JNLP. With these jar files jnlp launches a swing base application in the client side and interacts with server application depoyed in WebSphere. In order to launch this application IBM Jre is needed in the client side. But IBM Jre can not install in non IBM meachines. So, we planing to make jar file of Jre and download it along with the rest of the jar files. After that we want to install in some directory in the client meachine and use that JRE to launch application. Now we are couple of problems with this approach.
    1) To extract the Jre from the jar file we need the path, where these jars are downloaded.Even though we know the path "C:\Documents and Settings\Administrator\Application Data\IBM\Java\Deployment\cache" we can't hard code this, because user may change this location. The extraction program of this jar file in the client side is in one of the jar file that is downloaded. But here in the it is not able to recongnize relative path. So what we need is, is there any api to get this location of this path.
    2)Second, In order to launch the application with downloaded Jre we need to set the classpath for jars that are downlaoded with Jnlp. But after downloading these jar files to the client side they are renamed(prefixed with RM and RT). Now, how to set the classpath to these jar files.
    Here instead of JNLP if we use applet our problem will be solved. But we can't use applet because of client requirements.
    Anybody, please try to suggest me some thing with this problem.
    thanks,

    You might want to try posting your question to the Grid Control Forum.
    Enterprise Manager

  • What do you need to get video output to external monitor

    Hello,
    I'm fairly new to Color and have read a few posts that color can't be viewed by firewire to an external monitor. Basically what I have right now for external viewing in FCP is a JVC SR-VS30 Mini DV NTSC deck with firewire connected to my computer. From the deck it goes to a small TV set and a Sony Trinitron PVM color video monitor. What do I need extra to be able to see my color correction in Color on an external monitor. BTW in Color currently the Video Output tab in Setup>User Prefs is grayed out showing Disabled. I suppose that when I get whatever I need to see Color on an external monitor that this tab would NOT be grayed out or would I have to set some other settings.
    Thanks.

    Well, you can waste a lot of time and money trying to get your old iron up to speed but the sad fact is, even though it may work with Color, it will most likely end in a less than satisfactory experience all around. You need to determine if your G5 has PCI, PCI-x or PCIe slots and then purchase the appropriate cards.
    However, Final Cut Studio 2 is optimized for the Intel processors. You will see users here and there using the newest models G5 with great success but quite honestly, you need a Mac Pro.
    Or just purchase the Aja IO/HD which is a firewire 800 interface and the only firewire device that will preview externally Color.

  • Help required in Getting XML output as Required

    Hi All,
    I have below xml
    INSERT INTO XMLTABLE VALUES (4,'<?xml version="1.0"?>
    <Node_1 empID="202" empName="Pro1" oper="Update">
    <Node_2 empID="20" empName="Pro2" oper="Update">
    <Bode_3 empID="2" empName="Pro3" oper="Update">
    <Bode_4 empID="22" empName="Pro4" oper="Update">
    <Bode_5 empID="12" empName="Pro5" oper="Delete"/>
    <Bode_6 empID="223" empName="Pro6" oper="Insert"/>
    <Bode_7 empID="201" empName="Pro7" oper="All"/>
    <Node_3 empID="21" empName="Pro71" oper="ll">
    </Bode_4>
    </Bode_3>
    </Node_2>
    </Node_1>');
    I have a sequence seq_i
    seq_i start with 1 increment by 1
    am able to display output as below,
    Node|EMPID|OPER|EMPNAME|MGRID
    Node_1|202|Update|Pro1|Null
    Node_2|20|Update|Pro2|Node_1
    Bode_3|2|Update|Pro3|Node_2
    Bode_4|22|Update|Pro4|Bode_3
    Bode_5|12|Delete|Pro5|Bode_4
    Bode_6|223|Insert|Pro6|Bode_4
    Bode_7|201|All|Pro7|Bode_4
    Node_3|21|ll|Pro71|Bode_4
    Now I want below one as output
    All nodes starting with Bode_, I need to replace that with sequence, seq_i
    so for the seq_i (starting with i and incrementing by 1)
    Please note when ever node changes to sequence, corresponding mgrid also changes,
    Node|EMPID|OPER|EMPNAME|MGRID
    Node_1|202|Update|Pro1|Null
    Node_2|20|Update|Pro2|Node_1
    1|2|Update|Pro3|Node_2
    2|22|Update|Pro4|1
    3|12|Delete|Pro5|2
    4|223|Insert|Pro6|2
    5|201|All|Pro7|2
    Node_3|21|ll|Pro71|2
    Please let me know your thoughts on this to acheive the same,
    Thanks,

    Well you've already said you can get your XML into the initial flattened hierarchy structure, so you just need to manipulate that to assign a sequence (row number) as appropriate.
    Something like...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (
      2  select 'Node_1' as node, 202 as empid, 'Update' as oper, 'Pro1' as empname, Null as mgrid from dual union all
      3  select 'Node_2', 20, 'Update', 'Pro2', 'Node_1' from dual union all
      4  select 'Bode_3', 2, 'Update', 'Pro3', 'Node_2' from dual union all
      5  select 'Bode_4', 22, 'Update', 'Pro4', 'Bode_3' from dual union all
      6  select 'Bode_5', 12, 'Delete', 'Pro5', 'Bode_4' from dual union all
      7  select 'Bode_6', 223, 'Insert', 'Pro6', 'Bode_4' from dual union all
      8  select 'Bode_7', 201, 'All', 'Pro7', 'Bode_4' from dual union all
      9  select 'Node_3', 21, 'All', 'Pro71', 'Bode_4' from dual
    10  )
    11  -- end of test data obtained from flattening XML - just use query below against own data
    12  select rpad(' ',(level-1)*2,' ')||coalesce(bode_no, node) as tree
    13        ,coalesce(bode_no, node) as node
    14        ,empid
    15        ,oper
    16        ,empname
    17        ,case when bode_no is not null then prior coalesce(bode_no, node) else mgrid end as mgrid
    18  from (
    19    select node
    20          ,case when node like 'Bode%' then
    21                     to_char(row_number() over (partition by case when node like 'Bode%' then 1 else 0 end order by node))
    22                else null
    23           end as bode_no
    24          ,empid
    25          ,oper
    26          ,empname
    27          ,mgrid
    28    from t
    29    )
    30  connect by mgrid = prior node
    31* start with mgrid is null
    SQL> /
    TREE                 NODE                                EMPID OPER   EMPNA MGRID
    Node_1               Node_1                                202 Update Pro1
      Node_2             Node_2                                 20 Update Pro2  Node_1
        1                1                                       2 Update Pro3  Node_2
          2              2                                      22 Update Pro4  1
            Node_3       Node_3                                 21 All    Pro71 Bode_4
            3            3                                      12 Delete Pro5  2
            4            4                                     223 Insert Pro6  2
            5            5                                     201 All    Pro7  2
    8 rows selected.

  • I need help need to get rid of  abckground in a psd in motion

    when I save my psd in photoshop...I keep all the layers....I then try to take it to motion 2 becuase I want to create a lower third.....for whatever reason I cannot get rid of the background in my psd file....I need some serious help here...is there something I need to do differently in photoshop....anyhelp woul dbe appreciated....i even go to the layers section in motion..and when I click on any of the layers that pertain to my psd file the whole image dissapears....mind you it's only a picture of several stacks of records..with a black glow on it...to seperate the records from the background video I am importing into motion...please help

    i fixed it.....the original image was saved wrong in the first place...... < </div>
    Ah, user error. Welcome to the "Doh! Club." We're all members but some of us won't ever admit it.
    Please mark this thread ANSWERED.
    bogiesan

  • Help needed with File Formats (Save As...)

    Somewhere upgrading versions of Photoshop (Mac), some old File Formats have remained. The result is that I cannot properly select a File Format to Save As... except the native PSD format. Others have to be selected by selecting a format below the one on the list, meaning that I cannot select TIFF because there are no formats below this one. (Accepted formats http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7758a.h tml#WSfd1234e1c4b69f30ea53e41001031ab64-7754a)
    I've looked in the Plugins folder and there are no strange file formats there. I checked Library>Application Support>Adobe>Plug-Ins but nothing there. I've tried searching the entire hard drive for Compuserve GIF (one of the offending file formats) but nothing matches.
    I give up trying to figure out where some of the problem plugins are located. As you can see from the image below, selecting Multi-Picture Format actually will save it as a jpg. From reading Adobe's formats, I think CompuServe GIF is causing part of the problem. I don't know what other one.
    Or it may be that I just need to reset something so all formats are properly recognized. Can anyone help?

    Curt,
    That is great information. Unfortunately I've already checked the preferences and do not have an additional plugin folder specified.
    Suppossedly, according to the information from Adobe, the only place plugins should be loaded is in the Photoshop > Plug-Ins folder, or possibly Library>Application Support>Adobe>Plug-Ins (according to the link you provided). There is nothing there.
    When I look at Photoshop > About Plug-ins I see that, for example, there are two (2) versions of CompuServe GIF format. Obviously one is old from a previous install/update, but I cannot find it anywhere. If I could find it, I could remove it. I suspect that is one of the conflicts causing my problem, but I see no way in Preferences to remove a plug-in. The link you gave says to move it outside the folder, but it presupposes you can even find the offending plug-in, which I cannot.
    Monty

  • Help needed with getting Audio signal through to Mac Book Pro (using Logic 9 & Behringer Xenyx 1204USB mixer)

    Ok so I am sure I have everything set up correctly,
    Logic has recognised and is using the mixer, I have sound coming through the headphones when I put in a drum sample onto audio track, no signal going in from audio using the first channel. Audio channel is set up with correct inputs & outputs. USB setting used on mixer......phantom tried on and off with the condenser mic I am using.....still no luck not even changing from mi to guitar. No signal when recording audio...... AAAHHH HELP! Racking my brains!
    Thank you in advance

    Kudos to figuring it out yourself.
    Yes, Logic is geared to the professional user, you will need to set up the program to your particular way of working, Logic was well developed for professional use long before Apple purchased it, it's not an Apple program per se. It's complex and offers a myriad number of choices so that it can be configured to many styles of working, there's often 3 or 4 ways to perform the same function.
    Logic insists the user educate themselves... which is a good thing.
    Here ya go! 
    http://documentation.apple.com/en/logicpro/
    "Exploring Logic Pro" is a good one to start with.
    Also in the main manual... "Setting Up Your System"

  • Help Needed with getting Started With Office 365 Development C# Rest API

    We have a O365 Tenant Setup with a Federated Active Directory Setip we want to be able to right code that will connect to our tenant and perform basic CRUD operations against it (ex. Creating mail boxes)
    The problem is we want this to be contained in a CLR trigger In SQL so say if a new user is added to our user table then we would create a new AD account for that user and also create a mailbox.
    But I cannot find and example on how to connect to Office 365 using the REST API (Not the SDK because you can not add the connected service to a class library) and before the required actions that we need to do. All the example I have found are with the
    SDK API and/or require window 8 and that is also not an option.
    Please help I do not know where to start, and I would love to see some examples done in c# and not using the SDK.
    Thanks,
    Andrew Day

    Hi,
    >> Instead of SharePoint URLs I would use the O365 API URL?
    Yes, in my sample code, I was accessing the File resource by using the O365 File API. In your case, you need to acquire the token to access the Mail resource and use O365 Mail API.
    By the way, I think the article
    Understand Office 365 app authentication concepts will help you to understand the authentication process in Office 365 Development.
    >> Why can I not use the SDK API with a class Library?
    Actually, you are able to reference the Office 365 .NET SDK in the class Library. But the class library project type was not supported by Visual Studio Office 365 Development Tool. As a workaround,
    you can reference the SDK manually in your project.
    Since your original question is about “getting started with Office 365 Development C# Rest API”, if you have more questions about the Office 365 SDK, I will suggest you posting a new thread
    to discuss the Office 365 SDK. It will involve more other community members to share their ideas and experience on a specific a question and for others who had a similar question could also find the valuable information quickly.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • RE: HELP, Need to get SMS off phone

    The screen cracked on my palm pre (sprint) and nothing is readable. I can still connect it to my PC and in 'My Computer' can go into it and see all my pics, mms, etc. However, it doesn't show past text messages. There is a certain conversation via SMS that I NEED for court. This there any program where I can copy my phones entire hard drive to my PC? I don't care about the pics, mms, ringtones, etc......just need those SMS messages. Thanks for any help! I REALLY appreciate it.
    Thanks,
    JC 
    Post relates to: Pre p100eww (Sprint)

    m8,
    Just do a backup by pcsuite & then when your phone got fixed do the restore. If you plan to replaced that damage phone, get the latest pcsuite that support that phone & the one you plan to buy then do the restore on that phone. The latest version of Nokia pcsuite supports backup/restore to a different phone model.
    Message Edited by android on 15-Apr-2008 02:05 PM
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

Maybe you are looking for

  • Why can't I make changes on my external hard drive?

    I have an external hard drive that I set up through Windows XP that I can now access through Mac OS X on my MacBook. Unfortunately, I'm not able to delete or make any changes to any of the files through the Finder. Why is that, and can it be changed?

  • Hello, I need to know the steps to conect a wireless keyboard to my iPad

    A question

  • Oracle 11g: dbconsole ... giving very hard time

    Hi guys, I've created a db manually, now trying to create emca repository, and getting this error, any one having any idea, how to fix, I've already dropped and when trying to recreate, getting this error: Apr 23, 2010 4:01:27 PM oracle.sysman.emcp.P

  • Best practice for mutable global variables

    I have read around a couple of posts regarding the topic and still haven't come to any with just the right answer for the best way to work with a variable which everybody other object needs to read and/or write? I have read about multiple ways for im

  • Bar of Pie Chart and Age Population Chart ?

    Hi, I've got the last version of numbers and I'am asked for an assignement to do a Bar of Pie Chart and an Age Population Chart. I tried everything and searched on the internet but couldn't manage to find what I'm looking for. Could anyone explain ho