Combination question

Hi all
I wonder if someone can help me with this.
I have an XML database in the following format:
-- Main Questions (Level0)
Q1
Q2
Q3
Q4
Each of these questions load another set of questions as follows: (Level1)
<subQ>SubQ1
              SubQ2
               SubQ3
               SubQ4</SubQ>
Once the user clicks on any of the subquestions, the question is gone and the others rewritten. For example, if the user clicks on SubQ1 the output is as follows: (level2)
SubQ2 (re-written)
SubQ3(re-written)
SubQ4(re-written)
Or of the user clicks on SubQ2 the output should be as follows:
SubQ1(re-written)
SubQ3(re-written)
SubQ4(re-written)
The re-written questions will be specified in the XML databases as follows:
<q1> SubQ1(re-written)</q2>
<q2>SubQ2(re-written)</q2>
<q3>SubQ3(re-written)</q3>
<q4>SubQ4(re-written)</q4>
So far my code is as follows:
global 
level1,gmain
on 
mouseDown (me)pointClicked =
_mouse.mouseLoc
thisSprite =
sprite(me.spriteNum)currentMember = thisSprite.
member
lineNum = thisSprite.
pointToLine(pointClicked)lineText = currentMember.
line[lineNum]
-- level 0 (Main Questions)
If 
level1 = VOID and lineN)um = 1 then  
member 
("container").text = gmain[1].Architecture.MainQuestions["!CHARDATA"]level1=
"a"
   else
-- level1 (Sub Questions of main questions)
 if 
level1 = "a" AND lineNum = 1 then  
member 
("container").text = gmain[1].Architecture.SubQuestions1["!CHARDATA"] --the subquestions of question1  
level1=
"two"
 else 
if 
level1 = "b" AND lineNum = 1 then  
member 
("container").text = gmain[1].Architecture.Q2["!CHARDATA"] & gmain[1].Architecture.Q3["!CHARDATA"] & & gmain[1].Architecture.Q4["!CHARDATA"] 
level1= "three"
end if 
end if 
end if 
end 
Going from the main questions to the subquestions (level1=VOID -> Level1="a") is easy. However, When the user clicks on any of the subquestions (and given that he can click only one question/time) its extremely tedious to write all the combinations by hand. For example, if the subquestions are 4 the last part of the above code should read as follows. Since we want the clicked question eliminated, we end up with 4 combinations of three numbers/questions.
if level1 = "b" AND lineNum = 1 then
member ("container").text = gmain[1].Architecture.Q2["!CHARDATA"] & gmain[1].Architecture.Q3["!CHARDATA"] & gmain[1].Architecture.Q4["!CHARDATA"]
if level1 = "b" AND lineNum = 2 then
member ("container").text = gmain[1].Architecture.Q1["!CHARDATA"] & gmain[1].Architecture.Q3["!CHARDATA"] &gmain[1].Architecture.Q4["!CHARDATA"]
combination = "two"
if level1 = "b" AND lineNum = 3 then
member ("container").text = gmain[1].Architecture.Q1["!CHARDATA"] & gmain[1].Architecture.Q2["!CHARDATA"] & gmain[1].Architecture.Q4["!CHARDATA"]
combination = "three"
if level1 = "b" AND lineNum = 4 then
member ("container").text = gmain[1].Architecture.Q1["!CHARDATA"] & gmain[1].Architecture.Q2["!CHARDATA"] & & gmain[1].Architecture.Q3["!CHARDATA"]
If you want to go one level down you will end up with 6 combinations (2 x 2 x 2) of numbers/questions as follows
if level1 = "c" AND lineNum = 1 then
member ("container").text = gmain[1].Architecture.Q3_1["!CHARDATA"] & gmain[1].Architecture.Q4_1["!CHARDATA"]
if level1 = "c" AND lineNum = 2 then
member ("container").text = gmain[1].Architecture.Q2_1["!CHARDATA"] & gmain[1].Architecture.Q4_1["!CHARDATA"]
if level1 = "c" AND lineNum = 3 then
member ("container").text = gmain[1].Architecture.Q2_1["!CHARDATA"] & gmain[1].Architecture.Q3_1["!CHARDATA"]
if level1 = "c" AND lineNum = 2 AND combination = "two" then
member ("container").text = gmain[1].Architecture.Q1_1["!CHARDATA"] &gmain[1].Architecture.Q4_1["!CHARDATA"]
if level1 = "c" AND lineNum = 3 AND combination = "two" then
member ("container").text = gmain[1].Architecture.Q1_1["!CHARDATA"] &gmain[1].Architecture.Q3_1["!CHARDATA"]
if level1 = "c" AND lineNum = 3 AND combination = "three" then
member ("container").text = gmain[1].Architecture.Q1["!CHARDATA"] & gmain[1].Architecture.Q2["!CHARDATA"]
As this is a rather sloppy way of writing code is there any other way to do it?
Many thanks for any help!!!

