Item - Can't set value on item because the item can't get focus.  [66000-15

hi i created one text box in purchase order form and asign the choose from list.l when i choose in edit box its show the following error-- Item - Can't set value on item because the item can't get focus
Dim lonHeadDatasource As SAPbouiCOM.DBDataSource
lonHeadDatasource = oOrderForm.DataSources.DBDataSources.Item("OPOR")
oNewItem1 = oOrderForm.Items.Add("EditDS", SAPbouiCOM.BoFormItemTypes.it_EDIT)
                    Dim oCFLs As SAPbouiCOM.ChooseFromListCollection
                    Dim oCFLCreationParams As SAPbouiCOM.ChooseFromListCreationParams
                    Dim oCFL As SAPbouiCOM.ChooseFromList
                    oCFLs = oOrderForm.ChooseFromLists
                    oCFLCreationParams = SBO_Application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_ChooseFromListCreationParams)
                    oCFLCreationParams.MultiSelection = False
                    oCFLCreationParams.ObjectType = "INTORDER"
                    oCFLCreationParams.UniqueID = "CFL1"
                    oCFL = oCFLs.Add(oCFLCreationParams)
                    oItem = oOrderForm.Items.Item("4")
                    oNewItem1.Top = 95
                    oNewItem1.Height = oItem.Height
                    oNewItem1.Width = 140
                    oNewItem1.Left = 125
                    oEdit = oNewItem1.Specific
                    oEdit.DataBind.SetBound(True, "OPOR", "U_EditDS")
                    oOrderForm.Items.Item("EditDS").Specific.ChooseFromListUID = "CFL1"
                    oEdit.ChooseFromListAlias = "U_ID"
Item events
Try
            If pVal.BeforeAction = False Then
                If (pVal.FormType = 142) Then
                    Select Case (pVal.ItemUID)
                        Case "EditDS"
                            Select Case (pVal.EventType)
                                Case SAPbouiCOM.BoEventTypes.et_GOT_FOCUS
                                Case SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST
                                    Dim bonCflEvents As SAPbouiCOM.ChooseFromListEvent
                                    Dim bonCflList As SAPbouiCOM.ChooseFromList
                                    Dim bnnstrUID As String
                                    Dim bonDTTable As SAPbouiCOM.DataTable = Nothing
                                    bonCflEvents = pVal
                                    bnnstrUID = bonCflEvents.ChooseFromListUID
                                    bonDTTable = bonCflEvents.SelectedObjects
                                    bonCflList = oOrderForm.ChooseFromLists.Item(bnnstrUID)
                                    If pVal.BeforeAction = False Then
                                        If oOrderForm.Mode <> SAPbouiCOM.BoFormMode.fm_FIND_MODE Then
                                            If Not (bonDTTable Is Nothing) Then
                                                If bonCflList.UniqueID = "CFL1" Then
                                                    If pVal.ItemUID = "EditDS" Then
                                                        Dim value As String = Nothing
                                                        oOrderForm.Items.Item("EditDS").Specific.value = bonDTTable.GetValue(0, 0)
                                                    End If
                                                End If
                                            Else
                                                lonHeadDatasource.SetValue("EditDS", lonHeadDatasource.Offset, "")
                                            End If
                                        End If
                                    End If
                            End Select
                    End Select
                End If
            End If
        Catch ex As Exception
            SBO_Application.SetStatusBarMessage(ex.Message)
        End Try
Thanks & Regards
B.Narain

Hi
Instead of   oOrderForm.Items.Item("EditDS").Specific.value = bonDTTable.GetValue(0, 0) the following
lonHeadDatasource.SetValue("U_EditDS", 0, bonDTTable.GetValue(0, 0))
Regards
Arun

