Nominate games (or other programs) here to get featured on our Blog! (PART 2)

Not sure if it just ran out of sticky or was deliberately unstickied - will make sticky again.
Ran out. Wasn't sure if it was worthy to keep up. Seems so, but I think we need a new thread. This one is beginning to chug. Thanks, guys!
Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
Small Basic,
Wiki Ninjas,
Wiki)
Answer an interesting question?
Create a wiki article about it!

This game is similar to mastermind
You can guess the computer's code and it can guess yours
Still needs some touching up
turn = 1
attempt = 1
Positions = 3
start:
Positions = Positions + 1
CreateUI()
CompSetUp()
Sub CreateUI
  For z = 1 To 8 
    Shapes.HideShape(colourbutton[z])
    EndFor
  GraphicsWindow.Height = 700
  GraphicsWindow.FontSize = 20
  GraphicsWindow.Width = 702
  GraphicsWindow.BrushColor = "thistle"
  GraphicsWindow.FillRectangle(0, 0, 702, 700)
  ColourCaption[1] = "White"
  ColourCaption[2] = "Yellow"
  ColourCaption[3] = "Orange"
  ColourCaption[4] = "Pink"
  ColourCaption[5] = "Red"
  ColourCaption[6] = "Purple"
  ColourCaption[7] = "Blue"
  ColourCaption[8] = "Green"
  For q = 1 To 8
    GraphicsWindow.BrushColor = ColourCaption[q]
    colourbutton[q] = Controls.AddButton(ColourCaption[q], (q-1) * 88 , 660)
   Controls.SetSize(colourbutton[q], 85, 40)
   EndFor
   For turns = 1 To 10
 For m = 1 To Positions
     GraphicsWindow.BrushColor = "black"
     GraphicsWindow.FillEllipse(m * 10 * (13 - Positions), turns * 60, 10, 10)
   EndFor
   CorrectPos[turns] = Controls.AddTextBox((Positions + 1) * 10 * (13 - Positions), turns * 60)
   CorrectColour[turns] = Controls.AddTextBox((Positions + 2) * 10 * (13 - Positions), turns * 60)
   EndFor
  EndSub
Sub CompGuess
  CreateUI()
  For z = 1 To 8 
    Shapes.HideShape(colourbutton[z])
  EndFor
  For turn = 1 To 10
    GraphicsWindow.BrushColor = "Black"
    Thinking = Shapes.AddText("Thinking...")
    Shapes.Move(Thinking, 300, 10)
    nextturn:
For f = 1 To turn - 1
  CorrectGuess[f] = 0
  CorrectPos[f] = 0
        EndFor
For Choice = 1 To Positions
  back:
  Colour[turn][Choice] = Math.GetRandomNumber(8)
  For i = 1 To Choice - 1
    If Colour[turn][Choice] = Colour[turn][i] Then
      Goto back
    EndIf
  endfor
  For c = 1 To turn - 1
    For a = 1 To Positions
      If Colour[turn][Choice] = Colour[c][a] And Choice <> a Then
        CorrectGuess[c] = CorrectGuess[c] + 1
      ElseIf Colour[turn][Choice] = Colour[c][a] and Choice = a then
        CorrectPos[c] = CorrectPos[c] + 1
      EndIf
        EndFor
    EndFor
    EndFor
    For x = 1 To turn - 1
      If CorrectGuess[x] <> NumCorrect[x] Or CorrectPos[x] <> NumPosCorrect[x] Then
        Goto nextturn
        EndIf
      EndFor
      For thisChoice = 1 To Positions
        If Colour[turn][thisChoice] = 1 Then
          Col = "White"
        ElseIf Colour[turn][thisChoice] = 2 Then
          Col = "Yellow"
          ElseIf Colour[turn][thisChoice] = 3 Then
          Col = "Orange"
          ElseIf Colour[turn][thisChoice] = 4 Then
          Col = "Pink"
          ElseIf Colour[turn][thisChoice] = 5 Then
          Col = "Red"
          ElseIf Colour[turn][thisChoice] = 6 Then
          Col = "Purple"
          ElseIf Colour[turn][thisChoice] = 7 Then
          Col = "Blue"
          ElseIf Colour[turn][thisChoice] = 8 Then
          Col = "Green"
        EndIf
        Shapes.HideShape(Thinking)
        GraphicsWindow.BrushColor = Col
        GraphicsWindow.FillEllipse((thisChoice * 10 * (13 - Positions)) - 10, ((11 - turn) * 60) - 10, 30, 30)
      endfor
      For f = 1 To turn - 1
        CorrectGuess[f] = 0
        CorrectPos[f] = 0
      EndFor
      NumPosCorrect[turn] = -1
       NumCorrect[turn] = -1
       WaitOn:
      Controls.TextTyped = NumbersGiven
      If NumPosCorrect[turn] = Positions Then
          Correct()
        endif
        If NumPosCorrect[turn] = -1 Or  NumCorrect[turn] = -1 Then
          Goto WaitOn
          EndIf
          EndFor