Thanks. I tried manual setting on 3-4-4-8 but the computer will just locked up during the memory detection. It won't even go into BIOS setup when I hit delete after a reboot. Had to remove the 256MB pair, boot again and set back to auto. Then after making sure windows could be loaded before I put back the 256MB pair. All 4 sticks still running on 166MHz now.
Here's the background story:
The rig was originally running 2x 512MB double-sided CL2.5 RAM for the past 2 years. One of the 512MB stick was spoilt when I added in another 2x 256MB single-side from an older computer. Exchanged the 2x 512MB CL2.5 double-sided from the TwinMOS service center for 2x 512MB CL3 single-side RAM. I can confirm that the motherboard has no problem working with
(1) 2x 512MB CL2.5 double-side; or
(2) 2x 512MB CL3 single-side; or
(3) 2x 256MB CL2.5 single-side
at 200MHz separately (all TwinMOS). To reiterate the problem, (2) and (3) together can now only run at 166MHz instead of 200MHz as indicated by the manual.
Isn't all voltages for DDR RAM standardised 2.5V?
Not sure what's the actual 12V amperage, but it's rated at 17A for both rails:
http://alevtav.com/products.php?model_ID=1
The 512MB pair makes a world of difference compared to 256MB pair.

Similar Messages

  • Generating all possible combinations question

    i'm trying to generate all possible combinations for several single column tables each with one string column.
    so - if table 1 has values (aa, ab, ac)
    table 2 has values (zz, zx)
    table 3 has values (qw, qe)
    the result set would contain all possible combinations:
    aa, ab, ac, zz, zx, qw, qe, aazz, aazx, aaqw, aaqe, aazzqw, aazzqe, aazxqw, aazxqe...etc.
    I've tried cross joins - but that does not get the smaller combinations.
    I've looked at some code examples but they seem to be focused on single letter or number combinations.
    I need to do this using tsql.
    code examples or links to such would be of much help.
    Thanks.

    Something like this might work:
    with t1 as (
    select val from table1
    union all
    select ''
    ), t2 as (
    select val from table2
    union all
    select ''
    , t3 as (
    Select val from table3
    union all
    select ''
    select t1.val + t2.val + t3.val
    from t1 cross join t2 cross join t3
    Russel Loski, MCT, MCSE Data Platform/Business Intelligence. Twitter: @sqlmovers; blog: www.sqlmovers.com

  • Question Slide Buttons

    I have an assessment that I created that uses a combines
    question slides with interactive slides. I would like all of the
    slides to uniform. The question slides were automatically created
    with buttons to Back, Skip and Submit. These slides also added a
    review area and a text box with question 1 of 15. I would like to
    add these items to the interactive slides, but the program does not
    allow these items to be copied. Can these items be added to a slide
    not created as a question slide? If so, how is this done?

    Hi Carol
    Taking your questions one by one:
    -- You can change the standard quiz question buttons (Clear,
    Back, Next, and Submit) by double-clicking them and changing the
    button settings. This enables you, for example, to change them to
    Image buttons (as in Rick's demo).
    -- You can't remove the navigation (defined on the Options
    tab in the Question properties dialog) from the Success and Failure
    captions -- it is built in
    -- You can't add your own custom navigation buttons to quiz
    questions using buttons or click boxes -- these options are greyed
    out on question slides -- so you have to make use of the regular
    quiz question buttons
    -- The difference between the Skip (sometimes labelled Next)
    button and the Submit button is that it navigates directly to the
    next slide without submitting an answer to the current slide. When
    the button is labelled Next, users often click this button in error
    without realizing that they have failed to submit their selection
    as an answer.
    -- I'm afraid I have no experience of the blue asterisks
    resulting from the hot spot Quiz slides. I'd be interested in what
    others have to say about this issue.
    Best regards,
    -Matthew

  • Nano 3 problems with OX v.1039

    this is a combination question--i have a Mac G5 OS X v.10.3.9--i am able to use my ipod (gen5) with it no problem--however, having just purchased a new nano 3--itunes will NOT support it--saying-- that it needs OS X v.10.4 or higher. my questions are a) do i need to upgrade to the latest (Leopard) software--note--this Mac does NOT have an intel chip, so what upgrade do i use. b) if i do upgrade my Mac, will i lose the ability to talk to my gen5 ipod? thank you

    Welcome To  Discussions moeron81!
    No. You must use this one Mac OS X v10.4.6 (DVD) Retail Box.
    Additional info in these links.
    Using OS X Install CDs/DVDs On Multiple Macs
    What's A Computer Specific Mac OS X Release
    Software Update, Upgrade: What's The Difference?
    ali b

  • Pass/Fail Assessments

    I am using Captivate 3 and am looking for resources that can guide me through creating an assessment in a pass/fail mode.  I have created assessments, and have created quizzes, but need to bring the two together to record a demonstration of a software package we use, then launch an assessment that requires the user to get XX percent of mouse clicks, etc. correct in order to pass the assessment.  I know that I can use failure captions and set the number of tries a user is allowed, but have not been able to determine a way to set it up as pass/fail.
    Thanks for your assistance.

    Hello,
    No problem with CP. First you will have to determine the mastery score, what is needed to Pass. This has to be done in the Quiz, Preferences, Pass or Fail, Pass options. You can combine Question slides with assessment, where the user has to use interactive objects to be scored. An overview of scored Question slides and interactive objects can be seen in the view 'Advanced Interaction' (menu Project). Then you will have to set the Reporting (also in Quiz Preferences), depending on the SCORM version (do not know Plateau myself). It is possible to report Pass/fail as you will see in those settings.
    Hope this can be a start.
    Lilybiri

  • Mounted drive during backup

    Hi Everyone,
    This is sort of a combination question...
    1. I did my initial backup overnight for 111GB. This morning, it was at 102GB and then seemed to complete at 104GB instead of going all the way to 111GB. Is this normal?
    2. The mounted drive during backup that says "Backup of Courtney's iMac" (in my case) did not un-mount after the backup completed. Isn't it supposed to?
    Thanks for your help, whoever you may be!
    Courtney

    This is what it does on several machines here...
    3/31/08 12:46:11 PM /System/Library/CoreServices/backupd[805] Starting standard backup
    3/31/08 12:46:12 PM /System/Library/CoreServices/backupd[805] Mounting disk image /Volumes/momsTM_backup/dadspowerbook000a95ceee66.sparsebundle
    3/31/08 12:46:14 PM hdiejectd[815] running
    3/31/08 12:46:16 PM /System/Library/CoreServices/backupd[805] Disk image mounted at: /Volumes/Backup of dadspowerbook
    3/31/08 12:46:16 PM /System/Library/CoreServices/backupd[805] Backing up to: /Volumes/Backup of dadspowerbook/Backups.backupdb
    3/31/08 12:46:31 PM /System/Library/CoreServices/backupd[805] Backup requested due to disk attach
    3/31/08 12:46:47 PM /System/Library/CoreServices/backupd[805] No pre-backup thinning needed: 203.1 MB requested (including padding), 204.78 GB available
    3/31/08 12:48:31 PM /System/Library/CoreServices/backupd[805] Copied 756 files (85 KB) from volume dad's powerbook.
    3/31/08 12:48:32 PM /System/Library/CoreServices/backupd[805] No pre-backup thinning needed: 203.0 MB requested (including padding), 204.78 GB available
    3/31/08 12:49:22 PM /System/Library/CoreServices/backupd[805] Copied 431 files (0 bytes) from volume dad's powerbook.
    3/31/08 12:49:36 PM /System/Library/CoreServices/backupd[805] Starting post-backup thinning
    3/31/08 12:50:04 PM /System/Library/CoreServices/backupd[805] Deleted backup /Volumes/Backup of dadspowerbook/Backups.backupdb/dadspowerbook/2008-03-30-114907: 204.78 GB now available
    3/31/08 12:50:04 PM /System/Library/CoreServices/backupd[805] Post-back up thinning complete: 1 expired backups removed
    3/31/08 12:50:04 PM /System/Library/CoreServices/backupd[805] Backup completed successfully.
    3/31/08 12:50:16 PM /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder[143] StatusMonitor::volumesChangedCallBack returned -47
    3/31/08 12:50:16 PM /System/Library/CoreServices/backupd[805] Ejected Time Machine disk image.
    3/31/08 12:50:17 PM kernel AFP_VFS afpfs_unmount: /Volumes/momsTMbackup, flags 0, pid 828
    TM finds its disk image, does it's thing then ejects the disk image
    - gws

  • Did I Dream It? Combined FCE/FCP Questions In Final Cut Forum?

    I am sure that for the last few weeks the Final Cut Forum has combined the questions from both FCE and FCP.
    Then yesterday - NOTHING! Just a doorway for entering FCE, FCP, LiveType etc.
    Did I dream it?
    I actually liked the combination of the 2 sites.
    Did anyone else?
    Ian.

    It's off temporarily: http://discussions.apple.com/thread.jspa?threadID=260337&tstart=0

  • Where clause with a combination of And and Or statements - Basic question

    Hi,
    I have a where clause with a combination of And and Or statements... May I know which one would run first
    Here is the sample
    WHERE SITE_NAME = 'Q' AND ET_NAME IN ('12', '15') AND TEST_DATE > DATE OR SITE_NAME = 'E' AND ET_NAME IN ('19', '20')
    can you please explain how this combination works
    Thanks in advance

    Hi,
    This reminds me of a great story. It's so good, it probably didn't really happen, but it's so good, I'm going to repeat it anyway.
    IBM once had an "executive apptitude test" that they would give to job applicants. There were some questions you might call general knowlege or trivia questions, and each question had a weight (for example, answering an unimportant queestion might score one point, an important question might be 5 points.) One of the questions was "What is the standard width of a mobile home?", and the weight of the question was -20: answering the question correctly did serious harm to your score. The reasoning was that the more you knew about mobile homes, the less likely you were to be their kind of executive.
    Now, as to your question, the correct answer is: I don't know. I don't want to know. Mixing ANDs and ORs without grouping them in parentheses is a really bad idea. Even if you get it right, it's going to confuse the next person who has to look at that code. Use parentheses to make sure the code is doing what you want it to do.
    If you really want to find out, it's documented in the SQL language manual. Look up "Operators, prcedence"
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/operators001.htm#sthref815
    You can easily do an experiment, using scott.emp, or even dual, where
    WHERE  (x AND y)
    OR      zproduces different results from
    WHERE   x
    AND     (y OR z)

  • Question related to combining rows...

    Hi,
    I have a question related to combining rows...
    From our typical tables.... Dept and Emp.
    I want a result set like....
    Dept# | Employees
    10 | <Emp1>, <Emp5>, <Emp6>
    20 | <Emp7>, <Emp2>, <Emp8>, <Emp9>
    30 | <Emp10>, <Emp11>
    40 | <Emp12>
    Plesae give me the query...
    Thanks
    Abdul.

    How about this solution looks like?
    create or replace
    function fnc_concat_data(p_query VARCHAR2,P_ID NUMBER) RETURN VARCHAR2
    AS
    type res_tab is table of varchar2(20);
    result_tab res_tab;
    v_retval varchar2(256);
    begin
    execute immediate p_query || p_id BULK COLLECT into result_tab;
    FOR i IN 1..result_tab.COUNT LOOP
    v_retval := v_retval||','||result_tab(i);
    END LOOP;
    v_retval := substr(v_retval,2);
    return (v_retval);
    exception
    when others then
    return('Error');
    end fnc_concat_data;
    sql> select deptno, fnc_concat_data('select ename from emp where deptno=', deptno) employees from emp group by deptno
    deptno employees
    30     ALLEN,WARD,MARTIN,BLAKE,TURNER,JAMES
    20     SMITH,JONES,SCOTT,ADAMS,FORD
    10     CLARK,KING,MILLER

  • Combining scored interactions and questions - navigation settings

    I'm trying to get to grips with the way the Preferences > Quiz > Settings > Requried options work when my quiz combines both scored interactive objects and questions.
    I'm currently using Cp4 but would be interested to know if Cp5 behaves the same.
    Am I right in thinking that the effects of the different options are:
    Optional
    The learner can scrub back and forth with the playbar as much as they like without restrictions.
    Required
    The learner can scrub back and forth without restriction, but only up to the last slide with a scored interaction or question. To get further into the lesson they have to click any one of the previous scored interations, or submit a single question answer (wrong or right).
    Pass Requried
    I couldn't figure this out at all! I set a pass score, had a load of scored interactions and questions, but the learner could scrub right through the slides with scored interactions into later slides that weren't scored. Ah well, good job I'll be using the LMS to manage pass/fail
    Edit: Oh, it looks like this only comes into play if I select 'show score at end of quiz' - you can only ontinue past the results page if you achieve the pass score.
    Answer all
    Learner can scrub to the end of any slide with a scored interaction or question, but to get to the next slide must either click the interaction or submit an answer (right or wrong). And if the next slide also has a scored object, repeat. Once they've 'unlocked' a slide they can scrub out and back into it in the same session.
    Any observations on that?
    Obviously learners won't be able to scrub back if backward movement/review is disallowed.
    Incidentally, I did notice that the point Cp locks the slide seems on 'answer all' to have some very odd properties. If I removed the pause from the click box, or the learner clicks play at the pause, then it carries on into a kind of phantom frame - with no captions or slide background - but the click box still works, if you know where on the screen to aim for!
    Does anyone know a way to modify that locking frame to provide some info for the learner on what they need to do to progress?
    Thanks

    Hi BrightonJon
    For the back movement there is an additional field. "Allow Back Movement" (or close to that)
    Required only mentions that you cannot skip until you have answered
    Pass Required means that you have to answer it correct to continue
    These are about single questions.
    A locking frame often happens at strange places. I have it most often using advanced actions.
    Best TD

  • I switched to the classic 'landscape' and when i reboot, it just stays at the greay screen, with the macintosh logo, and a blinking question mark. ive tried several methods of key combinations with rebooting etc.. i just bought this. please help.

    i switched to the classic 'landscape' and when i reboot, it just stays at the greay screen, with the macintosh logo, and a blinking question mark. ive tried several methods of key combinations with rebooting etc.. i just bought this. please help.
    I bought this off of craigslist with my christmas money, TODAY. i really need help, i have OS X experience from school, just not OS 9x. I need to reboot back to OS X asap. anything that may help is very appreciated. Thank You.
    Chris.

    Are you able to start up in Safe Mode?
    http://support.apple.com/kb/HT1455?viewlocale=en_US
    If this works you will see the normal desktop Once completely started up in Safe Mode, try to restart normally and go to Applications > Utilities > Disk Utility. Click on the top hard drive icon in the left sidebar and note the S.M.A.R.T. status at the bottom right of the pane. What does it say?
    Select the named boot volume in the left sidebar, ("Macintosh HD" unless it has been renamed). What is the hard drive capacity and how much space remains available on it? Repair permissions on it.
    See if you are able to do a little hard drive maintenance to help things out.

  • Beginner Acrobat Combine Files questions

    1. I'm trying to combine files that includes an IRS fillable form pdf file. I believe the warning when I try to Combine Files calls it an Adobe XML file.
    Is there a way to combine into one?
    Can I change it to a "regular" pdf and then combine?
    2. As another alternative, I tried to create a PDF Portfolio. I know nothing about PDF Portfolio. I got the files into PDF Portfolio but not in the correct order. Read the Help and it does not look like I can reorder. Is that true?
    Thanks for any help

    Bill@VT, thank you very much for the help. Not very user friendly of the IRS. Surprised... guess not.
    A beginner forum question since I'm new here or rather an infrequent visitor to the Adobe forums.
    Did you send me the last post or did it get forwarded as a result of my Forum Preferences?
    I haven't been getting post replies and I'm trying to figure out what setting I have/had in error. Didn't get your first one, did your second.
    Thanks..

  • Free goods combination experts - business question!

    Hi gurus and experts
    can any body give me idea how to deal with free goods combinations( i have to deal with lot of combinations)  with the regular products.
    currently we are using r/3.not reatail .
    so for combiation of free goods(lot of combinations) does R/3 suppots or do we need to think about some thing.
    Any good documentaion?
    Pleaese forward to [email protected]
    EX: basicallcally very high volume of materials -baverages
    Any thoughts suggestions really great full.
    Thanks
    Prasad

    hi,
    check for the following OSS note on free goods :549505.
    this will help.
    reward points if helpful
    sriram.

  • Possible index combinations in 2D array - more Math Question than LabView???

    Hi All,
    I accidently submitted the first post.. please disregard the previous one.
    I am struggling with this problem. Please HELP!!!
    I have an array of numbers:
    Set1  50     62    73    82       91     96   100
    Set2  43     78    146  186     230   255
    Set3  0.25  2      6     12       20
    Set4  5       50    500   2000  8000
    Set5  5       50    500   2000  8000
    I need to create all possible combinations for Set1 through Set5.
    Example:
    {50, 43, 0.25, 5, 5}
    {50, 43, 0.25, 5, 50}
    {50, 43, 0.25, 5, 500}
    {50, 43, 0.25, 5, 2000}
    {50, 43, 0.25, 5, 8000}
    {50, 43, 0.25, 5, 5}
    {50, 43, 0.25, 50, 5}
    {50, 43, 0.25, 500, 5}
    {50, 43, 0.25, 2000, 5}
    {50, 43, 0.25, 8000, 5}
    {50, 43, 0.25, 5, 5}
    {50, 43, 2, 5, 5}
    {50, 43, 6, 5, 5}
    {50, 43, 12, 5, 5}
    {50, 43, 20, 5, 5}
    and so on....
    I just can't figure out how to loop this through to go through all possible combinations of the 5 sets. (
    Looking forward to your suggestions and help.
    Thanks,
    Mim
    Message Edited by Mim on 11-17-2005 11:26 AM

    You have to have 5 nested loops.
    Let's call your COLUMNS A-E and your ROWS 0-4:
    A0 B0 C0 D0 E0
    A1 B1 C1 D1 E1
    A2 B2 C2 D2 E2
    A3 B3 C3 D3 E3
    A4 B4 C4 D4 E5
    Extract all the COLUMNS.
    Take COLUMN A and autoindex it on the first (outside) loop:
    For i = 0 to 4
    Ax = A[i]
    Pass Column B THROUGH the first FOR loop and autoindex it on the second loop:
    For i = 0 to 4
    Bx = B[i] // autoindexing will do this for you
    Pass Column C THROUGH the first and second FOR loop and autoindex it on the third loop:
    For i = 0 to 4
    Cx = C[i] // autoindexing will do this for you
    and so on:
    For i = 0 to 4
    Dx = D[i] // autoindexing will do this for you
    For i = 0 to 4
    Ex = E[i] // autoindexing will do this for you
    Assemble Ax, Bx, Cx, Dx and Ex into a set and do with it what you want.
    Just do five nested loops and remember to autoindex A on the outside loop, B on the 2nd, C on the 3rd, D on the 4th, and E on the inside loop.
    I think you will get 5^5 combinations.Message Edited by CoastalMaineBird on 11-17-2005 10:44 AM
    Message Edited by CoastalMaineBird on 11-17-2005 10:45 AM
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • Question:  any recommendation on how to delete (or group to folder) numerous  duplicates in iPhoto. I create a folder, only to find it empty, and the photos in another unrelated folder, sometimes combined with those photos but other times bumping that alb

    Question:  any recommendations on how to delete (or group to folder to burn) many duplicate photos in iPhoto?   I had considered using  D Annhilator, but I saw several comments re: same to make me rethink this.  I have thousands, literally, duplicates.  It's like they reproduce overnight.  I cannot get a reasonable explanation re: why this is happening.  I thought I would start with "albums" and try to drag those to a burn folder, but that will take a long time. I hate to mess with "library" or "events" at this time.  Any help would be greatly appreciated.
    BrendaS

    Question:  any recommendations on how to delete (or group to folder to burn) many duplicate photos in iPhoto?   I had considered using  D Annhilator, but I saw several comments re: same to make me rethink this.  I have thousands, literally, duplicates.  It's like they reproduce overnight.  I cannot get a reasonable explanation re: why this is happening.  I thought I would start with "albums" and try to drag those to a burn folder, but that will take a long time. I hate to mess with "library" or "events" at this time.  Any help would be greatly appreciated.
    BrendaS