Similar Messages

  • Can't get focus in JTabbedPane

    I have several tabs in a JTabbedPane. Each tabb is hotkeyed to "1","2","3", etc. The left and right arrows keys are remapped in this way:
    mainTabbPane.registerKeyboardAction (PrintHi, KeyStroke.getKeyStroke (KeyEvent.VK_LEFT, 0), JComponent.WHEN_FOCUSED);
    And I have an AbstractAction like this:
    AbstractAction PrintHi = new AbstractAction ()
    public void actionPerformed (ActionEvent e)
    System.out.print ("Hi");
    The problem is this. On each tabb I have several JTables, JLabels, JTextAreas and other stuff showing information. When I select/edit something, like a JTable, the arrow hotkeys stop function. It seems to me as the last selected JTable still has the focus and won't let it go. So when I press arrow keys, the arrow keys is directed into the JTable instead? Dont know if it so, but that is the impression I get.
    The weird thing is, the hotkeys for the different tabs works. If I press ALT + 1, the first tabb pops up. But the JTable is still selected. And the arrow keys is directed into the JTable.
    Anyone has pointers and hints?

    Ok, I apologize for not having explained my question completely. This is exactly what I am trying to do:
    When I press the arrow keys, they will print out a message. After I go to the 3rd panel and choose a combobox, I go back to the first panel and the arrow keys suddenly stop working. Why???
    (It is as if the 1st tabbpane has lost the focus, and cant get it. The focus is stuck on the JComboBox. When I switch back to 1st panel from comboboxpanel, I want the 1st panel to get focus, and hence the arrow keys will work again. When I choose the 3rd panel the arrow keys can stop work, that is ok. The important thing is that when I switch back to the first panel, the arrow key must work again. In an ideal world, the arrow keys are tied to panel 1 and panel 2. Hence, when I switch to panel 3, the arrow keys will stop work. When I choose panel 1 again, the arrow keys must work.)
    Sorry for making it difficult for you to help me. I really appreciate your effort. The thing is, I am starting a software company and am supposed to deliver the first version tomorrow monday. And everything works ok, except this CENSORED hot keys. Making me really stressed. Well, anyway I have specified the question better now. I really hope you can point me in the right direction on how to solve this problem.
    Is there a way for the shown panel to get focus? When I switch to panel 1, it gets the focus? Or should I try to tie the arrow keys to panel 1? Or should I tell the combobox to not respond to arrow keys? Which way to go?
    Please execute the program and see if it is only me having a problem?
    package test;
    import java.awt.event.ActionEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.AbstractAction;
    import javax.swing.JComboBox;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    import javax.swing.JTable;
    import javax.swing.KeyStroke;
    public class SSCCEE extends JFrame {
         private static final long serialVersionUID = 1L;
         JTabbedPane tabbpane = null;
         public static void main(String args[]) {
              new SSCCEE();
         public SSCCEE() {
              tabbpane = new JTabbedPane();
              tabbpane.insertTab("tabb 1", null, new MyTablePane(), "tooltip1", 0);
              tabbpane.setMnemonicAt(0, KeyEvent.VK_1);
              tabbpane.insertTab("tabb 2", null, new MyTablePane(), "tooltip2", 1);
              tabbpane.setMnemonicAt(1, KeyEvent.VK_2);
              tabbpane.insertTab("tabb 3", null, new MyComboboxPane(), "tooltip3", 2);
              tabbpane.setMnemonicAt(2, KeyEvent.VK_3);
              this.add(tabbpane);
              setHotKeys();
              this.pack();
              this.setVisible(true);
         private void setHotKeys() {
              AbstractAction PrintHi = new AbstractAction() {
                   private static final long serialVersionUID = 1L;
                   public void actionPerformed(ActionEvent e) {
                        System.out.print("Hi ");
              AbstractAction PrintHo = new AbstractAction() {
                   private static final long serialVersionUID = 1L;
                   public void actionPerformed(ActionEvent e) {
                        System.out.print("Ho ");
              tabbpane.registerKeyboardAction(PrintHi, KeyStroke.getKeyStroke(
                        KeyEvent.VK_LEFT, 0), JComponent.WHEN_FOCUSED);
              tabbpane.registerKeyboardAction(PrintHo, KeyStroke.getKeyStroke(
                        KeyEvent.VK_RIGHT, 0), JComponent.WHEN_FOCUSED);
    class MyComboboxPane extends JPanel {
         private static final long serialVersionUID = 1L;
         private JComboBox aCombobox = null;
         MyComboboxPane() {
              aCombobox = new JComboBox();
              aCombobox.addItem("Meow");
              aCombobox.addItem("Voff");
              this.add(aCombobox);
              aCombobox.addActionListener(new java.awt.event.ActionListener() {
                   public void actionPerformed(java.awt.event.ActionEvent e) {
                        JComboBox cb = (JComboBox) e.getSource();
                        System.out.println((String) cb.getSelectedItem());
    class MyTablePane extends JPanel {
         private static final long serialVersionUID = 1L;
         private JTable aTable = null;
         MyTablePane() {
              aTable = new JTable(
                        new String[][] { { "This", "is", "cell 13" },
                                  { "a", "Test", "cell 23" },
                                  { "cell 31", "cell 32", "cell 33" } }, new String[] {
                                  "Col 1", "Col 2", "Col 3" });
              this.add(aTable);
    }

  • Why my textfield can not get focus?

    I put a textfield on the first tab of a tabbed panel. I need this textfield to get the focus when I open the first tab. I tried to use grabfocus() method in the constructor of class, but it does not work. Does anybody know why? and how can I solve it?
    Thanks!

    No, I didn't call grab/requestFocus on the event thread.
    My code is like this:
    public class GeneralPane extends JPanel {
    JPanel ltPane;
    private JTextField txtCountry;
    public GeneralPane() {
    initComponents();
    private void initComponents(){
    setLayout(new BorderLayout());
    //Add another Panel to contain Labels and Text fileds
    ltPane = new JPanel();
    FocusListener mFL = new FL();
    txtCountry = new JTextField("US", 20);
    //this listener is used to store the data in the textfield into a variable
    txtCountry.addFocusListener(mFL);
    // add the textfield into ltPane
    mUtil.insertTextPane(txtCountry,ltPane);
    //txtCountry got focus
    //txtCountry.setFocusable(true);
    ltPane.requestFocus();
    //txtCountry.requestFocusInWindow();
    Then in the main program, I create an instance of this class and then use addTab(...) function into the my tabbedPanel.
    The logic is simple, but the textfield still couldn't get focus when I open the tabbedPanel.

  • Setting the border when JCombobox get focused

    Hello,
    Is it possible to set the border when the JCombobox get focused?
    In fact, I would like to hide the border at all, but remain the "setFocusable(true)"
    Thanks in advance.

    So why did you post your last three questions in the Swing forum, but then decide to post this "Swing related" question in the Java Programming forum?
    Is it possible to set the border when the JCombobox get focused?Try it!
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    Don't forget to use the Code Formatting Tags so the posted code retains its original formatting. That is done by selecting the code and then clicking on the "Code" button above the question input area.

  • Can you get focus for an invisible JFrame?

    I'm writing a program where I use a JFrame for user input, and, after receiving input, the JFrame goes invisible, leaving the desktop clear while the program continues processing in the background. I want the same JFrame to be called back with user keyboard input (e.g. F12), but I don't know how to get KeyListener to work because I cannot obtain focus on the invisible JFrame. Is this possible?
    If not, is there a similar way to work around the problem?
    Any help is appreciated, thanks!

    I don't think that you can have focus on an invisible frame (though I'm not sure) but a goos way around would be to show a small dialog that says "Currently working, press a key to go back to main screen" and add a key listener to this dialog instead of the invisible frame.
    But if you want to work in the background, maybe you'll have to run the dialog on a new thread for both to work at the same time.
    Hope it helps

  • Can't get focus to address bar in new tab

    I have tried everything said in previous posts and unfortunately i cant get it to focus the address bar.
    I have tried uninstalling all adons, restarted in safe mode, this should be like this automatically, but for some reason it isn't. Can i change something in about:config?
    Ty
    /A.R

    You might need to reinstall Firefox to repair program files, but first, do you want to try a different new tab page: just a blank page?
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the search box above the list, type or paste '''newtab''' and pause while the list is filtered
    (3) Double-click the '''browser.newtab.url''' preference and change from ''about:newtab'' to ''about:blank'' and OK that change.
    You can test immediately with Ctrl+t to see whether that makes any difference.

  • Can't get focused a JTextField within a JTable cell

    I have a table and I placed a cell editor with a JText field on it for all cell editing,
    I want to do things when the focus is lost or gained and my app works fine when a cell is double clicked or f2 is pressed, but when a cell is selected (without double clicking) and just begin typing it produces no focus gained event.
    I tried by calling grabFocus method of that jTextField within the overriden prepareEditor method of the JTable but it doesn't get focus (doesn't even gains and loses it :s )
    Does anyone have an idea of how to force this component to grab focus?
    Thanks

    Hai,
    dont add the FocusListener to the EditorComponent.
    Try to use the JTable Functions - like this:
    import javax.swing.event.ChangeEvent;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.EventObject;
    import javax.swing.*;
    public class Test extends JFrame
         JTable table;
         JTextArea text;
         JScrollPane scroll;
         JTextField cellTextField;
         Test()
              DefaultTableModel model = new DefaultTableModel();
              cellTextField = new JTextField();
              text = new JTextArea();
              text.setEditable(false);
              scroll = new JScrollPane();
              scroll.setViewportView(text);
              table = new JTable(model){
                   @Override
                   public Component prepareEditor(TableCellEditor editor, int row, int column) {
                        text.append("Better use this to Start Edit!\n");
                        return super.prepareEditor(editor, row, column);
                   @Override
                   public void editingStopped(ChangeEvent e) {
                        text.append("Better use this to Stop Edit!\n");
                        super.editingStopped(e);
              model.addColumn("Column 1");
              model.addColumn("Column 2");          
              model.addRow(new String [] {"Cell 1", "Cell 2"});
              table.setCellSelectionEnabled( true );
              table.getColumnModel().getColumn(0).setCellEditor( new DefaultCellEditor(cellTextField));
              table.getColumnModel().getColumn(1).setCellEditor( new DefaultCellEditor(cellTextField));
              getContentPane().setLayout(new BorderLayout());
              getContentPane().add(table, BorderLayout.NORTH);
              getContentPane().add(scroll, BorderLayout.CENTER);
              setSize(300, 300);
              setVisible(true);
              setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
         public static void main(String[] args)
              new Test();
    }

  • HT201210 cant restore my ipad from itunes after updating latest ios.  message tells me to turn off 'find my ipad' from my ipad, but I can't because the set up is not complete without the restore.  What do I do?

    I don't know if I'm repeating my question. I can't restore my ipad after updating to latest ios. The battery went low, I had to eject and plug in to charge.  The set up will not complete without resoring from icloud or itunes (i backed up to computer using itunes) or setting up the ipad as a New ipad.  I want to restore all my stuff but the message I get in itune says "Find my ipad must be turned off before 'ipad' can be restored".  Go to icloud settings on your ipad and turn off Find My iPad before restoring your iPad.".  I cant' get to this setting on my ipad because the set up is not complete!!!  I'm stuck. Any help would be greatly appreciated.  I'm afraid if I set up the ipad as new it will backup the new ipad over my previous backup and then I will loose all my photos, songs, aps, notes,......

    I have the same problem and we can't simply just restore from the backup. It says that I have to set up my iPad through restoring. So I tried restoring it in iTunes but it won't restore until I have to turn off this **** "Find My iPad" crap but I couldn't because the set up's not complete and it won't let me go to my settings unless I set it up. So basically it's asking me to go to my settings but before I could go to it I have to restore, and in order to restore I have to go to settings. Get where I'm at?
    Please, Apple Tech people! Help this 14 year old girl on her period, PMS-ing, thinking about how I want  to strangle however made this mistake of a set up, updating her iPad in 3 am in the morning cursing the day she even thought of updating. I seriously need to get out of this loophole. I don't want to use my other iPad that only has 16GB. I just wanted the pretty graphics I saw in my parent's iPad airs, I don't ask for anything more :''''(

  • Lost ipod can't set up i meassenger on new device because the e-mail is linked to the old device

    My daughter lost her Ipod which had i meassenger linked to her e-mail. we dissabled the lost ipod. But trying to set up i meassenger on the new device i get the error the email is already linked to a different device. Is there anyway around this error or do i need to create a new email account?
    Thanks

    settings>mail contacts calendars>Add account, and its either an exchange or other, you would have to get the server settings from the IT people

  • Enter a value using set value dynamic action

    Hi,
    I'm using Oracle 11g XE with apex 4.0.2.
    I've been trying to use a dynamic action on a text field 'item_group'. Button doesn't have this facility. I created an advanced action using 'set value' with no condition the value being 'RAM.' The event is "change", selection type 'event source', set type is 'static assignment' and value is RAM. It is supposed to trigger when the create button is pressed but nothing happens and the field is still null. I've tried variations on this but nothing works. Can anyone help.
    Thanks
    Tim

    are you looking dynamic sql ?
    Refer this
    http://docs.oracle.com/cd/B10500_01/appdev.920/a96590/adg09dyn.htm

  • HT1391 I deleted my ringtone from iTunes because I couldn't sync it to my iphone or play it in itunes through the iphone, and now I can't get it back.  I have the purchase receipt...but how do I get it back????? If I can't, can I get refund?

    This is ONE of the MANY reasons, I have held off on getting and iPhone.  Because the ONLY option in getting the music onto it, is by using itunes, instead of just being able to drag and drop.  This is annoying as F***.
    I paid for and downloaded a ringtone from the iTunes store.  It was working fine. Then I hoooked up my iphone to my bf's laptop, competely forgetting that it had already been synced to MINE, which is broken and toasted.  For some reason, it deleted everything off my phone, I spent 3 hours trying to figure out how the **** to get music back onto my iphone using itunes.  It's NOT a user friendly program, and being a computer savvy as I am.....I HATE USING IT. But unfortunately, I don't have a choice. So, I was able to get the two ringtones that I created with my free ringtone maker app BACK into my phone.  But go figure, the one that I actually paid for, I can't get back on.  It was in my itunes, and on my iphone...but had the exclmation mark beside it.  I have already gone to the support page and followed the instructions for retrieving it.  I have manually deleted it from my computer SINCE this discovery, by deleting it from itunes.  So....to make sure yall are understanding this...I tried tracking it down by searching my computer....and I couldn't find it, although it was still listened on BOTH my itunes on my laptop AND in my iphone.  I trued to manually delete it from the iphone....wouldn't work. So i manually deleted it from itunes.
    My question is this....
    HOW ON GODS GREEN EARTH DO I GET IT BACK!!!!????
    It's only $1.29 canadian, but man, this program is ******* me off to no end.
    It's stupid that Apple has completely restricted us.  -sighs gritting her teeth- I just want my ring tone back.  That's it.  I can't even figure out how to redownload it....or if I can even do that.
    Please someone help me.  I'm soooo frustrated.
    Thanks
    CER

    Never mind I fixed it. Just in case anyone else has this problem, after you reinstall iTunes you have to delete all your old music, and if you have iTunes match all the songs you have saved on itunes match will display and you just have to download them to your Macbook.

  • Bug: when you have two or more reminder pop-ups on BB10, you can't edit 2 or more of them because the second and beyond are lost...

    I notice that when you have two or more reminder pop-ups on BB10 (tasks, calendar, etc.), you can't edit 2 or more of these because the second and beyond get lost and will never pop-up again.  

    Hey JVanB,
    Thank you for your feedback.
    To better understand your issue, for example If you have two reminders and select 'View Event Details' on the 1st reminder,  does the 2st reminder popup before the Details of the1st reminder displays? 
    Thanks.
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • DJ sets & rare songs gone because of itunes match

    I;ve tried searchign for answers on this matter and come up hopeless! I have lots of dj sets and rare songs, and the whole point of getting this subscription for me was to not have to delete them. Now it seems they are gone. My phone is plugged into itunes right now and when i go into "my phone" the songs are there, but when i go into my music on my phone, they're gone. I'm not sure what to do!!
    Also, if I add new music (new djs sets and things that wont be able to be matched) will itunes now automatically delete them?? I'm really sad about this.vice
    When I got the service it said it uploads the ones that it cannot match, as is. That didn't seem to happen here. Please please help!

    Hi,
    Was the music in your iTunes library on your computer? Do you have a back up of your music?
    Jim

  • I can't get the correct node (a real beginner)

    I have an XML file which looks like this:
    [code<lawyer>
         <Country>Singapore</Country>
         <Company>Allen & Gledhill</Company>
    </lawyer>
    <lawyer>
         <Country>Singapore</Country>
         <Company>Allen & Gledhill</Company>
    </lawyer>.
    </Lawyers>
    But I can't get the right node names and values.
    Here is my code:
    File file = new File("lawyers.xml");
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(file);
    NodeList nlLawyers = doc.getElementsByTagName("lawyer");
    for (int i = 0; i < nlLawyers.getLength(); i++) {
         Element elLawyer = (Element) nlLawyers.item(i);
         NodeList columns = elLawyer.getChildNodes();
         for (int j=0; j<columns.getLength(); j++) {
              Node col = columns.item(j);
              String colName = col.getNodeName();
              String colVal = col.getNodeValue();
              System.out.println(colName + ": " + colVal);
    }What I would like to print out would be something like this:
    Country: Singapore
    Company: Allen & GledhillBut I am getting extra nodes and cannot get the text values. Here is the output I am getting:
    #text:
    Country: null
    #text:
    Company: nullI don't understand this output at all. Please help me get the list of node names and values?
    Thank you.
    -Jeff

    It seems that the #text nodes represent the whitespace between the formal nodes. Also, the nodes that I want to extract have a NodeTypeValue of 1. Once I had determined that I had the correct node, I had to get its child node to get the text. Here is the final code:
    File file = new File("lawyers.xml");
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(file);
    NodeList nlLawyers = doc.getElementsByTagName("lawyer");
    for (int i = 0; i < nlLawyers.getLength(); i++) {
         lawyer = new Lawyer();
         Element elLawyer = (Element) nlLawyers.item(i);
         NodeList columns = elLawyer.getChildNodes();
         for (int j=0; j<columns.getLength(); j++) {
              Node col = columns.item(j);
              if (col.getNodeType() == 1) {
                   String strColumn = col.getNodeName();
                   Node txt = col.getFirstChild();
                   String strValue = txt.getNodeValue();
                   System.out.println(strColumn + ":\t" + strValue);                         }
         } // for each column
    } // for each lawyer

  • I press reset and now i can't get into router interface?

    Yestoday i was just experimenting with my router. I set up a restriction for 12am to 12:05am to see if it will block my sister's internet just for the fun.
    However it did not work.
    Today my internet was slow because of my sister's laptop. Probably downloading some soft of content. I decide to press the reset button therefore her connection would be taken off.
    However  now i want to fix that. I understand how to get into my router's interface:
    -By going to my computer and then typing 192.168.1.1 on top...
    -Yestoday when i did that it worked. I was able to get into router interface, but now i can't. It gives me "cannot find server"
    I don't understand why i can't get into my router's set up~
    Can this be fixed?

    it might be that the reaosn why you're not accessing up the router's set-up page is because the computer connected to it is not getting a valid IP adress already...
    to check this...
    go to START, then RUN
    type in cmd
    in the command line, type in ipconfig
    take note of your IP adress... that's the computer IP adress..
    Now, take note of your default gateway... that is equivalent to your router's IP adress...
    in the same window, type in (ping default gateway #) ping 192.168.1.1 . if it replies, then your router's interface should be able to open up
    launch internet explorer, then type in http://192.168.1.1
    "a helping hand in a community makes the world a universe"

Maybe you are looking for

  • How to set max. number of rows in a table?

    Hi, I'm working on a SCADA interface. In this application there are different tables with vertical scroll bar. I prefer to make visible only the initialized rows (I've initialized 40 blank rows of a table with a string array). Since the window not co

  • Using both outputs?

    I am using the HDMI output for use on my television and using the optical output to feed my stereo so I can listen to the music on my imac without turning the TV on. Any negatives here? It seems to work fine. I was thinking of using a airport express

  • An error occurred while attempting to initialize the Borland Database Engine (error $2108)

    Hello: I have recently started getting this error when trying to Hot Sync my device: An error occurred while attempting to initialize the Borland Database Engine (error $2108) The device is a Symbol scanner with Palm OS v4.17.   It is connected to my

  • Update memory info failed

    We have an Oracle SQL query which runs in seconds directly on the database but when we put it in InfoView it runs for several minutes. We ran a trace on the query in InfoView and received thousands of lines of this: **WARNING:CCDZMgr:Update memory in

  • Notes won't open in gmail?

    I changed emails and then had to change my apple user account and password.  Got that changed but now I can't open my notes with my gmail account.  It wants me to create an iCloud email. Any clues or direction?