EndSub
Sub NumbersGiven
  LastTextbox = Controls.LastTypedTextBox
  If LastTextbox = CorrectPos[11 - turn] Then
    NumPosCorrect[turn] = Controls.GetTextBoxText(CorrectPos[11 - turn])
  ElseIf LastTextbox = CorrectColour[11 - turn] then
    NumCorrect[turn] = Controls.GetTextBoxText(CorrectColour[11 - turn])
    EndIf
  endsub
Sub Correct
 GraphicsWindow.ShowMessage("I guessed right in only " + turn + " turns!", "Correct!")
 Compscore = Compscore + turn
 PersonScore = PersonScore + attempt
 If Positions = 6 Then
  If Compscore > PersonScore Then
    GraphicsWindow.ShowMessage("You Win!","Result")
  ElseIf Compscore < PersonScore then 
    GraphicsWindow.ShowMessage("You Lose!","Result")
  Elseif Compscore = PersonScore then
    GraphicsWindow.ShowMessage("Draw!","Result")
  EndIf
Else
  Goto start
  EndIf
  Program.End()
EndSub
Sub CompSetUp
  For Peg = 1 To Positions
    bookmark:
    Solution[peg] = Math.GetRandomNumber(8)
    For b = 1 To Peg - 1
      If Solution[peg] = Solution[b] Then
        Goto bookmark
      EndIf
    EndFor
    EndFor
    PersonGuess()
    EndSub
  Sub Personguess
    For attempt = 1 To 10
    RightColour[attempt] = 0
    RightSpot[attempt] = 0
    'GraphicsWindow.ShowMessage(Guess, Guess) 
    For guess = 1 To Positions
      solve[guess] = "nope"
      NoButton:
      Controls.ButtonClicked = ButtonClicked
      If solve[guess] = "White" Then
        Number[guess] = 1
        ElseIf solve[guess] = "Yellow" Then
          number[guess] = 2
          ElseIf solve[guess] = "Orange" Then
          number[guess] = 3
          ElseIf solve[guess] = "Pink" Then
          number[guess] = 4
          ElseIf solve[guess] = "Red" Then
          number[guess] = 5
          ElseIf solve[guess] = "Purple" Then
          number[guess] = 6
          ElseIf solve[guess] = "Blue" Then
          number[guess] = 7
          ElseIf solve[guess] = "Green" Then
            number[guess] = 8
          Else 
            Goto NoButton
          EndIf
        EndFor
        GiveResult()
        EndFor
          EndSub
          Sub ButtonClicked
            'GraphicsWindow.ShowMessage(Guess, Guess)
            Lastbutton = Controls.LastClickedButton
            decision = Controls.GetButtonCaption(Lastbutton)
            GraphicsWindow.BrushColor = decision
            GraphicsWindow.FillEllipse((Guess * 10 * (13 - Positions)) - 10, ((11 - attempt) * 60) - 10, 30, 30) 
            'GraphicsWindow.ShowMessage(Guess, Guess) 
            Solve[guess] = decision
          EndSub
          Sub GiveResult
        For t = 1 To Positions
          For r = 1 To Positions
            If Number[t] = Solution[r] And t <> r Then
              RightColour[attempt] = RightColour[attempt] + 1
            ElseIf Number[t] = Solution[r] And t = r then
              RightSpot[attempt] = RightSpot[attempt] + 1
              EndIf
              EndFor
            EndFor
            Controls.SetTextBoxText(CorrectPos[11 - attempt], RightSpot[attempt])
            Controls.SetTextBoxText(CorrectColour[11 - attempt], RightColour[attempt])
            If RightSpot[attempt] = Positions Then
              GraphicsWindow.ShowMessage("It took you " + attempt + " turns", "Correct!")
              CompGuess()
            EndIf
         ' GraphicsWindow.ShowMessage("k","k")
            EndSub
                      