Maybe you are looking for

  • E-Recruiting and IE8

    <p>We are currently on E-Recruiting 6 with Enhancement Pack 3 SP level 5 with Netweaver 2004s (7.0) (support pack stack 20). </p> <p>PROBLEM <br> We did some testing with Internet Explorer 8 and the Candidate Web Dynpro seemed to work fine.  However,

  • Compare two collection in sharepoint

    Hii I want to Compare to collection in sharepoint example: Collection 1: "A","B","C" Collection 2:"A","B","D","E" Result should be: "C" Like in C#  List<string> result = list1.Except(list2).ToList(); I am new to programming Please help me.. regards 

  • API to purge customers 11.5.0 Oracle 10g

    Hi, Do you know if there is an API's that purge customers and all related objects from the database. Have you an idea? Thanks.

  • Crystal Reports vrsion 5 compatibilty with Oracle 11

    Hi, We are currently running Crystal Reports version 5 on Oracle version 10. Now we are migrating to Oracle version 11. Could you lt me know that whether Crstal Reports version 5 is compatible with version11.

  • Keep getting errors from application log that indicates transaction log is full but it has plenty of space

    Dealing with a 4rd party application that inserts into its log table, but watching sql profiler i see a ton of the same traffic.  Its trying to insert into the table, but generates an error that mentions the transaction log for that DB is full.  Well