Changing (overriding) default behavior of  af:inputText

Hi all,
Is it possible to change the default behavior of the <af:inputText> or add a new one by overriding CoreInputText . e.g: like oracle forms, enter button to navigate to next item.
Thanks in advance,
Ahmad Esbita

InputTexts are more than enough for me, but I was wondering if I can add some kind of functionality to them and if yes, how ?
In my post the example was :"enter button to navigate" , some people are used to the idea of enter button navigation such as accountants ,they also relay on the mouse poorly when they are working,and what if we are asked to provide this property, and thats all.
Regards,
Ahmad Esbita

Similar Messages

  • How can I change the default behavior for ctrl-Tab?

    I tried to change the behavior of ctrl-Tab from 'Next Tab' to 'Previous Tab' and added 'alt-Tab' for 'Next Tab' in Keyconfig so I can navigate in both directions with one hand. It does not change the behavior of ctrl-Tab.
    I created both these shortcuts in Keyconfig:
    Next Tab
    gBrowser.mTabContainer.advanceSelectedTab(1,true);
    Previous Tab
    gBrowser.mTabContainer.advanceSelectedTab(-1,true);
    I even tried doing this from the command line with the same result:
    defaults write org.mozilla.firefox NSUserKeyEquivalents -dict-add "Next Tab" "~Tab"
    defaults write org.mozilla.firefox NSUserKeyEquivalents -dict-add "Previous Tab" "^Tab"
    I'm not sure why this didn't work but maybe "Tab" is the wrong keyword. I couldn't find any documentation on what it should be. Or possibly "Next Tab" and "Previous Tab" don't work in this case because they are not 'built-in' commands. A third possibility is that it won't work because ctrl-Tab is a built-in shortcut but I can't believe that is why. I was able to change cmd-Q to ^-cmd-Q no problem and that is a default OS X shortcut. I was also able to change other built-in functions' shortcuts, just not this one.
    So what am I doing wrong? Has anybody been able to change this particular shortcut?

    OK I posted a link to this thread on that forum thread but I still think this is general enough that it could be answered in this forum.

  • JDeveloper settings - change the default code editor view for JSPx  files

    Hi, when you open a .JSPX or JSP page the editor opens in 'design' mode. Is there a way to change this default behavior and open in 'source' mode? I write the JSF/JSP pages editing code and every time I open a new page I have to wait till the IDE opens in view mode and then manually switch to source mode by hand.
    Thanks
    Jordi

    A year and a half after this post, and I still have this same issue as well. Even 10.1.3.3 has it.
    Thanks for posting the solution as this will now save me lots of time waiting and often re-starting JDeveloper.

  • How do I change mouse button behavior in firefox to make new mouse shortcuts?

    Hi,
    For some time now I've wondered if it is possible to easily change the default behavior of mouse buttons in Firefox. What I'd like to do is define a new mouse button combination which replicates the function of an already-defined keyboard shortcut. In particular, currently, when one holds down the shift key while left-clicking the mouse while over a link, that link is opened in a new window. What I'd like to do is to have exactly the same behavior occur when I click and hold the left mouse button while pressing and releasing the right mouse button. This then makes opening a link in a new window a menu-less, one-handed operation.
    Anyone have any ideas how this might be done? Thanks!

    Hello,
    Does this addon - https://addons.mozilla.org/en-US/firefox/addon/mousecontrol/ meet your requirement? Also, you can check the list of mouse shortcuts here [[Use mouse shortcuts to perform common tasks in Firefox]]
    Hope this helps.

  • Override the default behavior of af:inputListOfValues

    Here's the problem. I'm not quite satisfied with default behavior of standard af:inputListOfValues. For example, the user inputs in the text box some first digits of an account number. Then he presses Tab and popup opens, filtered by these first digits. That's OK, but:
    1. It will be great to see the value user has entered in the field for account number entry (so that not only the list is flitered, but the user can see the filter condition at once)
    2. If the user presses Cancel, and then enters some other first digits of account number and presses the magnifying glass button (not the Tab key!) then the popup opens with the list filtered by the PREVIOUS condition, and not by the value that the user entered).
    So the question: is it possible to change a bit this default behavior?
    Edited by: Brenagwynn on 29/1/2010 15:36

    Yes, I've tried using launchPopupListener, I've even tried the approach Frank Nimphius has proposed here: http://www.oracle.com/technology/products/jdev/tips/fnimphius/restrictlovlist/restrictlov.html
    But alas, it doesn't work, as expected. Maybe it was working in JDev 11.1.1.0.2, but it doesn't work in JDev 11.1.1.2.0 I'm using. I'll try to use executeEmptyRow...

  • How do you change the default font in indesign cs3 on a mac?

    Hi, I have tried closing all indesign docs and then changing the font in the font menu to helvetica (from times), then opening a new document and it still gives me [Times (TT)] when i draw a new text box and write something in it.
    I have tried quitting indesign and reopening it and its still the old default font of [Times (TT)] - which is also not an available font on my machine.
    I have also changed my basic paragraph style to helvetica from times, and it still doesnt change the default font when i open a new document.
    When i open a new document in indesign it comes up with helvetica in the character pallet as the font, its just when i go to draw a text box and write something in it that it writes it in Times.

    Is it possible you have more than one text frame object style, or that you have some default paragraph style set other than [Basic Paragraph]? If you are only editing Basic Paragraph and your default text frame is set to another syle, or you have another paragraph style selected when you begin typing, you might see this behavior.
    If not, try resetting your preferences. Replacing InDesign Preferences

  • How to change the default KeyBinding of the TableView ?

    how to change the default key binding of the TableView ?
    When press Enter key on a editable TableView, the default action is to make the selceted cell to a editing state. I want to know if there is any way to make it select the right cell and wouldn't change the editing state of the selected cell when i press Enter key.
    here is something i've done.
          table.setOnKeyPressed(new EventHandler<KeyEvent>() {
                   @Override
                   public void handle(KeyEvent e) {;     
                        table.requestFocus();
                        KeyCode code =e.getCode();
                        if(code == KeyCode.ENTER){
                             try {
                                  new Robot().keyPress(java.awt.event.KeyEvent.VK_RIGHT);//XXX
                             } catch (Exception e1) {
    Thanks,
    ahiwoo
    Edited by: 911579 on 2012-2-1 上午3:15
    Edited by: 911579 on 2012-2-1 上午6:26
    Edited by: 911579 on 2012-2-1 上午6:41

    thanks jsmith. now it works well.
         table.addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                   @Override
                   public void handle(KeyEvent e) {
                        table.requestFocus();
                        KeyCode code =e.getCode();
                        if(code == KeyCode.ENTER){
                             try {
                                  new Robot().keyPress(key);//XXX  javafx  has no robot for key type...
                             } catch (Exception e1) {
                             e.consume();
              });

  • Need help changing the default Save Path

    Hello,
    We are implementing SAP, and will be using Citrix as the source for the GUI.  One of our requirnments are, that we need to change the default "Save Path" that users save documents too.   By default, this is to the C drive, but, we need it set to a different drive (i.e. V: on the citrix server).
    We found this note on SDN (see below) - however, it does not explain how to change or add this registry value?  Is this done in the GUI options, or in regedit?  If in reg-edit, where abouts in the tree does it go?
    Thanks guys, and any help would be greatly appriciated.
    Richard
    (As of SAP GUI 7.20, patch level 4) the REG_EXPAND_SZ registry value InitSaveDir can be used to configure the default path and folder for users to save the reported information in case of an access denial due to security rules. If users change the default path and save the information to an individual location, this new path will be kept as long as the user does not terminate the program. When starting SAP GUI again, users will get the configured default path again to store the reported information, the individual path changes will be lost. If the registry value does not exist, the default directory is the document directory of the SAP GUI.
    By default none of the above registry values exists. In order to change the behavior of the security module, the registry values need to be created and set to the desired value. A not existing registry value means use the default.
    In this doc:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/002444be-7018-2d10-e18e-a8c537198ef6?quicklink=index&overridelayout=true

    Hi,
    "Security rules that are created for a large number of users can be centrally stored on a server by an administrator. The administrator can use the registry values below under the registry key
    [HKEY_LOCAL_MACHINE\Software\SAP\SAPGUI Front\SAP Frontend Server\Security]
    to configure the behavior of the security module.
    Note: For 64 bit operating systems please use the following registry key
    [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\SAP\SAPGUI Front\SAP Frontend Server\Security]
    to configure the behavior of the security module."
    You can use regedit for installing this values.
    Best Regards,
    Aleh

  • HT204150 How do I change my default email on the "Me" contact from a Facebook email to my normal email address in the same contact?  Or at least change it for the autofill information?

    How do I change my default email on the "Me" contact from a Facebook email to my normal email address in the same contact?  Or at least change it for the autofill information?
    Perfernece for contact to change.  Do I just have to dis-associate my contact fromt the facebook account?  Is only the autofill changable?

    If you allow Facebook to access your contacts and you have the @facebook.com email alias turned on, it will add the @facebook.com email to your contact info, and because it has the fixed label of "email" it overrides every other email address.
    They didn't fix this in iOS 8.
    There are two ways to remove the @facebook.com email from your contact info:
    If you don't need your Facebook friends and their info updating your contacts, go into iOS Settings -> Facebook and turn off access to Contacts.
    If you don't use your @facebook.com email address (all it does it forward to the primary email address) you can go into the Facebook app, More -> Settings -> General -> Email -> and uncheck "Use your Facebook email". Removing it from Account Emails does not work, you have to turn it off. Once you do this, go to iOS Settings -> Facebook and turn Contacts off and on again to make it update your info. The @facebook.com address should be removed.

  • How to change the default text "There are no items to show in this view" in the visual webpart

    Hi,
    I am using a visual webpart and in that if there are no items in the list it is showing the default text "There are no items to show in this view." I want to change this default text. 
    I checked the forums here there are multiple ways are shown but no one is working for me.
    Kindly help me to change this text.
    Thanks in advanced.

    It seems you're retrieving items inside a specific you.. why not having a <div> inside you're visual web part and check to see if the count of items retrieved is > 0 then insert that in the div, otherwise, insert your custom message and not rendering
    the web part itself. What you're describing is the default message from SharePoint which comes from default views, and this can be changed from xslt in SP 2010 or in JSLink in SP 2013, here's a link how to do so in JSLink :
    http://www.idubbs.com/blog/2015/jslink-csr-to-override-there-are-no-items-to-show-in-this-view/ .
    But as said, since you're doing a visual web part, keep your stuff in the visual web part and check for the count of items before adding the rendered data to your div.  
    Mohamed Derhalli
    SharePoint Consultant
    Blog: SharePoint Thoughts
       Twitter:
    LinkedIn:
      

  • Help! ADF default behavior rejected by end users...

    Hi,
    We have built an ADF 11g application during the past months. Last week we had our first user acceptance test with a small group of users. The users were very satisfied about the nice looks of the screens. But they had quite a lot of issues with the default behavior of ADF. I'll provide a list of the most important issues below. I hope more people here at OTN have experienced these issues and perhaps have some workarounds. And perhaps Oracle can use lists like this to improve the next version of ADF...
    <ol><li>Multi record edit<br>We have a lot of multi record edit screens. These are all editable tables. Those tables have the following problems:
    <ol type="a"><li>Whenever a partial refresh occurs, the whole table gets reloaded. This takes some time, which is uncomfortable. But the main problem here is that the table does not preserve the scroll bar position. The situation can be improved a little bit by setting the <tt>displayRow</tt> attribute to <tt>"selected"</tt> on the table. This will cause the table to show the selected record at the top of the view port after a refresh. But this still confuses the end users. In their experience the records are randomly jumping around.</li>
    <li>Records are not always inserted at the bottom. (In fact, they are inserted above the selected record.) End users simply expect records to be inserted at the bottom of the table, no matter what. And I can't disagree with them. Isn't there a setting to achieve this in ADF?</li>
    <li>Whenever the user navigates to another record in the editable table, all validation rules on the record he navigates from are fired. That means he cannot leave a required field empty to fill it later. The end users say this is very annoying. We would like to delay all validation until the user presses the Commit button. But as far as I know this is not possible, is it?</li>
    <li>The selected record position is not preserved on a full refresh. Our Commit button forces a full refresh of the page. This sounds like a sensible choice to me. However, users tend to click on Commit quite often. But after a full refresh of the page, the currently selected record in a record set is always reset to the first record in the set. In a large data table, this annoys the users very much. Isn't it possible to preserve the selected record over a full refresh?</ol>
    <li>Annoying validation errors<br>Many end users are annoyed by the somewhat "persistent" validation error messages. In a larger form or an editable table, users sometimes want to ignore an error and first enter other data, before correcting the error. This is hardly possible, because ADF sets the input focus to fields with errors and keeps popping up windows with a list of fields that have errors. We would like to make the validation less "aggressive". It is okay to give a field a red border if it contains an error. But leave the input focus where it is. And don't show any popup until the user presses the Commit button. And even then show the popup window only once.</li>
    <li>ADF BC caching and business rules in the database<br>We have some business rules in our database that automatically fill some fields with default values. We have e.g. a master-details relation, where a value in the master record is calculated based on the values of the detail records. We have set the calculated field in the master record to "refresh after update" and "refresh after insert". Sometimes the value of the field gets refreshed, but sometimes not. Users know that the field should be calculated by "the system", and are asking if they did something wrong if it doesn't. I know we could do the calculation in ADF, but our policy is to have all business rules in the database and to not repeat ourselves (DRY). Is there another way to guarantee that the calculated value in the master record gets updated after an update or insert of one or more detail records?</li>
    <li>Partial refresh loses data<br>If a field causes a partial submit to occur, fields in the same record that were not (partial) submitted before lose their data. This forces us to enable partial submit on all fields. But that causes a delay after moving the focus to the next field and validations to be fired too early.</li>
    </ol>
    I've numbered the items above, please use these number as a reference if you're posting an answer to a specific question.
    Please let me know any solution, even if it is only a partial solution. We've a nasty situation now. Our application is (nearly) finished, but it is blocked for production by the users because of the behavior of the ADF framework, on which we have very little influence. We can't blame the users for that, most of their criticism is fully justified. So we have to come up with a good solution for these issues before we can go to production. So any help would be highly appreciated!
    Best regards,
    Bart Kummel
    PS.
    We're using JDeveloper/ADF 11.1.1.1.0, we deploy to a WebLogic 10.3.1 server and we have an Oracle 10g database. We're using the full ADF stack: ADF Business Components, ADF Bindings and ADF Faces.

    Hi Bart,
    I can answer for few of your questions.
    Bart Kummel wrote:
    Hi,
    We have built an ADF 11g application during the past months. Last week we had our first user acceptance test with a small group of users. The users were very satisfied about the nice looks of the screens. But they had quite a lot of issues with the default behavior of ADF. I'll provide a list of the most important issues below. I hope more people here at OTN have experienced these issues and perhaps have some workarounds. And perhaps Oracle can use lists like this to improve the next version of ADF...
    <ol><li>Multi record edit<br>We have a lot of multi record edit screens. These are all editable tables. Those tables have the following problems:
    <ol type="a"><li>Whenever a partial refresh occurs, the whole table gets reloaded. This takes some time, which is uncomfortable. But the main problem here is that the table does not preserve the scroll bar position. The situation can be improved a little bit by setting the <tt>displayRow</tt> attribute to <tt>"selected"</tt> on the table. This will cause the table to show the selected record at the top of the view port after a refresh. But this still confuses the end users. In their experience the records are randomly jumping around.</li>You can set the fetchSize in the iterator to a minimum value (Say if you are displaying 20 records in the table at a time, you can set the fetchSize to 20, so that, it will fetch only 20 records at a time, and the remaining records on demand basis, i.e they will be fetched when you scroll in the table).
    <li>Records are not always inserted at the bottom. (In fact, they are inserted above the selected record.) End users simply expect records to be inserted at the bottom of the table, no matter what. And I can't disagree with them. Isn't there a setting to achieve this in ADF?</li>I suppose you are using the default createInsert operation. You can write your own method instead of the default createInsert, which would have something like
    public void customCreateInsert(){
    vo.last();
    vo.createInsert();
    }You can expose this method as method action and use it in place of default CreateInsert.
    <li>Whenever the user navigates to another record in the editable table, all validation rules on the record he navigates from are fired. That means he cannot leave a required field empty to fill it later. The end users say this is very annoying. We would like to delay all validation until the user presses the Commit button. But as far as I know this is not possible, is it?</li>You can set the immediate property to true for the column for which you want to skip the validation. However, the validation will fire when you submit / commit the changes (which is expected).
    <li>The selected record position is not preserved on a full refresh. Our Commit button forces a full refresh of the page. This sounds like a sensible choice to me. However, users tend to click on Commit quite often. But after a full refresh of the page, the currently selected record in a record set is always reset to the first record in the set. In a large data table, this annoys the users very much. Isn't it possible to preserve the selected record over a full refresh?</ol>Again, you can have a custom method, which would get the current row, commit the transaction and do a setCurrentRowWithKey to point to the last selected record after commit.
    <li>Annoying validation errors<br>Many end users are annoyed by the somewhat "persistent" validation error messages. In a larger form or an editable table, users sometimes want to ignore an error and first enter other data, before correcting the error. This is hardly possible, because ADF sets the input focus to fields with errors and keeps popping up windows with a list of fields that have errors. We would like to make the validation less "aggressive". It is okay to give a field a red border if it contains an error. But leave the input focus where it is. And don't show any popup until the user presses the Commit button. And even then show the popup window only once.</li>You can add a af:messages tag in the top and set globalOnly to true. Also, set the immediate property for the items to skip the validation when they tab out.
    <li>ADF BC caching and business rules in the database<br>We have some business rules in our database that automatically fill some fields with default values. We have e.g. a master-details relation, where a value in the master record is calculated based on the values of the detail records. We have set the calculated field in the master record to "refresh after update" and "refresh after insert". Sometimes the value of the field gets refreshed, but sometimes not. Users know that the field should be calculated by "the system", and are asking if they did something wrong if it doesn't. I know we could do the calculation in ADF, but our policy is to have all business rules in the database and to not repeat ourselves (DRY). Is there another way to guarantee that the calculated value in the master record gets updated after an update or insert of one or more detail records?</li>We need some more information. Do you see any "pattern" on which this things occur?
    -Arun

  • Powershell Script to change the default user Account picture for all users in windows 7 and 8

    Hello,
    Can some sone help me with PS script to change user account pictures of all user account in windows 7 and windows 8 ?
    I will deploy this through MDT TS as Custom TS after OSD.
    Shailendra
    Shailendra Dev

    Hello,
    Can some sone help me with PS script to change user account pictures of all user account in windows 7 and windows 8 ?
    I will deploy this through MDT TS as Custom TS after OSD.
    Shailendra
    Shailendra Dev
    The default user account picture is stored here.
    C:\programdata\Microsoft\User Account Pictures\user.bmp
    It should just be a matter have copying the picture you want to that location and over writing what is there.
    or....
    Computer Configuration\Administrative Templates\Control Panel\User Accounts\Apply the default user logon picture to all users
    You can also configure this by a registry setting;
     [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer]
      UseDefaultTile = 1
    The picture that you configure, will not be loaded until the user account will actually be created on the pc. Meaning the first time a >new< user will log on to a pc, they will have no picture shown at all using their login screen (this is default
    behavior). Same will occur if you enable the policy don't display last user name. However, once they log in the picture will be shown in the start menu, and if they lock their pc the image will also be shown

  • HT201342 In Apple Mail, how do I change the default outgoing address for mailboxes that I've set up?

    In Apple Mail (Yosemite on a MacBook Pro), the default address for outgoing messages from mailboxes that I've set up that are *not* tied to separate email accounts has suddenly become my iCloud address (which I almost never use). I've got my default set to use whatever address is the default for the mailbox I'm in. This works fine for mailboxes associated with different mail accounts, and until recently it worked fine for mailboxes that I had set up for convenience, using my default email address (which is an Earthlink address I've had for many years). Somewhere within the last year, perhaps with an upgrade to the OS, I've found that outgoing mail from one of those mailboxes (but not from the general Inbox) defaults to my iCloud address. I have to manually choose a different address each time (which is hard to remember to do). This is new behavior, and very unwelcome. But I can see no way to change the default email address associated with each mailbox.
    How do I undo this unwanted connection?

    Hi everyone
    Sorry however I'm experiencing a similiar issue, in that I have 10 differing email accounts.
    However in the default email accounts, for some bizarre reason, only 4 show, being icloud, one of my older yahoo email accounts, my work email and then "From My PC".
    I run two other businesses of which I have a proper Google Mail Business Accountsfor each, but non of my google email address show in the default list.
    Is there any reason why?
    I actually want one of those to show.
    I have put my google mail to the top of the inbox, however it still doesn't show?
    I've also put the default calendar as my google business account but still the default account doesn't display.
    Any ideas?
    Jonathan

  • Changes in ACR Behavior

    Today I was notified of updates to Bridge and Camera RAW when I rebooted in Win7 64, and changes to Camera RAW only in XP 32.
    In Win7 I allowed the updates, and then opened  a file to see what I could see. I was shocked by what I saw.
    Apparently, the update took some xmp data from a file previous to the update, and applied it as a new default setting for my camera, as if I had myself done that, which I can assure you I did not, as I want to be sure my starting place for the evaluation was consistent, even if incorrect for the particular image.
    Here's the changes:
    1) All images now read 2010, including images never before opened anywhere and showed 2003 when first opening these in the current ACR. Ok, I can live with that.
    2) The Detail menu reflects a set of sharpness and noise settings I applied during my most recent runs for a particular ISO value which I had saved. Again these showed up on images from February never before opened anywhere. Not so acceptable at all.
    3) The "Enable Lens Profile Corrections" is now checked...total disagreement here! I have never saved (clicked Done) on any image I used to check the behavior of Lens Corrections.
    So, I reset all to the former defaults and saved as new camera raw defaults.
    I switched to XP CS5 and the notification of the update showed up. It only said Camera raw updates. I did not allow the updates, but went immediately to the same image I used to check the behavior in Win7 64. They all were at my selected defaults...no sharpening, noise or checked "Enable Lens Profile Corrections" IOW business as usual which I had so carefully selected and matched to the Win7 version.
    I ran the updates, and the only change I saw here was that the 2010 now ran without my selecting it, but all the other settings remained at MY default settings.
    I am at a loss to explain or accept. There is, of course, the remote possibility I did change the default settings in ACR Win7 version, but the change in "Enable Lens Profile Corrections" would have been excluded.
    Or my Fairy Godmother decided I  didn't know what the F I am doing and did it for me!
    So, it behooves the user to maintain a check on all default settings when updates are applied. I do that anyway, but I can get lazy or in a schedule conflict and simply run it.
    Note: What I had hoped I would see:  New lens data in ACR is provided including the 18 to 105 is now available. It isn't.
    Lawrence
    I posted this in error in the Lens Correction Creator thread. My bad!

    This is the Lens Profile Creator forum.  You might have better luck with a post like this one in the Camera Raw forum.

  • Change the default entity in the lookup window in PhoneCall Form

    Hello,
    I'm trying to write a javascript to change the default entity in the lookup window for the 'from' field to use the Contact entity. Right now Account is the default entity.
    So this is what I have:
    document.getElementById("from").setAttribute("defaulttype", "2");
    var ViewGUID= "a2d479c5-53e3-4c69-addd-802327e67a0d";
    Xrm.Page.getControl("from").setDefaultView(ViewGUID);
    I got the code actually from this website #34: http://garethtuckercrm.com/2011/03/16/jscript-reference-for-microsoft-dynamics-crm-2011/
    I attached the function into the form and publish the solution however it's still showing Account as the default entity.
    Any idea is appreciated. Thanks.
    -tri

    Chitra Swaminathan wrote:
    Hello,
    We are using Lookups in our application which stores the locale specific information. We have a drop down in the UI which will give the language names like 'American English', 'Canadian French' etc. When chosen 'Canadian French' we need to change the nls_language in the db to refresh the contents in the lookup generated component to show in French. How to acheive this?
    We are able to switch the bundles, upon change in locale in the run time. But the AM setting - to set the DB session is what we are looking for. Would appreciate your help on this.
    Thanks,
    Chitra.to localize ADF-BC you need to set the jbo.default.country and jbo.default.language property to language value in Application module configuration
    other way is to override the prepareSession method in ApplicationModuleImpl class to call some JDBC statement to set the dbms_application_info.set_client_info to value of the language.
    if you can provide more details about your lookup table and data structures then one can be more helpful
    Zeeshan

Maybe you are looking for

  • Sporadic issues with wireless connection (dhcpcd times out)

    I'm using a wireless usb adaptor Dlink DWA 110 (chipset rt73). It can connect fine some times, but many times it times out on dhcpcd. Raising the time out time causes it to hold indefinitely on the message "offered 192.168.0.132 from 192.168.0.1". An

  • .mov to .flv converter

    Can anyone recommend a good .mov to .flv converter? I need to convert my FCE files to .flv for another platform. Thanks! Doug

  • Creating Rows

    Hi, I need to create empty document and add columns to that from query and add row from another query. I am able to create document with columns but after that while adding row it wont list the columns. How can I do this, Pls help me on this regard.

  • Recently Played Playlist is upside down

    Actually the most recent song should be at the top of the playlist as it is on iTunes. But on my Apple TV the most recent song is always at the bottom. Normally, it should be the same order as it is on iTunes. Any ideas how I can change that?

  • Frustrating Formula Problems

    I'm having a frustrating problem in Numbers. When I press the equals key and click on a cell in another table it returns as an invalid formula error. The formula is: [='Table 10' :: B7] But when I hit return it changes to [=Table 10 :: B7] I have tri