Similar Messages

  • My MacBook pro 2012 Mountain Loin 8.2 don't clear the inactive memory automatically when memory needed for other program so I get page outs.

    My MacBook Pro 2012 Mountain Loin 8.2 doesn't clear the inactive memory automatically when memory needed for other program so I get page outs. There are much inactive memory when page outs. Why my mac does this?

    That's completely normal. If other programs require memory then the system will reallocate Inactive RAM as needed. Page Outs don't mean anything.
    About OS X Memory Management and Usage
    Reading system memory usage in Activity Monitor
    Memory Management in Mac OS X
    Performance Guidelines- Memory Management in Mac OS X
    A detailed look at memory usage in OS X
    Understanding top output in the Terminal
    The amount of available RAM for applications is the sum of Free RAM and Inactive RAM. This will change as applications are opened and closed or change from active to inactive status. The Swap figure represents an estimate of the total amount of swap space required for VM if used, but does not necessarily indicate the actual size of the existing swap file. If you are really in need of more RAM that would be indicated by how frequently the system uses VM. If you open the Terminal and run the top command at the prompt you will find information reported on Pageins () and Pageouts (). Pageouts () is the important figure. If the value in the parentheses is 0 (zero) then OS X is not making instantaneous use of VM which means you have adequate physical RAM for the system with the applications you have loaded. If the figure in parentheses is running positive and your hard drive is constantly being used (thrashing) then you need more physical RAM.
    Adding RAM only makes it possible to run more programs concurrently.  It doesn't speed up the computer nor make games run faster.  What it can do is prevent the system from having to use disk-based VM when it runs out of RAM because you are trying to run too many applications concurrently or using applications that are extremely RAM dependent.  It will improve the performance of applications that run mostly in RAM or when loading programs.

  • I am having a problem when I try to select a photo or itunes song in Imovie or other programs. I get a window with grey lettering that says: "Open Itunes to populate this list" or "Open iphoto to see photos from your iPhoto library in this list.  I have t

    I am having a problem when I try to select a photo or itunes song in Imovie or other programs. I get a window with grey lettering that says: "Open Itunes to populate this list" or "Open iphoto to see photos from your iPhoto library in this list.  I have tried relaunching programs and nothing appears. Seemed to start happening a while back after one of my system upgrades.

    After a a lengthy conversation with Apple Tech. ($20), my problem seems to be solves. The Iphoto problem solved by trashing the plist file. The Itunes was more involved. We had to create a new Itunes folder and import the files into the new folder; and then import the playlists.

  • My iphoto library won't show when trying to select a photo for other programs?

    I am having a problem when I try to select a photo or itunes song in Imovie or other programs. I get a window with grey lettering that says: "Open Itunes to populate this list" or "Open iphoto to see photos from your iPhoto library in this list.  I have tried relaunching programs and nothing appears. Seemed to start happening a while back after one of my system upgrades.

    What version of iPhoto?
    What version of the OS?
    Sounds like an issue with the iLife integration, rather than the apps.

  • Fix for iTunes and Stuttering Audio Upon Opening Other Programs

    This was answered for me in another mega thread, so I thought I would create it's own topic in hopes of helping as many people as possible.
    This is a fix for those that have the problem of iTunes 7 working fine alone, but when opening another program such as a game, etc., iTunes 7 begins to stutter and crackle. This fix assumes that otherwise, the program works correctly (gapless, and other issues are not a problem, no blue screens of death, etc.)
    First off my machine:
    Dell XPS 3.4 ghz Pentium Dual Core
    2 Gig RAM
    Creative SB X-Fi audio card, latest drivers installed
    Observed problem:
    Running iTunes 7, audio sounded fine, but opening another program such as UT2004 (first person shooter game) caused iTunes 7 to stutter and crackle.
    This was not an issue in iTunes 6.05. I had to upgrade as I just purchased the new Nano.
    As an aside, I have another sound card on my computer, an older Layla Echo 24 professional soundcard, drivers are about 3 years old. When selecting this card, this problem does not occur.
    The Fix:
    Close iTunes 7
    Upgrade your sound card drivers (just to eliminate that as an issue)
    Upgrade to latest Microsoft direct X version:
    http://www.microsoft.com/downloads/details.aspx?FamilyId=2DA43D38-DB71-4C1B-BC6A -9B6652CD92A3&displaylang=en
    Start
    Run
    Type: dxdiag
    Click "sound 1" or similarly named tab
    Slide bar to "basic acceleration" (mine was at full, and basic is two clicks to the left)
    Exit
    Restart iTunes 7, and startup music
    Open game, or other program
    Your music in iTunes 7 should now be stutter/crackle free
    This may not work for everybody, but it worked for me so I thought I would pass this along.
    Good luck!
    (resisting urge to type some snarky remark to Apple that somehow their programmers are indeed as human as Microsoft programmers)...oops...sorry about that.
    Dell XPS Windows XP Creative SB X-FI Audio Card
    Dell XPS   Windows XP  

    i was hopeful, but it didn't work. well teh one thing that i had to do diff was the dx updating, WGA doesn't like to work on my system for some unkown reason (yes it was bought at a store) so i found a way around their WGA check for it (i think) the one i got was labeled as dxwebupdate for august 2006. it updated just fine and it looks like it should be the same one as the newest update release microsoft sent out
    my system is a home built one and haven't had probs with itunes with any other version, until this one. i'm tempted to just go back to the newest version 6 i have, cause this is rediculous. i can't do anything without it sputtering away at me. i tryed uninstalling it and removing every trace of its exsistance off of the system (including registry) and that didn't work i made sure all numbers were set to the correct values for my sound blaster audigy gamer, i was using some non oem drivers, but switched over just to make sure witht eh newest ones creative had, and it made zero diff.
    i'm wondering if it is an issue it is having with sound blaster cards...
    well anyways if anyone else has any ideas i would like to hear them

  • "files used by other program" - cannot eject

    I've got two iPods - a nano and a 60GB. Nano gives me trouble ejecting - I get this "flash" saying something like:
    IPod "NN" cannot be ejected, because it contains files, which are used by other programs. (I get the message in Danish, and I'm not able to make the right translation in English....)
    I cannot use the "safe removal of hardware" og eject. And I cannot figure out which other program uses files in my nano.
    Thanks for helping...
    Ulla
    hp   Windows XP  

    Uh - I really don't know... But I dont't think so!!!
    I tried to turn off my pc after like half an hour, and unplugged nano. Succes. After opening iTunes again - same ting happend. But it does not happen to the 60 GB iPod (whatever that is called - it is not the small nano, which is my daughters and the one that makes the trouble)
    I will survive with this lille problem, but of course I would like it to vanish... ;o)
    thanks!

  • How to get the layout values in F4 help from Other program ?

    Hello All,
           I have a program P1which calls other program P2 .
    When I execute P1 I have a parameter for Layout with F4.
    When I press  F4 I want the help values which are there in the lay out of the other program P2.
    For this I'm using the following code :-
    DATA  spec_layout        TYPE  disvariant.  "specific layout
    DATA  v_save             TYPE  c.           "Save mode
    DATA  gs_variant         TYPE  disvariant.  "for parameter IS_VARIANT
    DATA  gv_exit            TYPE  c.
    PARAMETERS:  p_vari  TYPE disvariant-variant.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_vari.
    *  gs_variant-report  = sy-repid.
    *  gs_variant-variant = p_vari.
      CLEAR gs_variant.
      MOVE  '/BSHP/FP_CALL_OF_PLAN' TO gs_variant-report. "Report von Original CALL_OF_PLAN
      gs_variant-variant = p_vari.
      CALL FUNCTION 'LVC_VARIANT_F4'
        EXPORTING
          is_variant = gs_variant
          i_save     = v_save
        IMPORTING
          e_exit     = gv_exit
          es_variant = spec_layout
        EXCEPTIONS
          not_found  = 1
          OTHERS     = 2.
      IF sy-subrc NE 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ELSE.
        IF gv_exit NE 'X'.
    *     set name of layout on selection screen
          p_vari    = spec_layout-variant.
        ENDIF.
      ENDIF.
    But still I'm not able to get the values.
    Can anyone help me out ?
    Regards,
    Deepu.K
    null

    This question has been asked and answered many times before.  Please read the following blog for a good start:
    /people/yohan.kariyawasan/blog/2009/03/18/ui-framework-news-f4-help
    Before posting further please do a search in this forum and also read the rules of engagement listed here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    I'm now locking this thread as it is a duplicate of an already answered question.
    Thank you,
    Stephen
    CRM Forum Moderator

  • I can't Start, Uninstall or Install new iTunes. I'm getting the same error message: Window Installer Service could not be accessed.  No other programs have similar problem. Any suggestion what can be done?

    I can't Start, Uninstall of Install new iTunes. I'm getting the same error message: "Window Installer Service could not be accessed". No other programs having similar problem. Any suggestions how to fix it?

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) (not for XP) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • How to get data  from an internal table in some other program

    I would like to get data from the internal table in the other program. When I using FM "LIST_FROM_MEMORY" to get the data, it doesn't work and the exception is not fount.
    If any special code need in the other program, like write data to memory .
    Many thx .
    From Ross Wang

    Hi
    <li>You need to have interaction if you want to use EXPORT/IMPORT statments.
    <li>The internal tables in both programs must be same
    <li>Program one ..Calling program
    REPORT ZTEST_NOTEPAD.
    DATA: BEGIN OF it_t001 OCCURS 0,
            bukrs TYPE t001-bukrs,
            butxt TYPE t001-butxt,
          END OF it_t001.
    START-OF-SELECTION.
      SUBMIT ztest_notepad1 AND RETURN.
      IMPORT it_t001 FROM MEMORY ID 'ZTEST_T100'.
      LOOP AT it_t001.
        WRITE:/ it_t001.
      ENDLOOP.
    <li>Program two ...Called program
    REPORT ztest_notepad1.
    DATA: BEGIN OF it_t001 OCCURS 0,
            bukrs TYPE t001-bukrs,
            butxt TYPE t001-butxt,
          END OF it_t001.
    START-OF-SELECTION.
      SELECT * FROM t001 INTO CORRESPONDING FIELDS OF TABLE it_t001 UP TO 10 ROWS.
      IF sy-dbcnt > 1.
        EXPORT it_t001 TO MEMORY ID 'ZTEST_T100'.
      ENDIF.
    I hope that it gets you some idea.
    Thanks
    Venkat.O

  • How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    How can I get an image from the screen? Like screen printer in PC to pasting after in word or other program.

    If you do Cmd+Shift+3 you'll get a full screen image saved to your desktop as a jpg file.
    Also, you can use Cmd+Shift+4 and you'll get a cursor which you click+drag to draw a box. When you release the drag the boxed in area will be saved to the Desktop as a jpg file.

  • Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    AS it stands now, in order to use the calculator that comes with the Dashboard, you cannot read from a list of numbers in, lets say, word or excel. The dashboard is full screen and nothing can stand along side it. Is there a way to get the calculator from the dashboard to appear along with other programs?  Can anyone recommend a calculator which will work as a stand alone app?

    there is one, just search with spotlight "Calculator".
    It works great!
    Hope this helps.

  • All of a sudden, new tabs have started opening up (in Firefox) advertising games and other stuff. Any idea's of what is going on here?

    All of a sudden, new tabs have started opening up (in Firefox) advertising games and other stuff. Any idea's of what is going on here?

    Try scanning for malware using the removal tools listed near the bottom of the [[Troubleshoot Firefox issues caused by malware]] article.
    It might also help if you could copy and paste troubleshooting information into your reply. See [[Use the Troubleshooting Information page to help fix Firefox issues]] for details.

  • How do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    how do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    Good luck.  I tried to do this to cue sound effects for a theater, and never found anything.  iTunes will definitely *not* do this, nor was I able to find any player that would play one song at a time in a single playlist. 
    In my case, I ended up using AutoHotkey to tie individual tracks to the keys on an external keypad. This was an excellent solution for my problem, but I don't think AHK runs on Macs.
    One workaround is to make a folder, and fill it with *shortcuts* to the songs you want (ie, the actual files).  You can change the names to start with numbers to get them in the right order.  Then if you double-click on one it will play just that song.  You'll still have to double-click on each song.
    Might be a good time to learn AppleScript   It would  also be pretty easy to write a Java app to do this.

  • TS1717 This article is vague and unhelpful. My iTunes needs help from a pro. I have over 120,000 songs -- NO movies, TV, radio, or books... I have other programs which efficiently run things which are not audio-based. So why can I not get iTunes working w

    This article is vague and unhelpful. My iTunes needs help from a pro.
    I have over 120,000 songs -- NO movies, TV, radio, or books...
    I have other programs which efficiently run things which are not audio-based.
    So why can I not get iTunes working well?? It now takes at least 10 secs for any operation to be completed!
    That is just plain evil. But I am sure I could do something to help.
    All the music is on an 2T external drive.

    TS1717 as noted in the thread title...
    Brigancook, is the library database on the external or just the media? iTunes reevaluates smart playlists and rewrites its database after every action on the library. I've found this can make a library half that size, with a lot of smart playlists, quite sluggish. That said I'm aware part of my problem is aging hardware. Having the database on the internal drive may improve performance if it is currently on the external.
    I'd expect to see an exponential relationship between size and response time which may explain what you see. Cutting down on the number of smart playlists might help. If we're really lucky the long awaited iTunes 11 might have streamlined some of the background processes as well as cleaning up the front end.
    tt2

  • HT4061 I am unable to load Adobe Flash player on my Apple Ipad are there any clues out there how to by pass this,I can not get certain programs without it ,so I am returning my IPAD,any other programs I can load to get my programs

    I am unable to load Adobe Flash player on my Apple Ipad are there any clues out there how to by pass this,I can not get certain programs without it ,so I am returning my IPAD,any other programs I can load to get my programs

    Apple's iOS platform (iPhone, iPad, and iPod Touch) has never, and will never support flash.
    First on this; Thoughts on Flash. This is from Steve Jobs regarding Apple's views on Flash (2010)
    Second; Adobe stops making Flash for mobile devices. This is from Adobe themselves last year stating that they would stop making Flash for mobile devices.
    If you can find the App equivalent of the programs you are looking for, then congratulations, however, if you require specific 'programs' requiring flash, then the iPad is certainly not for you, and returning it would be the best choice (granted you are still within the return period).
    The lesson in this; Research what a device can and cannot do prior to purchase

Maybe you are looking for

  • Including 4:3 material in a 16:9 environment

    Hi, I'm a relative Premiere Elements 9 newbie and I need to combine 4:3 material with content shot in 16:9. The 4:3 content is historical public domain footage downloaded in MPEG-2 format. My 16:9 material is in MPEG-4 format, 720x480. I've decided t

  • Locked mac files on external HD veiwable on Windows 7 netbook.

    Long question sorry. I have a large external HD. Its partitioned into 2, one for a complete back up of my mac hard drive. The other for all my other files I share between computers. My problem is the back up section is locked to system and admin grou

  • Slow infinity speed since install.

    Out of interest could people post there distance from cab VS. speed. I had infinity option 2 installed about 3 weeks ago now. When the original open reach engineer installed the service he said that there was something not right with it, I was gettin

  • Mass Role Deletion Transport to ECC6

    Hi, Prior to transporting a mass role deletion through to the PRD ECC6 system, is it recommended to end date the majority of position to role relationships? End dating may maintain some visability of previous role assignments... Or is it safe to send

  • Views in Workbook - Urgent.

    Hi, Could any one of you please help me in resolving below issue? When the users open the reports in the production environment and try to create and save the VIEWS by clicking on "save view as jump target",they should not be able to do so..i.e. acce