Launchpad Control ! Please help

I installed and re-installed it again but both times it comes up with nothing in it.

www.google.com and type in activeX
Regards
Grant
p.s. not support in web deployed Forms.

Similar Messages

  • In iOS 5 on the iphone 3gs, how does one disable voice control, not voice dailing.  I have never wanted or used voice control please help me disable it.

    In iOS 5 on the iphone 3gs, how does one disable voice control, not voice dailing.  I have never wanted or used voice control please help me disable it. 

    are you talking about voiceover where the phone is reading things out loud to you? you have to double tap things in voiceover in order to select them. you'll need to go to settings > general > accessibility > and turn off voiceover there

  • Sync between two controls - Please help.. Fast response is appriciated !!

    Hi,
    I simply wish to sync two controls in the following way:
    1. I have Control A displaying three values (like a combo box) which
    cannot be changed by the user, for example: X, Y, Z
    2. The second control, Control B, has defualt value, say 100, however
    the user can change its value when the application is operated
    3. The user first select Control A value then he set Control B value,
    for example for Control A's value X he sets Control B's value to 150,
    for Control's A value Y he assigns Control's B value to 250 and for
    Control's A value Z he assigns 450
    The problem starts when i switch between Control A's values (states),
    the values of Control B were not kept
    Hope i explained it ok..
    Can someone please assist me???
    Thanks

    Hi,
    I am not sure I understand exactly what you are trying to do
    If you want Control B to be automatically set to a value that depending on Control A's state, you can use a local variable and a LUT (look up table) in wich you asign a Control B's value for each Control A's state.
    Or it's even easier with a combo box since you can use it as a LUT by disabling "Values match labels"
    Check example attached.
    Hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    example2.vi ‏23 KB

  • ListView Control - How Take Data Out of One ListView Control and Put It Into Another ListView Control Please Help

    Public Class Form1
    'Also Let Me Note - I will actually only want to move an item from lvOriginalList if the PersonAge is (lets say) '21
        'I have a ListView named
        ' lvOriginalList
        'It has the Following Columns
        ' IDNumber
        ' PersonName
        ' PersonAge
        'I have a Second ListView named
        ' lvRemovedList
        'It has the Following Columns
        ' IDNumber
        ' PersonName
        ' PersonAge
        'What I am attempting to do is read a row out of the first listview
        'Compare the IDNUmber, PersonName and PersonAge from out of it (lvOriginalList)
        'And If the Information is not present in the second ListView (lvRemoved) then Move it to it
        'And then Remove that Row from the First one (lvOriginalList)
        'What I have tried:
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            'Populate lvOriginalList with Test Data
            Dim FileNum As Integer = FreeFile()
            Dim lvOriginalListCounter As Integer = 0
            FileOpen(FileNum, "d:\testdata\alphadata.txt", OpenMode.Input)
            lvOriginalList.Items.Clear()
            Do While Not EOF(FileNum)
                Dim OriginalIDNumber As String = ""
                Dim OriginalPersonName As String = ""
                Dim OriginalPersonAge As String = ""
                OriginalIDNumber = LineInput(FileNum)
                OriginalPersonName = LineInput(FileNum)
                OriginalPersonAge = LineInput(FileNum) 
                lvOriginalList.Items.Add(OriginalIDNumber, lvOriginalListCounter)
                lvOriginalList.Items(lvOriginalListCounter).SubItems.Add(OriginalPersonName)
                lvOriginalList.Items(lvOriginalListCounter).SubItems.Add(OriginalPersonAge) 
                lvOriginalListCounter = lvOriginalListCounter + 1
            Loop
            FileClose(FileNum)
        End Sub
        Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
            Dim OriginalIDNumber As String = ""
            Dim OriginalPersonName As String = ""
            Dim OriginalPersonAge As String = ""
            Dim CompareIDNumber As String = ""
            Dim ComparePersonName As String = ""
            Dim ComparePersonAge As String = ""
            Dim NumlvRemovedListItems As Integer = 0
            Dim CompareCounter As Integer = 0
            For Each item As ListViewItem In Me.lvOriginalList.Items
                '1  -   Get A Row Out of lvOriginalList
                OriginalIDNumber = item.Text
                OriginalPersonName = item.SubItems.Item(1).Text
                OriginalPersonAge = item.SubItems.Item(2).Text
                '2  -   Check To See If That Person Is Already  in lvRemovedList
                'Have to check to see if the lvRemovedList list Box is Empty
                NumlvRemovedListItems = lvRemovedList.Items.Count
                If NumlvRemovedListItems = 0 Then
                    'the lvRemovedList listbox is empty
                    'so add That Person as the first entry into the list box (lvRemovedList)
                    lvRemovedList.Items.Add(OriginalIDNumber, NumlvRemovedListItems)
                    lvRemovedList.Items(NumlvRemovedListItems).SubItems.Add(OriginalPersonName)
                    lvRemovedList.Items(NumlvRemovedListItems).SubItems.Add(OriginalPersonAge)
                    'then remove the player from the lvPlayerList listbox
                    item.Remove()
                Else
                    For Each itemb As ListViewItem In Me.lvRemovedList.Items
                        CompareIDNumber = item.Text
                        ComparePersonName = item.SubItems.Item(1).Text
                        ComparePersonAge = item.SubItems.Item(2).Text
                        If OriginalPersonName = ComparePersonName Then
                            'do nothing that persons name is already in the lvRemovedList list
                        Else
                            'do this because the player is not already in a matchin the lvRemovedList list
                            lvRemovedList.Items.Add(CompareIDNumber, CompareCounter)
                            lvRemovedList.Items(CompareCounter).SubItems.Add(ComparePersonName)
                            lvRemovedList.Items(CompareCounter).SubItems.Add(ComparePersonAge)
                        End If
                    Next
                End If
                CompareCounter = CompareCounter + 1
            Next
        End Sub
    End Class
    'So what Am I doing Wrong
    'It is only Removing the First entry out of lvOriginalList (but at least the remaining data is still there and the empty Row is removed)
    'And only That first Entry is Appearing in lvRemovedList
    'Please Help

    Hello,
    I have created a simple sample, you could focus on the button click event and edit it to fit your requirements by yourself.
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    With ListView1
    .View = View.Details
    With .Columns
    .Add("IDNumber")
    .Add("PersonName")
    .Add("PersonAge")
    End With
    With .Items
    For index = 20 To 33
    .Add("ID" & index, index - 19)
    With ListView1.Items(.Count - 1).SubItems
    .Add("Name" & index)
    .Add(index)
    End With
    Next
    End With
    End With
    With ListView2
    .View = View.Details
    With .Columns
    .Add("IDNumber")
    .Add("PersonName")
    .Add("PersonAge")
    End With
    With .Items
    For index = 21 To 22
    .Add("ID" & index, index - 19)
    With ListView2.Items(.Count - 1).SubItems
    .Add("Name" & index)
    .Add(index)
    End With
    Next
    End With
    End With
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    For Each item As ListViewItem In ListView1.Items
    If CInt(item.SubItems(2).Text) < 29 Then
    item.Remove()
    Dim blContain As Boolean = False
    For Each item2 In ListView2.Items
    If item2.Text.ToString().Equals(item.Text.ToString()) Then
    blContain = True
    'Exit For
    End If
    Next
    If Not blContain Then
    ListView2.Items.Add(item)
    End If
    End If
    Next
    End Sub
    End Class
    Result.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Mackie control - Please Help

    I am trying to install a firmware update for my mackie control and have been stumped by this instruction can anyone tell me how to do this please...
    4. and make sure the Mackie Control/Logic Control is the target midi device on channel one.
    many thanks in advance
    Ivan

    Hi,
    you need to do 2 things:
    1. REMOVE the MCU from teh controller setup page, and DO NOT RESCAN!
    You need to have not mcu in your controller page.
    2.You need to create a new midi instrument, name it mcu, and set it's midi ports to where your mcu is wired to your midi interface.
    then, put this new instrument on the arrange page, and place your MIDI firmware update a few bards AFTER bar 1, say bar 3 or so.
    Then, when you tell your mcu to get ready for the firmware, you can play it back from Logic into it, IN IT'S ENTIRETY, and it will be updated. If you stop before the entire MIDI is played, you'll have to start over, or suffer from a messed up MCU.
    Cheers

  • SAP_FND_TC_T_X1 Catalog not showing up in Launchpad. Please Help

    Hi SCN,
          Im implementing SAP Fiori Approve Request. I'm on a Hub Deployment.
    My problem is I'm not able to see SAP_FND_TC_TX1 Catalog on the Launchpad.
    I'm I supposed to create it manually? And the add the tile?
    On the other hand I see that I can't find created catalogs on the PFCG of NWG, and yet I do find them on PFCG of ERP, is this an espected functionality?
    I have installed UIX01CA1 SPS02 and IW_PGW SPS05 on NWG.
    I have given the Role SAP_FND_TCR_T_X1 to my user (on NWG, it does not exist in ERP), and generated authorization objects for ztaskprocessing.
    More Info:
    Front-End Component/Versions:
    Backend Components:

    Problem was solved. Some services that were pointed to the ERP had to be directed to NWG:
    Service
    Before
    After
    ZINTEROP_0001
    ERP
    NWG
    ZPAGE_BUILDER_CONF_0001
    ERP
    NWG
    ZPAGE_BUILDER_CUST_0001
    ERP
    NWG
    ZPAGE_BUILDER_PERS_0001
    ERP
    NWG
    ZTASKPROCESSING_0001
    ERP_WF
    ERP_WF
    ZTRANSPORT_0001
    ERP
    NWG

  • How do I add playback control to a .swf file in Director 11.5 (PLEASE HELP!)

    Hi,
    I am currently trying to add controls (play/stop/etc) to a .swf file within Director 11.5. The movie imports fine and plays perfectly, however there does seems to be built in options to add the control in the same way you would for a .mov.
    The .swf file has been created with controls and plays outside of director fine. When it is placed into director the controls disappear and leave a white space.
    Is there a step by step guide somewhere or can someone give me a step by step guide? I'm fairly new to director and won't know some of the terms etc....
    The movie is 30 mins long and requires the user to move to various points and pause the playback. I cannot change the format of the file either.
    Please let me know if you need any more info...
    PLEASE HELP, I have to complete this in 2 days.
    W

    Probably too late for your project but...
    You can do this by using 3 sprites in addition to the SWF. In this example, I've named them "videoPlay", "videoRewind, and "videoStop". The SWF in this case was named "video."
    Apply this script to each of the 3 sprites.
    property mySprite
    on beginSprite me
      mySprite = sprite(me.spriteNum)
    end
    on mouseUp me
      case mySprite.name of 
        "videoPlay":
          sprite("video").play()
        "videoStop":
          sprite("video").stop()
        "videoRewind":
          sprite("video").stop()
          sprite("video").rewind()
      end case
    end

  • AirPlay not showing on iPad anywhere. I've tried ation and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    AirPlay not showing on iPad anywhere. I've tried all of the rebooting functions and checked the control centre to no avail. The wifi networks are the same. Please help, thanks.

    To use AirPlay, you need the following:
    1. iPhone 4s (or later), iPad 2 (or later), iPad mini, or iPod touch (5th generation)
    2. Apple TV (2nd or 3rd generation)
    3. AirPort Express
    4. Wi-Fi (802.11a/g/n) network
    http://support.apple.com/kb/ht4437

  • TS3989 Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    Mssage when opening Photo Stream on-"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel" Help!!!

    You are posting in the "icloud on my mac" forum, but your profile mentions Windows.  If using a mac, you need to have iphoto or aperture installed in order to receive new photos via photo stream.  If using windows, try posting in the iCloud on a PC forum.  You'll get better help there.
    https://discussions.apple.com/community/icloud/icloud_on_my_pc

  • I have 2 desktops. mine and my sons. His is controlled by parental controls, when firefox downloaded the latest version he is no longer able to get on firefox on his desktop. please help.

    I have Cox Internet service, which allows me to control what content other users on my computer see and do. My son has parental controls which do not allow him to view certain websites, download programming, ext... With this last update to Firefox, I am still able to get on the internet, but when he tries to click on the Firefox icon on his desktop it tells him there has been an error and shuts down. He is forced to use Internet Explore. I do not want him using this web browser. Please help us get him back on Firefox.
    Thank you Michelle Brooks

    Add-ons are the responsibility of their authors. McAfee does not even put their extension on http://addons.mozilla.org you had to install it from their site.
    Disable "McAfee Site Advisor" extension which was just updated to 3.4.0, which probably took it out of the addons block list.
    * "Ctrl+Shift+A" > find McAfee Site Advisor and use "Disable", and then restart Firefox.
    * Do a Google Search no problem
    * It seems that if you re-enable Site Advisor again, and restart Firefox you are okay. At least you know where to look if you get the error again or Google searches slow down.

  • When iPhone is connected to PC, it shows in itunes but Autoplay does not open for me to copy photos. I tried the Control Panel, changing Autoplay settings but no use. I use a Windows Vista. Please help! All my little ones' pictures are on my iPhone 3GS

    When iPhone is connected to PC, it shows in itunes but Autoplay does not open for me to copy photos. I tried the Control Panel, changing Autoplay settings but no use. I use a Windows Vista. Please help! All my little ones' pictures are on my iPhone 3GS.
    I tried hard reset on my iPhone. I tried restarting laptop and iPhone. I tried a different laptop. I tried removing driver and reinstalling from Device Manager but did not find a driver other than "Apple Mobile Device USB Driver" under "Universal Serial Bus controllers" which I heard shouldn't be uninstalled.
    Anything I haven't tried?
    HELP!

    A bit confused by your statement
    bcboarder wrote:
    . I do not understand why the music is clearly on the Ipod but wont reconize it anywhere.
    Are you seeing your music listed in the iPod screen, or in Win explorer as in your earlier post?
    I can see all the songs in my Edrive>al's Ipod> Ipod Control> Music folder.
    A corrupted iPod database, will report zero music used, and have your music size reported as others, so you wont see the music in the iPod screen. Sorry, I thought there was some hope for you with iPodAccess, in recovery of the corrupted iPod database with your ratings.
    You can try to borrow and  use the Mac Disk Utility ->First Aid ->Repair.
    Of course, if your iPod Hardisk is in a bad state, from the Disk Diagnostic report, then all my suggestion are futile.

  • The volume up and down controls on my wireless keyboard show a no entry sign and do not respond when used...please help?

    The volume up and down controls on my wireless keyboard show a no entry sign and do not respond when used...please help?

    If you want to get a little more "exotic" you can try remapping the function keys.  I did a little google searching and the hits that looked promising are,
    Mapping volume and eject keys to 3rd-party keyboard Other Hardware
    Spark
    Spark is a powerful, and easy Shortcuts manager. With Spark you can create Hot Keys to launch applications and documents, execute AppleScript, control iTunes, and more...
    You can also export and import your Hot Keys library, or save it in HTML format to print it.
    Spark is free, so use it without moderation!

  • Please help me , my iPad is writing by itself , changing applications , I can't control it , what I'm supposed to do ??? Thanks

    Please help me , my iPad is writing by itself , changing applications , I can't control it . What I'm supposed to do ???? Thanks

    Settings>General>Accessibility>turn everything off

  • IMac G5 (iSight) with 10.4.11:  Screen always dimmed. Starts at full bright and a second later dimms and stays like that forever.  Brightness controls work normally under this circunstance.  Please help !!!

    iMac G5 (iSight) with 10.4.11:  Screen always dimmed. Starts at full bright and a second later dimms and stays like that forever.  Brightness controls work normally under this circunstance.  Please help !!!
    Please don't tell me to adjust anything on the preferences, since I have tried all.  I think it may be anoter kind of problem, maybe hardware related or anything.
    I ran the Hardware repair DVD and everything was ok, but when the imac restarted the screen was very lit again, but when it went sleep, when it went awake again the screen got dimmed again.  Because of that I think that the problem could be software related, but who knows.  Excuse my english.

    I can't see another possible answer - the longer your machine is up, the more the power supply is stressed, it protects itself by dimming the screen to lower the draw on it.

  • My 4th generation ipod touch is not turning off when i hold the wake button for few seconds the Voice Control Function Starts Automatically.Please help me to get out of this problem.

    My 4th generation ipod touch is not turning off when i hold the wake button for few seconds the Voice Control Function Starts Automatically.Please help me to get out of this problem.

    Sorry i mistakenly made this question. It was alright. No Problem At ALL

  • The activex control for flash player could not be registered.  Please help!

    Can't install flash player.  Keep getting activex control for flash player could not be registered.  I have tried all of the solutions provided on this forum.  Running windows 7 32-bit running IE8.
    Please help.

    Hi, Did you use the Administrator Account? If you received that message it is usually a Permissions Issue.
    We have had several reports this past week of a Virus(AntiVirus8 or AV8) that can set a Kill-bit on the very Registry Key that FP uses for that ActiveX Control.
    You may want to look and see if this is perhaps the problem. This needs to be ruled out first before we proceed, because if that key has the Kill-bit, then it wouldn't matter what you do.
    http://forums.adobe.com/thread/782435?tstart=0
    Thanks,
    eidnolb

Maybe you are looking for