About the documentation view

see these page: http://msdn.microsoft.com/en-us/library/windows/desktop/ms724833%28v=vs.85%29.aspx
if i decrease the left menu(the vertical line), the menu is hide. why the menu isn't realy on left side?
the primary menu must be realy on left side for be more easy to explore.
if you do it, the Remarks section table can be read more easy ;)
i hope the moderator understand what i mean. thanks for all

I understand what you mean, but this is the wrong place for that feedback Cambalinho.
Unfortunately your post is off topic here, in the MSDN Subscriptions feedback forum, because it is not feedback regarding the MSDN Subscription. This is a standard response I’ve written up in advance to help many people (thousands, really.) who
happen to post their question in my forum, but please don’t ignore it.  The links provided below I’ve collected to help with many issues we’ve seen.
For technical issues with Microsoft products that you would run into as an end user of those products, one great source of info and help is
http://answers.microsoft.com, which has sections for Windows, Hotmail, Office, IE, and other products.   Office related forums are also here:
http://office.microsoft.com/en-us/support/contact-us-FX103894077.aspx
For Technical issues with Microsoft products that you might have as an IT professional (like more technical installation issues, or other IT issues), you should head to the TechNet Discussion forums at
http://social.technet.microsoft.com/forums/en-us, and search for your product name.
For issues with products you might have as a Developer (like how to talk to APIs, what version of software do what, or other developer issues), you should head to the MSDN discussion forums at
http://social.msdn.microsoft.com/forums/en-us, and search for your product or issue.
If you’re asking a question particularly about one of the Microsoft Dynamics products, a great place to start is here:
http://community.dynamics.com/
If you really think your issue is related to the MSDN Subscription, and I screwed up, I apologize!  Please repost your question to the discussion forum and include much more detail about your problem, that could include screenshots of the issue
(do not include subscription information or product keys in your screenshots!), and/or links to the problem you’re seeing. 
If you really have no idea where to post this question, then you shouldn’t have posted here, because we have a forum just for you!  It’s called the ‘Where is the forum for…?’ forum and its here:
http://social.msdn.microsoft.com/forums/en-us/whatforum/
Please review the topic of the forum you’re posting in before posting your question.  Moving your post to the off topic forum.
Thanks, Mike
MSDN and TechNet Subscriptions Support <br/> Read the Subscriptions <a href="http://blogs.msdn.com/msdnsubscriptions">Blog! </a>
i read what you said...
but sorry, but i don't understand where can i send that feedback :(

