Combinations of numbers

Hello there,
I would like to know how I could generate a list of combinations of 6 numbers out of numbers between 1- 40.
Can anyone please help me out.
Many thanks,
gunajee.

gunajee wrote:
Like this one but there should not be any repetition of any number in any combination.
WITH x AS (SELECT ROWNUM n FROM dual CONNECT BY ROWNUM<=40)
SELECT  x1.n n1,
        x2.n n2,
        x3.n n3,
        x4.n n4,
        x5.n n5,
        x6.n n6
  FROM  x x1,
        x x2,
        x x3,
        x x4,
        x x5,
        x x6
  WHERE x1.n NOT IN (x2.n,x3.n,x4.n,x5.n,x6.n)
    AND x2.n NOT IN (x3.n,x4.n,x5.n,x6.n)
    AND x3.n NOT IN (x4.n,x5.n,x6.n)
    AND x4.n NOT IN (x5.n,x6.n)
    AND x5.n != x6.n
/SY.

Similar Messages

  • I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16   digit and 4 special characters. No combination of numberic, alphanumeric, special characters works. Help

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

    I have set up my work Exchange email/calendar. After setting up I am getting passcode expired message and asking for changing the passcode with a 16 +  digit and 4 special characters. No combination of numberic, alphanumeric, special characters is working. Help!!

  • MERGE or COMBINE my numbers in Address Book?

    How do I merge or combine my numbers in the Address Book with the numbers on my phone? My iBook is connected to my cell phone and the sync process is hapening....but I can only get the numbers from my phone onto the computer. What I want to do is send all the info. from the iBook to the phone and combine the two lists?

    Welcome to Apple Discussions.
    Launch iSync, open the Preferences… dialog and choose the option to Reset Sync History. You will be given the choice to Replace the data on or Merge to the dat with your mobile handset when you next synchronize: you should choose replace.

  • Assigning a combination of numbers to variables

    Hi, here is what i want to do. say i have four variables A,B,C and D and four numbers 1,2 ,3,4. i want to assign a number to a variable in different combinations for all possible combinations.
    for example first iteration
    A=1,B=2,C=3,D=4
    then
    A=1,B=2,C=4,D=3 or A=2,B=4,C=1,D=3 and so on for all possible combinations.
    thanks in advance

    but what i
    really want to know is if there is a way i can do the
    assignments without listing all 24 combinations one
    by one.I don't understand! I expect that you are required to write a program that will generate the permutations (not combinations). Once you have done that then then you can think in terms of doing the 'assignments'.

  • How to not index characters combined with numbers?

    According to the Oracle Text Reference (10g or 11g) regarding a "stopclass", currently, only the NUMBERS class is supported and it is not possible to create a custom stopclass. So is there another way to not index text that contains characters combined with a number (such as "123ABC" or "ABC123")? If the text contains a number (anywhere in it) I don't want it indexed. Otherwise, I end up with a lot of junk representing 90% of my index and causes a maintenance pain...Essentially going from 300K rows in the index table to over 13 Million.

    The only thing that I can think of is to use a user_datastore with a procedure that loops through each token in the row, eliminating those that have numbers. Please see the demonstration below.
    SCOTT@orcl_11gR2> CREATE TABLE test_tab
      2    (test_col  VARCHAR2 (60))
      3  /
    Table created.
    SCOTT@orcl_11gR2> INSERT ALL
      2  INTO test_tab VALUES ('worda abc123 wordc')
      3  INTO test_tab VALUES ('worda 123abc wordc')
      4  INTO test_tab VALUES ('def456 wordb wordc')
      5  INTO test_tab VALUES ('worda wordb 789ghi')
      6  SELECT * FROM DUAL
      7  /
    4 rows created.
    SCOTT@orcl_11gR2> CREATE OR REPLACE PROCEDURE test_proc
      2    (p_rowid IN           ROWID,
      3       p_clob     IN OUT NOCOPY CLOB)
      4  AS
      5    v_clob            CLOB;
      6    v_token            VARCHAR2 (100);
      7  BEGIN
      8    SELECT test_col || ' '
      9    INTO   p_clob
    10    FROM   test_tab
    11    WHERE  ROWID = p_rowid;
    12    WHILE INSTR (p_clob, '  ') > 0 LOOP
    13        p_clob := REPLACE (p_clob, '  ', ' ');
    14    END LOOP;
    15    WHILE LENGTH (p_clob) > 1 LOOP
    16        v_token := SUBSTR (p_clob, 1, INSTR (p_clob, ' '));
    17        IF v_token = TRANSLATE (v_token, '1234567890', '        ') THEN
    18          v_clob := v_clob || v_token;
    19        END IF;
    20        p_clob := LTRIM (SUBSTR (p_clob, INSTR (p_clob, ' ')));
    21    END LOOP;
    22    p_clob := v_clob;
    23  END test_proc;
    24  /
    Procedure created.
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.CREATE_PREFERENCE ('test_store', 'USER_DATASTORE')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> EXEC CTX_DDL.SET_ATTRIBUTE ('test_store', 'PROCEDURE', 'test_proc')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> CREATE INDEX test_idx
      2  ON test_tab (test_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  PARAMETERS ('DATASTORE test_store')
      5  /
    Index created.
    SCOTT@orcl_11gR2> SELECT token_text FROM dr$test_idx$i
      2  /
    TOKEN_TEXT
    WORDA
    WORDB
    WORDC
    3 rows selected.
    SCOTT@orcl_11gR2>

  • How can i combine different numbers spreadsheets into one numbers document?

    I am migrating from Excel. This is easy to do in Excel but I can't figure it out for Numbers. I have created four different Numbers docs and I want to have them in one document, so i can move between them conveniently and also to create a single pdf file with four sheets...which simplifies emailing to non-mac users. Can anyone tell me how i do this please?
    thx lawrence

    Hello
    Yes, select a sheet, copy it in the clipboard then paste into the main spreadsheet.
    There is no built-in tool allowing exchanges between two documents.
    Yvan KOENIG (from FRANCE vendredi 4 janvier 2008 12:20:17)

  • Reading in a txt file, appending numbers to it.

    So I'm a student at Georgia Tech working on a relatively simple Java program for a research internship, but it's been awhile since I've had my Java course and I'd really like some help on this. Basically, what I'm looking to do is to take in a text file with data that only consists of the numbers 1,2,4 and 5, with up to four digits in each line and no number may be repeat itself in the same line. A sample of data would look like the following:
    12
    21
    154
    2
    1
    45
    24
    4125
    Lines like '12' and '21' would count as the same however, as would '4512' to '1245'. I'm trying to determine how often each number 'interacts' with each other number, and then append that data to the end of the text file by saying something along the lines of:
    One-Two Interactions = 4
    Four-Five Interactions = 6
    Etc. etc. The real problem I'm having is I can't remember how to get the BufferedReader to 'identify' the particular numbers and combinations of numbers before adding to the count in each variable. If you have any advice or answers, it would be greatly appreciated.

    import java.io.*;
    import java.util.*;
    public class ExchangeProgram{
         public static void main(String[] args) {
              int one = 0;
              int two = 0;
              int four = 0;
              int five = 0;
              int one_two = 0;
              int four_five = 0;
              int one_four = 0;
              int two_five = 0;
              int four_two = 0;
              int one_five = 0;
              int one_two_four = 0;
              int two_four_five = 0;
              int one_two_five = 0;
              int one_four_five = 0;
              int all = 0;
              Set h = new HashSet();
              File file = new File("test.txt");
    StringBuffer contents = new StringBuffer();
    BufferedReader reader = null;
    try
    reader = new BufferedReader(new FileReader(file));
    String text = null;
    // repeat until all lines is read
    while ((text = reader.readLine()) != null)
                             h.add(text);
    } catch (FileNotFoundException e)
    e.printStackTrace();
    } catch (IOException e)
    e.printStackTrace();
    } finally
    try
    if (reader != null)
    reader.close();
    } catch (IOException e)
    e.printStackTrace();
              for (int i=0; i>h.size(); i++){
                        if (h.contains("1")){
                             one++;
                        if (h.contains("2")){
                             two++;
                        if (h.contains("4")){
                             four++;
                        if (h.contains("5")){
                             five++;
                        if (h.contains("12")){
                             one_two++;
                        if (h.contains("45")){
                             four_five++;
                        if (h.contains("14")){
                             one_four++;
                        if (h.contains("25")){
                             two_five++;
                        if (h.contains("42")){
                             four_two++;
                        if (h.contains("15")){
                             one_five++;
                        if (h.contains("124")){
                             one_two_four++;
                        if (h.contains("245")){
                             two_four_five++;
                        if (h.contains("125")){
                             one_two_five++;
                        if (h.contains("145")){
                             one_four_five++;
                        if (h.contains("1245")){
                             all++;
    // show file contents here
    System.out.println(one_two);
    Here's what I've come up with so far, though I'm getting this error: Note: Recompile with -Xlint:unchecked for details.
    Any comments on any major mistakes I'm making here? Haven't used the Set interface much before.

  • Keyboard - Combination Option key+number is not working

    I have a actual problem with my czech wireless keyboard. When I use the right Option key in combination with numbers 1-9, nothing happens. Now, I am not able to write @ without the keyboard viewer or changing into US keyboard layout. What is surprising is that other combinations with Option key work as usual. Can anybody help. Can that be caused by some SW update?

    Hi mirahozda,
    Welcome to the Apple Support Communities!
    In this situation where some of your keys are not responding as expected, I would recommend reading over and working through the Some keys don’t work as expected section of the attached article. 
    One or more keys on the keyboard do not respond - Apple Support
    Have a great day,
    Joe

  • Lightroom 3.2 Installation Problem on Windows 7 64-bit

    Lightroom 3.2 Installation Problem on Windows 7 64-bit
    I can't install Lightroom 3.2 (German) on my computer (Windows 7 Professional 64-bit).
    While copying the extracted program files the following error message appears:
    An error occurred during the installation of assembly component {6435B7C0-E0C8-3EA2-91AE-7640034EAFCE}. HRESULT: 0x80070002.
    I found out that other users had the same problem, and couldn't find a solution.
    Perhaps it is a Microsoft .NET Framework related problem. But after installing .NET Framework 4 nothing changed.
    Thanks for ideas to solve the problem.

    Thanks for your advice, Mr. McLion.
    I downloaded the 3.4.1 version and started the installation as administrator. Unfortunately the same error message occured again.
    Then I tried to install the 32-bit version (although I prefer a 64-bit program on a 64-bit operating system). A similar error message appeared at the same point of installation progress, but with another combination of numbers and letters in brackets.

  • I need to create a fillable form and then generate a reports.

    Hello everybody. I need to create a fillable form and then generate a report using numbers. You know, for example if you have customers, I need to be able to write the usual , name, last name, address, and some other details and then using a standard letter I would like the form to be able to populate these fields automatically in a standard pre formatted letter by our company and then be able to print it.
    Any help to point me in the right direction I would appretiate very much.
    I have iwork 9 installed in my macbook pro

    This is acalled a mail merge and is solved using a combination of Numbers (or address book) and Pages.  To get detailed help how to performa a mail merge start in Pages, then in the help menu type Mail Merge:
    Also download the help files for Numbers and Pages here:
    http://support.apple.com/manuals/#
    Page 247 in the Pages User's Guide has details how to perform a a mail merge.
    Post back with specific questions if you need to.
    Regards,
    Wayne

  • Does my mac have a virus?

        Occasssionally over the last couple months while on the internet I notice this alert box that shows up it usually reads "about/blank.." followed by different combinations of numbers. It doesn't remain there long (i've tried to screen shot it) then dissapears. It will reappear and dissapear a couple more times and if I don't turn off my Airport controls and sever the internet connection it will eventually freeze my computer and I will have to power it off manually. I was told when purchasing the MacBook Pro that it did not need any virus protection software, however, now-a-days I realize Macs are more popular, therefore having a greater possiblity to be suseptable to newly developing viruses. My friend said I should download some AVG for Macs, which sounds good, but he's a PC man and I just wanted to check with you Mac professionals first!
    Thank you,   Tasha6797

    You probably don't have a virus - what you may have are 'browser redirects' and you can read about them and how to prevent them at -> http://www.reedcorner.net/eliminating-browser-redirects-and-advertisements/.
    Just in case you want to give your drive aa 'one-over' virus scan, I would recommend Sophos for Mac. It's good, free and comes with an uninstaller that actually works. Stay away from any commercial AV software as it tends to batter your system and can actually cause damage.
    After you've done a one-time scan of your hard drive you can keep Sophos running or uninstall it - it's your call. I keep it installed just to scan my Downloads and email folders.
    Good luck,
    Clinton

  • Can't print to Ricoh Laser AP2600 even after proper driver installed. Help?

    Have a Ricoh Laser AP2600, and a new MacBook Pro with 10.6.3.
    Connected the two with an Ethernet cable (the same Ethernet cable I've used successfully for years with this same printer -- it's the right cable). Turned printer on; "Ready to Print" it says.
    At first just tried printing without making any downloads or installations, a simple TextEdit document, using the default "Generic Postscript Printer" as the selected printer "driver." Nothing happens -- the computer does not even seem to "recognize" that a printer is connected. Get the message "Connecting to printer..." and then "Unable to connect to printer; will retry in 30 seconds....", and it never succeeds.
    Then I searched on the computer for a Ricoh Laser AP2600 driver that may have come with the 10.6.3 install: no such luck.
    Then I found the page at the Ricoh site that supposedly has the proper driver:
    http://support.ricoh.com/bb/html/drute/ra/model/p26a/p26aen.htm#MacOS%20X%2010.6
    "MacOS X 10.6 PPD Installer Ver.1.3.0 24/04/2008"
    Downloaded it, ran the installer, it was installed.
    Went to the "Print and Fax" section of the System Preferences, then added the printer to the printer list by finding its IP address and manually entering it. Succeeded. Proper printer with an icon that looks exactly like my Ricoh Laser AP2600 added to the printer list. Selected it as my default printer. Closed Print SysPref dialog box.
    Went back to random TextEdit document, tried printing again. My Ricoh Laser AP2600 appeared as the chosen printer, as hoped, and then I hit "Print," and the Printing Queue window opened. But once again, it was unable to connect to the printer.
    Went back to the System Preferences printing pane, the Ricoh is listed on the left and has a green dot next to it, which supposedly indicates that it is OK and ready to print.
    I went to Finder and the Library/Printers/PPDs/Contents/Resources to insure that the Ricoh Laser AP2600 PPD was there. It was definitely there, along with all alternate nearby variations ("AP2600 PS," "Aficio AP2600," etc.).
    Tried printing again. No luck. Tried turning off printer and waiting for a few minutes, unplugged the cable, then turning it back on, replugging back in, printing again, no luck. Tried the same after re-choosing the generic printer driver, no luck. Tried the other kind of generic printer driver, no luck.
    Help! This printer works GREAT when it works, and I don't want to have to buy a new one. It worked perfectly fine (and continues to work perfectly fine) when I connect to it with my old PowerBook running 10.4.11. Nothing's wrong with the printer, nor with my MacBook Pro -- all that is missing apparently is the right software or drivers or whatever to make it work.
    Any suggestions?

    Hooray!
    Using your instructions, I finally got the computer to recognize and "ping" the existence of the printer. Once I got that far, it was easy enough to do what was my original goal, to set up a "printer" in the System Preference "Print & Fax" pane and successfully print a document, which I did.
    One of the glitch-y final difficulties was that the printer has no way to make any IP address with fewer than 3 digits per field, so that I can't actually make it have the address "14.22.33.44," but rather it must necessarily be "014.022.033.044." While that may seem like a completely unimportant and dismissable detail to an expert such as yourself, to a networking newbie like me it throws one final dilemma in my way: Are the zeros "ignorable" or are they an essential part of the printer's IP? I tried setting the computer's IP with and without the zeros, and then pinging the printer with and without the zeros, and finally on the last configuration -- printer itself with zeros, computer without zeros, pinging of printer's IP without zeros -- the ping succeeded. A little counter-intuitive, but who am I to complain?
    So, for the record, to help all the world's Ricoh printer owners out there, assuming this thread will forever be archived: here is a summary of...
    *How to make a Ricoh Laser AP2600 work with a 2010-era Mac running Snow Leopard 10.6.3*:
    Go to Ricoh's "printer driver" Web page at one of these two URLs:
    http://support.ricoh.com/bb/html/drute/ra/model/p26a/p26aen.htm
    or
    http://www.ricoh-usa.com/downloads/downloads.asp?tsn=Ricoh-USA&path=http://suppo rt.ricoh.com/bb/html/drute/rc2/model/p26L/p26Len.htm
    ...and click on "MacOS X 10.6 PPD Installer Ver.1.3.0".
    Once downloaded, run the installer's "package" which will place the necessary Ricoh printer drivers in Finder>Library/Printers/PPDs/Contents/Resources (you can check to make sure, if you want.)
    Turn on the Ricoh, connect it to your Mac with an Ethernet cable. On the Ricoh's little display/button area, press "Menu" and then using the "Up" and "Down" arrows buttons and the "Enter" and "Escape" buttons, scroll through its menus like so: Menu/Host Interface/Network Setup/IP Address until you find the IP address, which likely will be listed as 011.022.033.044. You can leave it as that or change it to anything else you want. But then go to Menu/Host Interface/Network Setup/(etc.) and scroll through the other options: Change "Subnet Mask" to 255.255.255.000, but make sure to leave all the other settings at 000.000.000.000. Escape back to the "Ready" state.
    Turn of the Ricoh, wait a bit, and turn it back on, and scroll back to the IP Address and Subnet Mask to make sure the settings were "remembered." If they weren't for some reason, try again.
    Then, on your Mac, go to "System Preferences> Network", click on "Ethernet" on the left column, and in the drop-down menu "Configure IPv4" choose "Manually." Then in the "IP Address" field type in whatever IP address you entered for the printer *but make the final number one digit higher*. Also, *leave off any initial zeros*. Thus, if you left the printer's IP at 011.022.033.044, then make your computer's IP be 11.22.33.45; and so on for any combination of numbers. In the "Subnet Mask" field, enter 255.255.255.0. Leave all the other fields blank. Click "Apply."
    Then go to "Applications>Utilities>Network Utility," open the program, make sure the Ethernet cable is plugged in and the printer is on and the green "Ready" light is illuminated, and click on "Network Utility" "Ping" pane, and enter as the address to Ping your printer's IP address *lacking the initial zeros.* Thus, in our example, enter 11.22.33.44. Click the "Ping" button, and if the program shows pinging happening and a "0% packet loss," then you're connected. If not, go back to the beginning and try again, double-checking each step.
    Once you have pinged successfully and are connected, go to System Preferences>Print & Fax, click on the "+" symbol under the list of printers to add a new printer. In the "Add Printer" window that pops up, leave it on "Line Printer Daemon - LPD" Protocol, and enter in to the "Address" line your printer's IP address, *leaving off any initial zeros*.
    If the "Print Using" menu automatically detects and chooses "Ricoh Laser AP2600 PS" as the printer driver, then you're set to go; if not, and it remains on "Generic Postscript Printer Driver" or something similar, then in the drop-down menu choose "Select Printer Software" and scroll to near the bottom and choose the proper printer driver, presumably "Ricoh Laser AP2600 PS" (or whatever your exact model is). "Name" it whatever you want. Leave "Queue" and "Location" blank.
    Click "Add" and your printer will appear in the list of printers in the "Print & Fax" panel. In the "Default Printer" drop-down menu, choose your new printer as the default. Close System Preferences.
    That's it! You should be able to print now. Open a document, choose the "Print" command, check to make sure the Ricoh is the chosen printer in the print dialog box, and that everything is plugged in and turned on, then click "Print." Hopefully, the Ricoh will spit out your document in a second or two! If not, go back and go through the steps again. If it worked for me, it should work for you.

  • Branch office dial backup design

    I'm having more trouble with this than I think I should.
    I have 10 small branch offices connected to the home office via frame-relay -- it's purely hub-and-spoke, with no PVC's between branch offices, everything goes to the central office. I'm trying to set up a POTS dial scenario to replicate this. Each branch has a 26xx with a two-port serial card, two analog modems and two POTS lines. The central office has an ISDN PRI terminating in a 3725 with MICA modems.
    I can get a branch router to dial on one or both lines (multilink ppp), and the 3725 receives the call. CHAP negotiation works. Where I'm having trouble is in the IP routing. I've tried countless combinations of numbered and unnumbered interfaces, dialer-based ip pool on the 3725, EIGRP and/or floating static routes, etc., etc. Nevertheless, I can't get correct ip routes established, and I feel like I'm banging my head against the wall now. None of the edsign docs I can find on the Web site directly address my scenario in a way I can understand. Any suggestions?

    This is my config for our 3640.
    interface Group-Async1
    ip unnumbered Serial1/0:23
    encapsulation ppp
    no ip mroute-cache
    dialer in-band
    dialer idle-timeout 1200
    dialer map ip 170.1.1.16 name bri01rt01ec
    dialer-group 1
    async mode interactive
    peer default ip address pool default
    ppp authentication pap chap ca
    ip route 192.168.16.0 255.255.255.0 172.17.1.6-----our PIX
    ip route 192.168.16.0 255.255.255.0 170.1.1.16 200---Ip address of modem that dials in from 1750.
    This config looks fine to me..what does everyone think?

  • Serial number problem with aperture registration

    I bought Aperture several months ago, and am trying to download it to my MacPro laptop (2ghz Intel Core). I have the original box with the original stickers etc but I've tried every combination of numbers on the stickers (including the one that looks most obviously like a serial number), and all I keep getting is a message saying that it's not a valid serial number, and - eventually - the machine cuts me off and I have to start over (and over and over and over...).
    Can anyone tell me what how the serial number is formatted (letter first or 10 numbers or anything that'll give me a clue)? Or what I should do?
    Getting to the local Apple Store is a pain. I don't want to have to drive back, explain I bought it three months ago etc etc.
    Any suggestions?
    Thanks...

    This might help:
    http://docs.info.apple.com/article.html?artnum=303184
    If doesn't help I'd suggest to contact Aperture customer support.
    iMac 20" 2.1 Ghz 1.5Gb RAM - Mac OS 10.4.8    

  • IMac is not detecting my home wifi

    Hello everyone,
    My home wifi have been working great for many many yrs. I have 3 iPads, 2 MBP, 1 iMac and 2 iPhones in this home and all are connected to my wifi with absolutely no problem.
    Today I restarted my iMac and suddenly my iMac can no longer detect my wifi. When everything else at home is able with no problems. I have restarted the iMac a few times. Any ideas?
    Joanne

    So this is what is happening to my iphone.
    Before iCloud, it has always been just mobileme or my iMac synching my contacts and I never had problems with it.
    The iCloud came and we all have to agree its handy to have. But I noticed that everytime when I add a new contact to my iphone, iCloud gets the new contact but when I sync with my iMac, my iMac (Address Book) doesnt get that copy. I didn't know about this at all.
    I usually do spring cleaning of my contact every few months and it is a lot easier to do on my desktop than on my iphone. So while I was going through my contacts on my desktop, I noticed some numbers were wrongly placed like, it is under "work" instead of "mobile" so I will get that corrected and also delete some contacts I no longer need. While doing this, I notice that some new numbers I added on my iphone wasnt on my address book in my desktop. Then I tried synching and noticed that whatever correction I did on my desktop wasn't going into my iphone as well. Thats when I realized that my iMac and my iphone's address book is no longer talking to each other. And when I look at my address book on my iphone properly, I am seeing that "unified contacts" and its combining all numbers and contacts. So under a friend's name, I would have 2 mobile numbers and 2 home numbers which are exactly the same respectively.
    Hope that made sense.
    I just want all these 3 locations, when I add or edit a contact, to be the same. Can this be done and if not, why the **** not? Why would they want to make them all different? Isn't Apple a lot better than this. This is the first time I see the eco system so badly turned out.
    PS: should I have put all these in the other thread?
    Joanne

Maybe you are looking for

  • Problems in using EP API in web dynpro

    Hi all, I am using of the UME API of EP in my web dynpro application. I have inlcuded the 'com.sap.security.jar' file in my build path and did a local build and deployed the application on my development system, it works well. But while moving the sa

  • Pictures in slideshow and thumbnails are cut off

    Hi! I love that it's so easy to create a slideshow. But I don't see a customizable option to not have my slideshow "fit to designated space". I don't mind the thumbnails getting cut off (better than being resized a weird resolution) but when viewed i

  • Quick Time opens internet.wmv files as text files

    I'm trying to open internet video files that are generally .wmv files. Quick time does not open them, rather they open in a text format. Ideas? Thanks!

  • Manage Day Level in BPC Dimension

    Hi Experts, Need your external point of view and analysis, A client need to manage their Gross Sales at Day Level. we though to manage this in a specific model , by using  a standard Time Dimension , and then a User defined Dimension to manage the da

  • Corrupted file or cs4 problem?

    I encountered this thing that while testing my movie in flash cs4, the movie hanged and I can't click anything, the closest possible thing that I can did was to restart the computer. Then I tried reoprning the file and my Cs4 crashes.. what's the cau