Bug: combo_box doesn't support min, max, precision, or validate

Combo boxes don't support the min, max, precision, or validate properties, contrary to what the documentation states in "Lightroom SDK 3.0\API Reference\modules\LrView edit view properties.html".
Here's a test program that shows the problems:
local LrDialogs = import 'LrDialogs'
local LrView = import 'LrView'
local f = LrView.osFactory()
local text = f:static_text {}
local function validate (view, value)
    text.title = "validate called from " .. view.label
    return true, value, nil
    end
LrDialogs.presentModalDialog {
    title = "Test", contents = f:column {
        text,
        f:row {
            f:static_text {title = "numeric:"},
            f:edit_field {min = 1, max = 10, precision = 0}},
        f:row {
            f:static_text {title = "numeric:"},
            f:combo_box {min = 1, max = 10, precision = 0,
                items = {1, 2, 3}}},
        f:row {
            f:static_text {title = "validate:"},
            f:edit_field {validate = validate,
                label = "edit_field"}},
        f:row {
            f:static_text {title = "validate:"},
            f:combo_box {validate = validate,
                label = "combo_box", items = {1, 2, 3}}}}}
I've reported this via the Web form.

See also
http://forums.adobe.com/thread/675142.

Similar Messages

  • Why no min/max height?

    Since I've started creating responsive content with Edge, once thing has really bugged me - and that's the omission of a Min H and Max H alongside Min W and Max W. I've been told it's not necessary as height can be constrained to width, but I still find myself needing it.
    Two scenarios I've frequently come across:
    • An object is set to 100% width. When a window is resized to a landscape orientation, I want an object's maximum width dictated by it's height to prevent it taking up too much space in the layout. For example, in portrait layout it may be W100%, H10% - turn that to landscape and it might become W100%, H60% if I've constrained the proportions. I want to be able to cap it at say H30%, so after a certain point it's just the width that changes and not the height.
    • I have a series of square images nested within a horizontal scrollable div. I want these images to stay in proportion but always fill to H100% of the container div, regardless of its shape (portrait, landscape). It seems to simple but I just can't make it work without a min/max H functionality.
    Can anyone explain why this feature is missing?
    Thanks

    As you know, IE doesn't support min/max-height/width.
    With regard to HEIGHT, you can work around IE's lack of support for min-height since the way that IE deals with an explicit height is as if it were min-height.  For example, if you have this CSS:
    #foo { min-height:250px; }
    you can *hack* a fix for IE like this -
    #foo {
         min-height:250px;
         _height:250px;
    The "_height" style is ignored by all browsers except IE<8.  For those versions of IE that 'read' that style, they interpret it as 'height' and since IE treats an explicit height value as if it were 'min-height' you are set.  Another way (and a cleaner way in my opinion) would be to add an IE conditional comment to the page, e.g.,
    <!--[if lte IE 7]>
    <style>
    #foo {
         height:250px;
    </style>
    <![endif]-->
    That takes care of min-height.
    The solutions for max-height or min/max-width are not so simple.  Google for IE CSS calculations to see how you might approach them.

  • DateTimeAxis min/max bug? Problems with consistent padding. Date Wrapping.

    I have been working on a problem with a BarChart object that I've created using dynamic data.
    My primary issue is that I can't seem to get the proper min/max values to set for the chart.
    To solve this I manually found the min and max of the data set of Dates and set the min and max of the chart. This allowed me to finally see all the floating custom bars (each bar is rendered with a user set fill), however now if I have a bar that extends over a year change the horizontal axis labels do not wrap the date properly, so instead of 2/10 (feb 2010) being the last date, 12/09 (dec 2009) is the last date.
    I've been trying to dynamically adjust the padding based upon a change event, but so far to no avail. Partially I think because I'm not sure which event for the function to fire on.
    private function dateAxisGen(r:Array):void {
                    var min:Number = r[0].startTime.time;
                    var max:Number = r[0].endTime.time;
                    const PAD:Number = 2;
                    const MILLISEC_IN_MONTH:Number = 2629743830;
                    const MILLISEC_IN_WEEK:Number = 604800000;
                    const MILLISEC_IN_DAY:Number = 864;
                    for (var i:int = 1; i < r.length; i++) {
                        var o:OperationXT = OperationXT(r[i]);
                        min = Math.min(o.startTime.time, min);
                        max = Math.max(o.endTime.time, max);
                    // Calculates the maximum range, then adds an appropriate
                    // padding to the chart via extra time. TODO
                    /* var range:Number = max - min;
                    if(range >= MILLISEC_IN_MONTH) {
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                    } else if(range >= MILLISEC_IN_WEEK) {
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                    } else {
                        dAxis.padding = PAD;
                    dAxis.minimum = new Date(min);
                    dAxis.maximum = new Date(max);
    this, however, does not adjust the padding properly when an operation is removed from the list. Not to mention I still have the date wrapping error. It gives me the following error:
    Cannot access a property or method of a null object reference.
        at mx.charts::AxisRenderer/measureHorizontalGutters()[C:\work\flex\dmv_automation\projects\d atavisualisation\src\mx\charts\AxisRenderer.as:2244]
        at mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\work\flex\dmv_automation\projects\dat avisualisation\src\mx\charts\AxisRenderer.as:1858]
        at mx.charts::AxisRenderer/adjustGutters()[C:\work\flex\dmv_automation\projects\datavisualis ation\src\mx\charts\AxisRenderer.as:1534]
        at mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\work\flex\dmv_automation\pro jects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:2239]
        at mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\work\flex\dmv_automation\pr ojects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:1366]
        at mx.core::UIComponent/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8065]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\f ramework\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\gumbo_beta2\frameworks\projects \framework\src\mx\managers\LayoutManager.as:736]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\gumbo_beta2\frameworks\ projects\framework\src\mx\managers\LayoutManager.as:1069]
    Any help with my problem would be greatly appreciated.
    ADDITIONAL INFO:
    Alright, so I've discovered that the ONLY time the date wrapping error occurs is when the axis labels contain only the month and year, any other time it places it properly.
    Does anyone know where I can report this bug?

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • Mac Mini Server Doesn't Support Duel Thunderbolt Displays!

    I purchased a mac mini server with the intent of ultimately running two thunderbolt displays off of it. I pre-ordered in August, waited six weeks for it to arrive and realized that the mac mini server that I had been sent was a lemon. I applied for a replacement, which was built in China and it arrived two weeks later. Everything was going great - I had my mac mini server running a thunderbolt and I was thrilled! Yesterday however, I purchased my second thunderbolt display, connected it and nothing happened. Trouble shooting didn't help. Finally, I called apple and was told that the server version doesn't support duel thunderbolt displays! I had read all of the technical specifications and there was no mention (at that time) that the server couldn't support duel displays. I am now in the process of returning my mac mini server in exchange for a custom build mac mini with upgraded 2.7 GHz i7 processors and 8GB RAM. I'm really disappointed to have to be going through all of these extra steps just to realize the system that I imagined early on. I checked the Apple Thunderbolt display options page at apple and they have now posted that the server doesn't support duel displays (but that informaiton definitely was not there when I first read it!). Why would the server version not support duel displays? To me, it doesn't make any sense. What are your thoughts?

    It doesn't support dual TB displays because it uses the integrated
    Intel graphics HD 3000.  Only discrete graphics cards can handle
    dual TB displays.  The integrated graphics chip just cant handle
    the load.
    As for the logic of it, as servers, they are usually single display
    and even more often are run headless and managed remotely.
    It is marketed as a server and thus the logic.

  • [svn:osmf:] 11205: Fix bug FM-169: Trait support for data transfer sample doesn' t display bytes loaded and bytes total for SWF element

    Revision: 11205
    Author:   [email protected]
    Date:     2009-10-27 15:04:26 -0700 (Tue, 27 Oct 2009)
    Log Message:
    Fix bug FM-169: Trait support for data transfer sample doesn't display bytes loaded and bytes total for SWF element
    Ticket Links:
        http://bugs.adobe.com/jira/browse/FM-169
    Modified Paths:
        osmf/trunk/apps/samples/framework/PluginSample/src/PluginSample.mxml
        osmf/trunk/apps/samples/framework/PluginSample/src/org/osmf/model/Model.as

    The bug is known, and a patch has been submitted: https://bugs.freedesktop.org/show_bug.cgi?id=80151. There's been no update since friday, so I wonder what the current status is, or if it's up for review at all.
    Does anyone know how we can be notified when this patch hits the kernel?

  • Mini iPad says it doesn't support adobe flash player that is needed for many applications

    Mini iPad says it doesn't support adobe flash player that is needed for many applications

    Yes, that is correct. Apple products DO NOT support flash. Thank you, Apple.

  • [svn] 1338: Bug: BLZ-123-Attempting to use a channel that doesn' t support messaging (AMFChannel/AMFEndpoint withtout polling enabled) should throw error

    Revision: 1338
    Author: [email protected]
    Date: 2008-04-22 07:45:18 -0700 (Tue, 22 Apr 2008)
    Log Message:
    Bug: BLZ-123-Attempting to use a channel that doesn't support messaging (AMFChannel/AMFEndpoint withtout polling enabled) should throw error
    QA: Yes
    Doc: No
    Details: Added logic in Consumer such that when the Consumer is connected over a non-realtime channel (i.e. non-polling and non-streaming channel), a warning is logged to let the user know that channel is not going to automatically receive updates via client poll or server push. We can't really throw an error here because one might want to disable channel polling and manually send poll requests when needed and this is a valid configuration as well.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-123
    Modified Paths:
    flex/sdk/branches/3.0.x/frameworks/projects/rpc/src/mx/messaging/AbstractConsumer.as

    Thanx Mete, yeah i did...
    but i solved it some other way... not entirely sure this was
    it though as i was doing a lot of things at once...
    it was fds.swc... possibly it was out of date or missing.

  • Mini 2nd gen. doesn't support fully VBR Mp3 ?

    Mini 2nd gen. doesn't support fully VBR Mp3 ? All music coded with this method skips during the playback !

    It may be an unsupported format try converting them in Itunes by right clicking the VBR songs and than selecting convert to ACC.

  • [svn:bz-trunk] 17965: bug fix for watson 2669777 ASJ: AsyncMessage doesn' t support surrogate pair.

    Revision: 17965
    Revision: 17965
    Author:   [email protected]
    Date:     2010-09-30 12:44:48 -0700 (Thu, 30 Sep 2010)
    Log Message:
    bug fix for watson 2669777 ASJ: AsyncMessage doesn't support surrogate pair.
    Using the new String(bytes, "utf-8") to read the UTF string from amf input.
    Checkintests pass
    Ticket Links:
        http://bugs.adobe.com/jira/browse/utf-8
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/Amf3Input.java

  • My mom threw away my box with my install discs my retail snow leopard disc doesn't support mac mini 2010 ethernet.  can apple help me ?

    my mom threw away my box with my install discs my retail snow leopard disc doesn't support mac mini 2010 ethernet.  can apple help me ?  less than 1 month old. 

    You can get replacement System Install & Restore CD/DVDs from Apple's Customer Support - in the US, (800) 767-2775 - for a nominal S&H fee. You'll need to have the model and/or serial number of your Mac available.

  • [svn:fx-trunk] 12552: DataGroup now tracks the indices of the active virtual item renderers with a list , rather than the min/max values.

    Revision: 12552
    Revision: 12552
    Author:   [email protected]
    Date:     2009-12-04 13:45:12 -0800 (Fri, 04 Dec 2009)
    Log Message:
    DataGroup now tracks the indices of the active virtual item renderers with a list, rather than the min/max values. 
    DataGroup/addItemRendererToDisplayList() now respects the overlay.
    QE notes:
    Doc notes:
    Bugs: sdk-24052
    Reviewer:
    Tests run: DataGroup, List
    Is noteworthy for integration: no
    Ticket Links:
        http://bugs.adobe.com/jira/browse/sdk-24052
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/DataGroup.as

    Hello Martin:
    Thanks for your input.  However I am not certain we have resolved this issue adequately, or understand the principles governing the css as regards this spry menu framework 2.0 (1.0).
    For example, the menu only works in IE 6.0 if the css remains in the head.  I agree with your original post that it shouldn't make any difference whether the css is posted in the head or in a separate style sheet (so long as specificity issues are addressed).  Both should work -- and yet it doesn't.
    If the CSS is placed in the separate style sheet governing the total site, it doesn't work for 6.0.  If placed at the top of the style sheet, conflicts of specificity prevent the menu from rendering properly in any of the browsers causing the rules for general links to govern the menu.   This has been verified using a cross browser testing.  If the styles are placed at the bottom of the style sheet to help them take precedence, they work in all the browsers except for IE 6.
    The website I am building needs to support IE 6 for a variety of reasons, and because it is catering to the non-profit community and to low income persons, I am mindful of even small differences in page weight.
    So for me, at least, the issue remains baffling.
    I appreciate your input, but also would appreciate the input from others, and especially Adobe Community Professionals and employees.  The spry framework in this regard is not well documented.  I am not certain if this is exclusively a CSS problem, if it might also be complicated by the architecture of the spry framework, or if indeed other variables are at play.
    I would be my hope that in resolving the problem, other users of the this particular spry framework might also benefit.
    Thanks,
    Steve.

  • Possible bug: Saving array with extended and double precision to spreadshee​t

    If one concatenates a double precision array and an extended precision array with the "build array" vi and then saves using "Write to Spreadsheet File" vi any digits to the right of the decimal place are set to zero in the saved file. This happens regardless of the format signifier input (e.g. %.10f) to the  "Write to Spreadsheet File" vi.
    I am on Vista Ultimate 32 bit and labview 9.0
    This is a possible bug that is easily circumvented by converting to one type before combining arrar to a spreadsheet. Nonetheless, it is a bug and it cost me some time.
    Solved!
    Go to Solution.
    Attachments:
    Spreadsheet save bug.vi ‏9 KB

    Hi JL,
    no, it's not a bug - it's a feature
    Well, if you would look more closely you would recognize the "Save to Spreadsheet" as polymorphic VI. As this polymorphic VI doesn't support EXT numbers internally (it only supports DBL, I64 and String) LabVIEW chooses the instance with most accuracy: I64 (I64 has 64 bits precision, DBL only 53...). So your options are:
    - set the instance to use as DBL (by right-click and "Select type...")
    - make a copy of this VI, save it with a different name and make it support EXT numbers (don't rework the polymorphic VI as you would break compatibility with other LV installations or future revisions)
    And yes, those coercion dots always signal some conversions - you should atleast check what's going on there...
    Message Edited by GerdW on 05-21-2010 10:01 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • Min Max Planning - Sub Assembly WO Demand Planning

    Hi All,
    WO for FG should be a demand for WOs for SA. Can Min Max look at the WOs of FGs and if SA is a component, create a WO for SA?
    I observed Min Max doesn't support this. Let me know your pointers.
    Regards

    Hi All,
    Min Max Planning Supports WIP Demand.
    Regards

  • Issue with min/max when vertical axis assigned to multiple series

    Hi.
    I have some simple charting code that is dynamically adding LineSeries to a chart as the user requests them from the gui. As each series is added the vertical axis is assigned to the series and then data is requested and assigned to the dataProvider on the series. This is all working fine however I have found that if I add a sceond series after the first series is displayed and assign the same vertical axis to the second series then the vertical axis seems to set teh min/max based only on the second series added and ignores the first series. It doesnt set to the max of both series and so I get an incorrect max set. If I add a 3rd series the same happens again and the first and second series values seem to be ignored and the axis is set based on the last series to be added.
    Is this expected? Ive tried different variations of invalidating the data/series/styles to force it to refresh but I always get the same. It does refresh but based on only the values in the last added series.
    What is odd is that if I add 2 series at the same time, and assign the axis to both of them and then request data for both and update the dataProvider on both of them the axis is configured correctly based on the max value of both series.
    Any workarounds to make it do the right thing if they are added dynamically? Is this a bug or a known "feature"?
    Any light anyone can shed would be appreciated.
    I need to have the axis assigned to the series directly as I want to be able to use multiple axes. I have found that if I set the verticalaxis on the chart rather than the series then it works fine and sets the min/max based on the combined values of both series.
    The vertical axis is just a simple LinearAxis.
    Any help or suggestions would be appreciated.
    Im using Flex 4.1
    Tks
    Dan

    Adobe Flex LiveDocs seemed to indicate "Using multiple series in the same chart works best when the data points are in a similar range (such as a stock price and its moving average). When the data points are in numerically very different ranges, the chart can be difficult to understand because the data is shown on a single axis. The solution to this problem is to use multiple axes, each with its own range. You can plot each data series on its own axis within the same chart using the techniques described in Using multiple axes" and that link is here:
    http://livedocs.adobe.com/flex/3/html/help.html?content=charts_types_11.html
    I was going to tae a look at this myself, but the code posted here is quite complex, and I suspect incomplete.
    If you refer to that link and still cannot solve the issue, I would try your best to boil down your code to a more simple example still exhibiting the issue, and then post that, along with any data and the simplified main app.
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • Iwlist scanning gives: Interface doesn't support sc [solved]

    When I'm trying to scan for all available networks I get:
    # iwlist eth1 scanning
    eth1 Interface doesn't support scanning : Operation not supported
    My wireless card works fine if I set every parameter manually. I'm currently using the orinoco drivers that came along with ArchLinux.
    It seems like that the version of the orinoco drivers installed doesn't support the scan stuff. But building the new orinoco drivers failed with
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c: In function `orinoco_ pci_suspend':
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c:330: error: too many a rguments to function `pci_save_state'
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c: In function `orinoco_ pci_resume':
    /usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.c:347: error: too many a rguments to function `pci_restore_state'
    make[2]: *** [/usr/local/download/orinoco/orinoco-0.15rc2/orinoco_pci.o] Error 1
    make[1]: *** [_module_/usr/local/download/orinoco/orinoco-0.15rc2] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.6.11.3-ARCH'
    make: *** [modules] Error 2
    So I did try the wlan-ng26 driver downloaded and installed with pacman.
    I remove the orinoco modules with
    [root@ArchThinkpad orjanp]# modprobe -r orinoco_pci
    But when I try to insert the prism2_pci module, it doesn't exist. Why?
    [root@ArchThinkpad orjanp]# modprobe prism2_pci
    FATAL: Module prism2_pci not found.
    Any heads up on what to do?
    This is iwconfig before removing the orinoco modules.
    [root@ArchThinkpad orjanp]# iwconfig
    lo no wireless extensions.
    sit0 no wireless extensions.
    eth0 no wireless extensions.
    eth1 IEEE 802.11-DS ESSID:"" Nickname:"Prism I"
    Mode:Managed Access Point: 00:00:00:00:00:00 Bit Rate:11 Mb/s
    Tx-Power=15 dBm Sensitivity:1/3
    Retry min limit:8 RTS thr:off Fragment thr:off
    Encryption key:off
    Power Management:off
    Link Quality=0/92 Signal level=-68 dBm Noise level=-122 dBm
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    This is lspci
    [root@ArchThinkpad orjanp]# lspci
    00:00.0 Host bridge: Intel Corp. 82845 845 (Brookdale) Chipset Host Bridge (rev 04)
    00:01.0 PCI bridge: Intel Corp. 82845 845 (Brookdale) Chipset AGP Bridge (rev 04)
    00:1d.0 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #1) (rev 02)
    00:1d.1 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #2) (rev 02)
    00:1d.2 USB Controller: Intel Corp. 82801CA/CAM USB (Hub #3) (rev 02)
    00:1e.0 PCI bridge: Intel Corp. 82801BAM/CAM PCI Bridge (rev 42)
    00:1f.0 ISA bridge: Intel Corp. 82801CAM ISA Bridge (LPC) (rev 02)
    00:1f.1 IDE interface: Intel Corp. 82801CAM IDE U100 (rev 02)
    00:1f.3 SMBus: Intel Corp. 82801CA/CAM SMBus (rev 02)
    00:1f.5 Multimedia audio controller: Intel Corp. 82801CA/CAM AC'97 Audio (rev 02)
    00:1f.6 Modem: Intel Corp. 82801CA/CAM AC'97 Modem (rev 02)
    01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500]
    02:00.0 CardBus bridge: Texas Instruments PCI1250 PC card Cardbus Controller (rev 01)
    02:00.1 CardBus bridge: Texas Instruments PCI1250 PC card Cardbus Controller (rev 01)
    02:02.0 Network controller: Harris Semiconductor Prism 2.5 Wavelan chipset (rev 01)
    02:08.0 Ethernet controller: Intel Corp. 82801CAM (ICH3) PRO/100 VE (LOM) Ethernet Controller (rev 42)
    This is lsmod before removing orinoco.
    [root@ArchThinkpad orjanp]# lsmod
    Module Size Used by
    radeon 78336 1
    ohci_hcd 23048 0
    ehci_hcd 36488 0
    irtty_sir 7552 0
    sir_dev 18636 1 irtty_sir
    irda 144184 1 sir_dev
    crc_ccitt 2432 1 irda
    parport_pc 29252 0
    parport 38600 1 parport_pc
    rtc 13260 0
    pcspkr 4044 0
    eepro100 32528 0
    orinoco_pci 7552 0
    orinoco 44172 1 orinoco_pci
    hermes 9472 2 orinoco_pci,orinoco
    yenta_socket 23560 0
    rsrc_nonstatic 11648 1 yenta_socket
    pcmcia_core 51488 2 yenta_socket,rsrc_nonstatic
    snd_intel8x0m 19396 0
    snd_intel8x0 34624 0
    snd_ac97_codec 79224 2 snd_intel8x0m,snd_intel8x0
    snd_pcm_oss 56224 0
    snd_mixer_oss 21120 1 snd_pcm_oss
    snd_pcm 98564 4 snd_intel8x0m,snd_intel8x0,snd_ac97_codec,snd_pcm_oss
    snd_timer 27268 1 snd_pcm
    snd 59492 7 snd_intel8x0m,snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer
    soundcore 10848 1 snd
    snd_page_alloc 10244 3 snd_intel8x0m,snd_intel8x0,snd_pcm
    i2c_i801 8972 0
    i2c_core 23296 1 i2c_i801
    usbhid 47744 0
    uhci_hcd 33424 0
    usbcore 125560 5 ohci_hcd,ehci_hcd,usbhid,uhci_hcd
    shpchp 100996 0
    pci_hotplug 34760 1 shpchp
    tsdev 8256 0
    joydev 10560 0
    evdev 9984 0
    cpufreq_powersave 2176 0
    cpufreq_userspace 5680 0
    p4_clockmod 6164 0
    speedstep_lib 4868 1 p4_clockmod
    freq_table 5008 1 p4_clockmod
    e100 37760 0
    mii 5760 2 eepro100,e100
    nls_cp437 6144 1
    vfat 14976 1
    fat 41884 1 vfat

    orjanp wrote:
    Thanks.
    I installed the 0.15RC1 version of the Orinoco drivers found here.
    I rebooted but I still had the 0.13 version. I did a make and make install as the readme file said.
    What do I have to do to update the driver?
    do you use a PKGBUILD?
    update the driver: if it was copied to the right place and the kernel knows about it (depmod -a) it should work
    for a start, check under
    ls -la /lib/modules/`uname -r`/kernel/drivers/net/wireless/
    that your module is installed under the correct location (the orinoco files should be newer than the other ones)
    if this is so, make sure you are depmod -a (as root) ... and if even this is ok, then either you are running the new modules or something strange happened

Maybe you are looking for

  • Excise invoice clearing method for customs

    Hi Gurus     this is chandu  , how to clear the excise invoice for imported materials is there  any transactional code to plz tell me  Example: if suppose i'm importing a material from USA so how can i clear the customs duty to make a GR at my compan

  • How can i export the data to excel which has 2 tables with same number of columns & column names?

    Hi everyone, again landed up with a problem. After trying a lot to do it myself, finally decided to post here.. I have created a form in form builder 6i, in which on clicking a button the data gets exported to excel sheet. It is working fine with a s

  • My iPhone has been stolen, how can I delete the data on it while at the same time, keeping my number.

    Hi there,  My iPhone has been stolen.  I have managed to get a replacement SIM with the same number.  Is there any way I can have the data on the stolen phone deleted or have it tracked and stopped of its use.  I did have Find me App but I am not sur

  • Loading long texts ( 60) into BI 7 with Z-tables?

    Hello Forum, I've seen many posts and questions regarding the problem of texts bigger than 60 characters. Due we can't use the method of various text fields/attributes in one InfoObjekt, we considered using the document option of InfoObjects. Because

  • Installation CRC exception

    I have the following error in installing the SunONE application server downloaded on my Win2K Professional OS SP3 patched. Any advice is appreciated. Thanks. -- error snippets |-1%java.util.zip.ZipException: invalid entry CRC (expected 0x263a0ea2 but