Similar Messages

  • How can I make folder view the default view when I open Organizer?

    I just bought Adobe Elements Photshop and Premier 11.  I spent 2 to 3 hours getting my picture video library into Adobe's organizer.  I had some problems with duplicate picture (that I wanted to be there - so I had to rename them) and a couple pictures with corrupted metadata.  After I got all that sorted out I am a bit miffed about the folder view on Adob'es organizer.
    I love that you can switch to folder view - since this is how I have been organizing my pictures for a long time.  I would like to continue organizing this way for now until I get a grasp on the other ways I can organize them in elements.  However, every time I close and re-open organizer it switches back to the default view instead of folder view.  PLEASE tell me that there is a way to set folder view to the default view!  HELP!

    99jon wrote:
    Perhaps it’s a design feature to speed up the Organizer launch.
    I am sure it is.
    - The normal use of the Organizer is not the folder view, it's the thumbnail view with an organization based on categories and folder. That way you should forget completely where your pictures are stored. Anyway, the folder view in the Explorer is not a map of the location of the different bits of your file, it's only a logical representation. That's easy to see when you are doing a defragmentation.
    - The folder view is useful even for those using normally the thumbnail view, but that is only for rare cases when you must change the folder organization, for instance moving files to another drive. The folder view is here to prevent you from changing things from the explorer and outside of the Organizer.
    - The new folder list view, which you find 'funny' is there to help better organizing using tags. Its huge advantage is that such a view is created extremely quickly by extracting the last subfolder in the media table : it's the way the database sees the folders, based on its own content,  totally ignoring the complex folder organization of your disk with media files or any unrelated other kind of data. You should use it in many cases, the main purpose being assigning tags when you have assigned descriptive folder names. I had suggested such a solution to prevent the long standing bugs in the folder view of previous versions.
    So yes, the purpose is:
    - to speed up switching modes
    - to help folder organization fans to migrate to tags organization
    - to hopefully get rid of the old folder organization bugs

  • How to create a view with parameters; read the documentation but nothing!

    Hello!
    I'm new to the Oracle world but together with my coworkers we need to very quickly study Oracle to figure out whether we'll add Oracle to our list of supported databases or not.
    Question: How do I create a view with parameters?
    I've read the documentation but I could not find this! I found the sql syntax to create a view but no parameters whatsoever...
    I have found on the web some very complicated way of doing this, but doesn't Oracle support Views with parameters?
    The goal here is to return a recordset, don't forget, so,please don't speak about stored procedures unless you are going to tell me how to get a recordset out of a stored procedure! ;)
    Thanks for all your help and attention!
    Jorge C.

    You can set up a parameterized view via context as follows:
    1. Set up a procedure to set your context values:
    create or replace procedure p_set_context (p_context IN VARCHAR2,p_param_name IN VARCHAR2,p_value IN VARCHAR2)
    as
    BEGIN
    sys.dbms_session.set_context(p_context,p_param_name,p_value);
    END;
    2. Create your context using the procedure you just created
    create or replace context my_ctx using p_set_context
    3. This is the test table I'll use
    create table my_table(col1 number)
    and populate it:
    begin
    for v_index in 1..10
    loop
    insert into my_table values(v_index);
    end loop;
    end;
    and the view that will be parameterised
    create or replace view v_my_table as select col1 from my_table where col1 between sys_context('my_ctx','start_range') and sys_context('my_ctx','end_range')
    4. Now set the parameters using the procedure above.
    begin
    p_set_context('my_ctx','start_range','1');
    p_set_context('my_ctx','end_range','5');
    end;
    5. Selecting from my_table will give you 1 to 10 (no surprise there :-) )
    selectng from v_my_table will give you 1 to 5
    You can use the context to set formats etc using the same principle. A common gotcha to watch for is trying to set the context directly using DBMS_SESSION.SET_CONTEXT instead of creating a procedure. This belongs to SYS and SYS won't have the privileges to set your context so you get an insufficient privileges result leading to much headscratching and unnecessary grants (at least that's my understanding of it).
    Sorry Jorge, as you're new to Oracle I should also have pointed out for completeness sake, that you can change the parameters at any time through recalling the p_set_context, for example, following on from above, after your "select * from v_my_table" and seeing 1 to 5, you could then do
    begin
    p_set_context('my_ctx','start_range','3');
    end;
    and when you requery 'Select * from v_my_table' you will now see rows 3 to 5.
    Bit of a simplistic example, but you can see how easy it is. :-)
    Message was edited by:
    ian512

  • I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this.

    I have a lot of various book mark folders with websites contained within each folder. I am able to sort the websites within each folder alphabetically by name but I cannot find a way to sort the bookmark folders themselves alphabetically by name.I am not talking about in a view mode but in the way they are displayed when I click on my bookmarks tab. Can someone explain to me how to accomplish this other than manually dragging them as this is extremely hard for me due to the fact that I am a quadriplegic with limited hand movement dexterity

    Bookmark folders that you created are in the Bookmarks Menu folder. "Sort" that folder.
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically

  • I just started using a new version of Illustrator and the text I am creating has a pink box behind, looks to be about the depth of the normal linespace, it is not visible in outline view, only in preview. What is it and how do I get rid of it?

    I just started using a new version of Illustrator and the text I am creating has a pink box behind, looks to be about the depth of the normal linespace, it is not visible in outline view, only in preview. What is it and how do I get rid of it?

    Hi Larry. I see. It is a file I have worked on previously, and the font is Myriad which I though came with the system. I just changed to Myriad Pro and the pink box disappeared. Thanks for the assistance, I know a new thing!

  • How can i create the blue "I"-Button for the Documentation in a view

    How can i create the blue "I"-Button for the documentation in a view?
    I want to prepare the button with user specified Information...
    and where must be create the documentation?
    thanks
    Edited by: DDC-TD on Apr 24, 2008 10:22 PM

    you have not mentioned where do u want the " I " information button ,
    1. If u want for a report , u can get the information button on selection-screen only .
       if u goto se38 on the mail screen u will find a radio button for documentaion ,
    when u select it and click 'create' or 'change' , an editor will open and u can document anything there ....
    2. Or specify where u want  info button .
    thanks ,
    reward points if usefull.

  • Table which has info about all "Query views" in the system

    hi all,
    which is the table that stores information about all the "Query views" present in the system?
    i searched in tables RSRREPDIR and RSZELTDIR, but i could not find any query view that is already present in the system.
    regards,
    Rk

    To know execution time, execute the query and then analyze the table RSDDSTAT using t-code se16..
    i think u need to check the value of  QTIMEOLAP var in the table for getting query execution time..
    more info please refer the note 130696
    U can execute query in RSRT also after setting options for Statistics

  • Where is the documentation about PostgreSQL?

    Could not get the docs as mentioned on the LION Server Manual: "PostgreSQL, view its documentation at http://www.example.com/postgresql/ (replace www.example.com with your server’s URL)." It shows an error message saying the page could not be found.

    I found the solution. Thanks baltwo.
    Actually the documentation Apple manual mentioned is located on LION Server at: "/Library/WebServer/Documents/postgresql/html/". Under html you can find the file index.html.
    I would like to add that LION Server already has two system accounts with the same short name for them "_postgres" (person and group). What you have to do is to add your account to postgresql group using Server app.
    Under View select Show system accounts.
    Also the postgresql sample config files can be found at: "/usr/share/postgresql/".
    I also recomend downloading phppgadmin, expand it and copy to your LION Server WEB document folder. After that you can use Safari to call it  "yourServerURL/phppgadminFolderName/". The user name is "_postgres" and the password is your account password.
    I forgot. You have to start WIKI service to start postgresql. Otherwise you must start using the Terminal before using phppgadmin.

  • HT5463 Questions about the "Do Not Disturb" feature not addressed in documentation

    Hello,
    I have some questions about the "Do Not Disturb" feature which are not quite addressed by the documentation.
    When DND is enabled, will badge app icons still be displayed?
    When DND is turned off, either manually or automatically, will Notification Center banners be available for alerts which occurred while DND was on, or are they lost forever? 
    I guess the main questions is, is DND like an answering machine, which stores up your notifications until you are ready to deal with them?  Or is it a return of the "turn off all notifications" feature that existed in iOS 4, albeit in a more evolved form?
    Thanks,
    - Steve

    If you have a schedule set, but activate it manually, it will de-activate at the scheduled time anyway. It behaves perfectly on my 4S, my wife's 4, and both of our iPads.
    If you have an iPhone 5, it could be tied to the known issue with automatic time set going Wonky on LTE networks. If that's the case, try disabling the automatic time set and see if it behaves itself.

  • Good documentation about the NWDI

    Hello,
    I just started with the NWDI by installing it. Is there any good (and short) documentation about the functionality of the NWDI? Has the NWDI something like a but tracker and so on?
    What are you using for your development to enhance the possiblity of the NWDI? Are there any additional applications (not neccessary from SAP) that you are using?
    Thx, Vanessa

    Hi,
    Go through the following links
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c05ae1f2-e2f8-2a10-a19d-c36ef0999ab3
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f03cd0f1-77c7-2b10-8093-de20e973c3fb
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f03cd0f1-77c7-2b10-8093-de20e973c3fb
    /people/boris.zarske/blog/2007/08/16/new-version-of-configuration-wizard-with-sap-netweaver-70-sps-13
    /people/marion.schlotte/blog/2006/03/30/best-practices-for-nwdi-track-design-for-ongoing-development
    http://help.sap.com/saphelp_nw70/helpdata/en/44/355093ba830a67e10000000a422035/frameset.htm
    Regards,
    Saleem

  • About the delete of joined view

    if create a view refering to a single table, then the delete operation to the view will delete the corresponding row in the refered table, but when i create a view by joining two tables, the result seems to be confused.
    create view ev select e.ename,d.loc from emp e,dept d where e.deptno=d.deptno;
    delete from ev where loc like 'N%';
    then 3 row was deleted from the view with 3 rows deleted in the emp table, but nothing happened in the table dept which supposed to be also delete;
    Why, or is these any principles dealing with the deleting this kinds of view. and I tried, the insert of this view is forbidden.

    nothing happened in the table dept which supposed to be also delete
    Sorry, according to who exactly? According to your opinion of how this ought to work without actually reading the documentation?
    DELETE from a join view requires that the view contains one (and only one) key-preserved table and that is the table that is DELETEd from.
    If you wanted to modify this behaviour (e.g. to DELETE from both tables) you could consider using an INSTEAD-OF trigger.

  • Documentation about the transactions

    Hello,
    I'm looking for documentation about the transactions
    CG3Y or CG3Z. My problem is that it doesn't update
    existing files.
    Thanx a lot

    hi
    Both CG3Y and CG3Z transactions are a part of EH&S.
    CG3Y = EHS: Download appl. to frontend
    Source file on application server Path of the file on the applicationserver
    Target file on front end Path of the file on the frontend server (PC)
    Transfer format for data Download the file as text (ASC) or in a binaryformat (BIN)
    Overwrite file Overwrite the target file if it already exist (withoutprompting)
    To start the download: <SHIFT-F1> (left button)
    To cancel: <F12> (right button, red X)
    CG3Z = EHS: Upload from frontend to appl.
    Source file on front end Path of the file on the frontend server (PC)
    Target file on application server Path of the file on the applicationserver
    Transfer format for data Download the file as text (ASC) or in a binaryformat (BIN)
    Overwrite file Overwrite the target file if it already exist (withoutprompting)
    To start the upload: <SHIFT-F2> (left button)
    To cancel: <F12> (right button, red X)
    hope it willl help you
    regards
    sreelatha gullapalli

  • Description about the generation of a documentation to selfwritten Program?

    Hello,
    I want to write a documentation to my ABAP-Programm but I don't find the documentation/description to do this. Is there a description in the official online-help or a tutorial about this. I want to know something about the symbols &PREREQUISITES&, &Titel& and the other documentation-symbols too. Thank you.
    Regards, Lars.

    Hi Lars,
    Pls follow these steps for ABAP report documentation.
    Goto SE38.
    Enter the program name.
    Select the 'documentation' radio button.
    Press Change
    In the next screen you can enter your documentation.
    This will appear in the selection screen of the report. There will be an information button on the application toolbar.
    Thanks
    Vinod

  • Error about the dll crdb_dao.dll - In Event Viewer - Application log

    We have classic ASP application and we are using Crystal XI for reports viewing and printing. We are keep getting the following error logged in the event view application log.
    Faulting application dllhost.exe, version 5.2.3790.3959, faulting module crdb_dao.dll, version 11.0.0.1282, fault address 0x0001b130.
    What is Causing this error. When this happens, the components stops responding and we have re-start the server.

    Hi ABC,
    CR XI is past it's patch life cycle so all I can suggest is you download the last Service Pack and test again. If it still happens then you can update to XI R2 and try again.
    You can get to downloads from here: http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm
    And to upgrade go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Thank you
    Don

  • Impossible to bring up the info pane about a todo item outside the current view

    Can anyone reproduce this?
    1) Set iCal to hide todo items whose deadlines are outside the current view.
    2) Create a todo item whose deadline is outside the current view.
    3) Search for the todo item.
    4) In the search results, double-click on the todo item.
    Expected Results:
    The same thing happens as with events: the view switches to the week containing the event, and its info pane is displayed.
    Actual Results:
    Nothing happens.

    Your site was built using tables, whose sizes are defined in your site.
    If we look at your first table definition, we can see:
    <table width="861" height="1449" border="3" cellpadding="0" cellspacing="0" bordercolor="#868787">
    Your table has a width of 861 pixels and an overall height of 1449 pixels. Anything you put into that overall box must fit those dimensions, else
    it won't be visible. Anything you add above it will push everything down. You can redefine your sizing to let you edit more inside of the table elements.
    This is why, when you type in more text, things act weird. If you are in Dreamweaver, you must find the right cell to put your text into and then enter
    text there. Unfortunately, this is going to push things around, which were all lined up using tables. And this gets everything offset with respect to
    everything else in your website.
    And that is why everyone is saying, "Start Over!"
    I just inherited a website that has been put together using tables. I'm going to have to expend considerable effort in rewriting the entire design of the
    website because of that. because everything I intend to add to the pages on the site is going to need to be deconstructed in order to get it to work
    properly if I'm adding text and pictures that need to line up with each other.
    You need something done quick and dirty and the only way I can recommend you do that is to use Dreamweaver to show you the tables you have
    and put what you need in a new table that is defined above or below the tables you all ready have defined. Do that and then get back to someone here
    who knows how to make a website correctly to clean up your entire website and make it editable -- which will cost you some money, but it will be
    money well-spent.
    I like to quote this maxim: Good, Fast, Cheap. Pick any two. This works for website design. You can get it fast and cheap, but it won't be good. I
    think you may have chosen that route.

Maybe you are looking for