Need help with DM software install - installer thinks I have previous installati​on, but I don't

This is really frustrating me, but I recently uninstalled v4.3 and have been struggling to re-install ANY version of the DM onto my XP Pro machine.  I have followed every bit of advice I can find including clean un-install / install, change the TEMP environment variable, unzip the installer and store locally, but I still can't figure this out.
I've been studying the installer log file, and I think this might be a clue:
InstallShield 14:12:58: Registering Msi Server...
MSI (c) (4C!DC) [14:12:58:742]: Note: 1: 2732 2: 0
InstallShield 14:12:58: Invoking script function RIM_CheckForDesktopDowngrade
RIM: Found existing DesktopMgr.exe at: C:\Program Files\Research In Motion\BlackBerry\DesktopMgr.exe
RIM: Failed to retrieve version info from: C:\Program Files\Research In Motion\BlackBerry\DesktopMgr.exe
InstallShield 14:12:58: CallScriptFunctionFromMsiCA() ends
MSI (c) (4C!DC) [14:12:58:774]: Leaked MSIHANDLE (55) of type 790531 for thread 3804
MSI (c) (4C!DC) [14:12:58:774]: Leaked MSIHANDLE (54) of type 790531 for thread 3804
Action ended 14:12:58: RIM_CheckForDesktopDowngrade. Return value 3.
MSI (c) (4C:40) [14:12:58:789]: Doing action: SetupCompleteError
Action 14:12:58: SetupCompleteError.
Action start 14:12:58: SetupCompleteError.
Info 2898.For Tahoma8 textstyle, the system created a 'Tahoma' font, in 0 character set.
Info 2898.For TahomaBold10 textstyle, the system created a 'Tahoma' font, in 0 character set.
Action 14:12:58: SetupCompleteError. Dialog created
It seems to think that I have a previous version installed in my Program Files, but no such executable exists (as I mentioned earlier, I have followed the clean install procedures more than once
Any ideas?
Message Edited by tbarcelo on 05-19-2009 02:21 PM
Solved!
Go to Solution.

Hi and Welcome to the Forums!
You say you followed the instructions for a clean install -- but what about a clean un-install? Those instructions are here...
http://www.blackberry.com/btsc/microsites/search.d​o?cmd=displayKC&docType=kc&externalId=KB02206&slic​...
 Edit -- oh...and reboots...lots of them...one between each step...after an uninstall...after an install...etc.
Message Edited by sdgardne on 05-19-2009 11:09 AM
Occam's Razor nearly always applies when troubleshooting technology issues!
If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
Join our BBM Channels
BSCF General Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • I think I need help with driver (software) settings for D110a

    I think I need help with driver (software) settings for D110a all-in-one
    Product: D110a all-in-one
    OS: Windows XP Professional
    Error messages: None
    Changes before problem appeared: None--new installation
    The quality of photo images (mostly JPG files) in printouts is awful even though the files display beautifully on the PC screen. I am using
    IrfanView software for displaying/printing. As far as I can tell, IrfanView is not the problem.
    When I print the same images on a Deskjet 5150 attached to a different PC also running XP Pro and IrfanView, the quality of the printouts is at
    least acceptable, Some would probably say good or very good.
    It's dificult to explain in words the problem with the printouts. A picture of really pretty vegetables (squashes, tomatoes, watermelon, etc) comes
    out much too red. Moreover, the red, which appears shaded on the screen, seems to be all one shade in the D110a printouts.
    Something similar happens to a view of a huge tree in full leaf. On screen, there are subtle variations in the "greenness" of the leaves. In the
    printout, all green is the same shade. In the same printout, the trunk of the tree is all a single shade of grey. It isn;t even obvious that the
    trunk is a round, solid object.
    I liken the effect to audio that disappears entirely when you lower the volume and gets clipped into square waves in even moderately loud passages.
    I don't know whether the D110a driver software permits adjusting the parameters that appear to be set incorrectly, and if adjustments are possible,
    how I would identify which parameters to adjust, how I would access them, or how I would adjust them. I'm hoping that someone can help. Thanks.
    I forgot to mention that I have used the diagnostic application and it tells me that there are no problems.
    e-mail me at [email protected]

    brazzmonkey wrote:
    Hi everyone,
    I noticed the following message when network starts on my gateway
    Warning: This functionality is deprecated.
    Please refer to /etc/rc.conf on how to define a single wired
    connection, or use a utility such as netcfg.
    Then I realized the way network settings should be written in rc.conf has changed. But I can't figure out how this should be done.
    Currently, my set up is the following (old way):
    INTERFACES=(eth0 eth1)
    eth0="dhcp"
    eth1="eth1 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255"
    ROUTES=(!gateway)
    eth0 is on DHCP because the IP is dynamically assigned my ISP.
    eth1 has a fix IP because it's on the LAN side.
    No problem to use DHCP on eth0 with the new settings.
    But for eth1, I don't know what I am supposed to write for gateway.
    Wiki isn't clear on that one either, and it looks like many articles still refer to the old way.
    Any guidance appreciated, thanks.
    brazzmonkey,
    you can't define 2 interfaces the old way (even though I saw some tricky workaround somewhere in the forums).
    Use, f.e., netcfg:
    Comment your old lines.
    In /etc/rc.conf insert:
    NETWORKS=(Eth0-dhcp Eth1-static)
    DAEMONS=(..... !network @net-profiles ....)
    In /etc/network.d create 2 files:
    First one is named  Eth0-dhcp.
    Contents:
    CONNECTION="ethernet"
    DESCRIPTION="Whatever text"
    INTERFACE=eth0
    HOSTNAME="your hostname"
    IP="dhcp"
    DHCP_TIMEOUT=15
    Second one is named Eth1-static.
    Contents:
    CONNECTION='ethernet'
    DESCRIPTION='whatver'
    INTERFACE='eth1'
    HOSTNAME='hname'
    IP='static'
    ADDR='192.168.0.10'
    GATEWAY='192.168.0.1' # your gateway IP
    DNS=('192.168.0.1') # your DNS server
    The names Eth0-dhcp and Eth1-static are not magic. They just must be the same in rc.conf and in /etc/network.d.
    Hope it helps.
    mektub
    PS: netcfg must be installed.
    Last edited by Mektub (2011-07-20 14:07:05)

  • HT4061 need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    need help with my iphone 4 i try to update last five  days but after updating to 6.1.2  it says that
    We're sorry, we are unable to continue with your activation at this time. Please try again later, or c

    If the iPhone was hacked and unlocked via unofficial means, it has become locked again. Insert original SIM in the phone to activate with iTunes.

  • Ok so my i need help with my iphone 4s... i have about $5.00 of credits left of the itunes card i got and i decided to get a show and it says i need to verify my credit card, why doesnt it just use the credits i have? its under 5 bucks? help me please

    ok so my i need help with my iphone 4s... i have about $5.00 of credits left of the itunes card i got and i decided to get a show and it says i need to verify my credit card, why doesnt it just use the credits i have? its under 5 bucks? help me please

    You have to do it here for help
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • Need help with archive and install

    I'm doing and archive and install. The first try was with a defective retail version of OS X Tiger, which did part of the job then stalled. Now I've been able to get a good DVD of this and was able to do an archive and install,although I couldn't check the box to save user settings etc., On the screen it gives me 3 options transfer info from another mac, transfer info from another partition on this mac or do not transfer my info. I'm new to all this, because of the first failed archive and install do I transfer the info from another partition or not transfer at all and find the old folder later on in the process?

    Hi D,
    I couldn't check the box to save user settings etc.
    I think that is due to the partial previous install moving things to a Previous System folder, but not finshing.
    Let's see if that's what happened... if you have 2 Macs with Firewire this could be a lot easier.
    Oh, do you have a Backup?
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    After quitting DU, look for Terminal in that Menu Bar, open that and type in this...
    Wait, let's hear if you have another Mac or Boot Disk first...

  • SCCM Driver Injection : What am I missing? Need help with getting drivers installing correctly in my environment.

    Everyone,
    I'm not new to using SCCM, but i'm VERY new to setting up and managing it.  I have just laid it down for the school district that I manage, and i'm loving it.  Imaging is going great, all but one thing now...drivers installing.
    Let me tell you what I've been doing, so hopefully a kind soul out there can tell me where my logic of the driver "injection" process is lacking and might can fill in some gaps. 
    I downloaded all drivers pertaining to the 7-8 series of computers we have in our environment currently, and imported them based on a criteria such as this:
    x86.LenovoEdge71.Desktop
    x86.DellOpti755.Desktop
    so forth and so on
    I created packages based on the same exact naming scheme.  I update my distribution point at the end of the import, and all the drivers/packages/categories are in place.  When I go to Monitoring/Distribution Status/Content Status, all of my packages
    show up , but under targeted it says 0.
    My thoughts from reading online, is I upload all these drivers and during my task sequence where it says it's "applying device drivers" it's set to "install only the best matched compatible drivers" and "consider drivers from all
    categories".  I also checked "do unattended installation of unsigned drivers no versions of Windows where this is allowed".
    so correct me if my thinking is incorrect, it should search through all series of the computers we have in our environment and grab the best drivers from the overall database.  Is this not right?
    The reason I ask this, is we have a few hundred HP 6000 Pro desktops.  WHen I image them, it comes up with 2 unknown devices.  OF these, I can manually point them at the folder from which I uploaded the drivers for this series/category and it installs
    100% successfully...MANUALLY.  What's the reasoning behind this?
    I can't help but think there's something missing in my process / logic and I need to be set straight. 
    Can someone out there tell me what i'm doing wrong?  We're planning a district-wide re-imaging before summer's over, and the clock's ticking...but the drivers being installed are all that's keeping us from starting our migrations.
    Any help on this is GREATLY appreciated, thank you very much!

    You have setup everything correct, but for your desired result you need to use "Apply Driver Package" Task rather than "Auto Apply Drivers".
    Auto Apply drivers will install the best matched/compatible drivers for only the PNP devices.For more info on this:http://technet.microsoft.com/en-us/library/bb680990.aspx
    Whereas "Apply Driver Package" would install all drivers you have in the package and hence you don't see the unknown drivers in device manager. For more info on this: http://technet.microsoft.com/en-us/library/bb680403.aspx
    If you have multiple models, create this task for each model individually and then associate with a WMI query condition under Options tab to check the manufacturer/model
    Example: Select * from Win32_ComputerSystem where Manufacturer = "HP" and Model Like "6000%"
    Regards,
    Manohar Pusala

  • I need help with a software update problem??

    I recently got a new macbook pro and I was doing a software update last night as it was required but then when it started to do the update the computer installed the software and then a barring noise came from the mac and it tried to restart 4 times before it eventually came back on. The software trying to install was Fireware 800 I think. Can anyone help with this?

    Try MacBook notebook forum to talk to other users, or OS Software (Lion or Snow Leopard)
    Does not sound like an Apple OS update though.
    http://support.apple.com/downloads/
    https://discussions.apple.com/community/notebooks
    http://www.apple.com/support/macbookpro

  • Need help with "Nokia Software Updater"...Plz

    hi
    plz help me
    every time i try to install
    and it gave me this MSG
    " Error 2738.Could not access VBScript run time for custom action."
    my Lap work with W.vista
    and i have N95-8GB
    plz i need a help to update my phone

    Please do a search on this forum for "6280 software update" and you will have your answer.
    Many people have written here about Nokia software updater that tries to flash their 6280 phones with V6.10 (intended for the 6288) and then breaks their phones.
    I myself was busy downloading the firmware for a friends 6280 that was just minutes away from being flashed with 6.10 when I came across messages on many sites telling about the issue with the software updater and 6280 phones. I managed to save that 6280 from sure doom.
    If you also searched before hand you would not have this trouble.
    You need to take the phone to a nokia Service centre to have it flashed now and get it into a working state.

  • Oracle SQL Newbie need help with OE Demo Schema Installation

    Hello everybody !
    I'm hoping some kind soul can help out this SQL newbie.
    First of all i've installed 10g R2 database on a PC running XP SP2.
    Oracle is installed on the root C: drive
    I'm using the SQL Fundamentals I Exam Guide and DBA Handbook (Both Oracle Press)
    as my reference.
    My problem is this.
    I installed the DB and created the demo HR schema without too much problem
    but it's the demo OE schema i'm having problems getting running and cannot
    find anywhere on the net that outlines a step by step SQL process.
    I am using SQL Plus to execute these commands.
    My questions are these:
    -For the default tablespace i specify "users" ?
    -What do i specify for the temporary tablespace ? "temp" ?
    -what directory path do i put for the data files as parameter 6 ?
    I put down "C:\oracle\product\10.2.0\db_1\demo\schema\order_entry" but i suspect it's
    the wrong thing ?
    -What do i specify for the writable directory path for the log files ?
    Is it C:\oracle\product\10.2.0\RDBMS\log
    -And what is "Specify version as parameter 8:" line ?
    I assumed it was the db version but i believe it's wrong.
    Could somebody please help me ? I've already done my CCNA and i wanted to add oracle under my belt.
    I know if i had these few things cleared up for me it would pave the way to actually enjoying learning Oracle :)
    Thank you for any assistance :)

    I installed the DB products from the companion disk and there was no specific mention of the demo schemas. Regardless... They're all there within the demo subfolder and have already created the hr schema.. I just need somebody (I'll pay if necessary) to PLEASE just answer (what would be easy to you guys my questions so i can move on.
    this is a cap from my sql plus..
    SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jun 14 15:01:29 2010
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> alter user oe account unlock identified by oe;
    User altered.
    SQL>
    specify password for OE as parameter 1:
    Enter value for 1: mewfymewf
    specify default tablespeace for OE as parameter 2:
    Enter value for 2: users
    specify temporary tablespace for OE as parameter 3:
    Enter value for 3: temp
    specify password for HR as parameter 4:
    Enter value for 4: mewfymewf
    specify password for SYS as parameter 5:
    Enter value for 5: mewfymewf
    specify directory path for the data files as parameter 6:
    Enter value for 6: C:\oracle\product\10.2.0\db_1\demo\schema\order_entry
    writeable directory path for the log files as parameter 7:
    Enter value for 7: C:\oracle\product\10.2.0\db_1\RDBMS\log
    specify version as parameter 8:
    Enter value for 8: 10.2.0
    User dropped.
    old 1: CREATE USER oe IDENTIFIED BY &pass
    new 1: CREATE USER oe IDENTIFIED BY mewfymewf
    User created.
    old 1: ALTER USER oe DEFAULT TABLESPACE &tbs QUOTA UNLIMITED ON &tbs
    new 1: ALTER USER oe DEFAULT TABLESPACE users QUOTA UNLIMITED ON users
    User altered.
    old 1: ALTER USER oe TEMPORARY TABLESPACE &ttbs
    new 1: ALTER USER oe TEMPORARY TABLESPACE temp
    User altered.
    Grant succeeded.
    Connected.
    Session altered.
    Session altered.
    SP2-0310: unable to open file "C:\oracle\product\10.2.0\db_1/demo/schema/order_entry/coe_10.2.0"
    SP2-0310: unable to open file "C:\oracle\product\10.2.0\db_1/demo/schema/order_entry/loe_10.2.0"
    SP2-0310: unable to open file "C:\oracle\product\10.2.0\db_1/demo/schema/order_entry/poe_10.2.0"
    Session altered.
    ...creating subschema OC in OE
    Type created.
    Type body created.
    Table created.
    FROM inventories i, warehouses w
    ERROR at line 6:
    ORA-00942: table or view does not exist
    FROM product_information p
    ERROR at line 10:
    ORA-00942: table or view does not exist
    FROM customers c
    ERROR at line 20:
    ORA-00942: table or view does not exist
    FROM customers c
    ERROR at line 20:
    ORA-00942: table or view does not exist
    FROM customers c
    ERROR at line 20:
    ORA-00942: table or view does not exist
    FROM orders o
    ERROR at line 9:
    ORA-00942: table or view does not exist
    ON oc_orders FOR EACH ROW
    ERROR at line 2:
    ORA-00942: table or view does not exist
    TABLE order_item_list OF oc_orders FOR EACH ROW
    ERROR at line 2:
    ORA-00942: table or view does not exist
    Commit complete.
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 5:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 5:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 5:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 5:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    FROM oc_product_information o
    ERROR at line 4:
    ORA-00942: table or view does not exist
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    Type altered.
    3 rows updated.
    0 rows updated.
    0 rows updated.
    0 rows updated.
    Commit complete.
    Type body altered.
    Type body altered.
    Type body altered.
    PL/SQL procedure successfully completed.
    SQL>
    Like i can figure out that the "version in parameter 8" has something to do with the coe, poe & loe files
    but i don't know what.
    If somebody can please help me with my questions then i know i can move on.
    Thanks
    Edited by: user11216992 on Jun 14, 2010 3:37 PM

  • New User Needs Help with Linux OBIEE Install via Terminal

    Hi All - I'm installing Linux OBIEE. I'm on a Mac and thus can't use the GUI install option. I've unzipped the tar and now am stuck. Where do I need to be on my server (I know not root) and what command do I use to actually install OBIEE. I've tried setup.sh but it's not working properly and thus I am assuming I'm doing something incorrectly.
    Many thanks for your help.

    I can use my mac for installs but prefer to use a VNC Server session on the Linux box and a VNC Client on the mac to do remote installs as it survives network bumps.
    If you want to use your mac as an XServer to do the install you have to have X11 installed (have a look at http://developer.apple.com/Darwin/runningX11.html)
    Edited by: mcharchu on Aug 11, 2009 5:37 PM

  • Need Help with boot camp install, keep getting message can not install need

    Hi Folks,
    I keep getting a message that the boot camp assistant can not install needs firmware update. All updates are currently installed. I have tried all available updates and hey ell me the computer doesn't need them????
    Any help that you may provide is greatly appreciated.
    Jack
    P.S. The computer is an Imac early 2006 1.83 gb.
    Machine Name: iMac
    Machine Model: iMac4,1
    CPU Type: Intel Core Duo
    Number Of Cores: 2
    CPU Speed: 1.83 GHz
    L2 Cache (shared): 2 MB
    Memory: 1 GB
    Bus Speed: 667 MHz
    Boot ROM Version: IM41.0039.B00
    Serial Number: W86220MSU2N
    SMC Version: 1.1f5

    You do not have the firmware update installed. You only have the SMC firmware update. Boot Camp requires this firmware update.

  • Need help with flash player install

    I am having trouble installing Adobe Flash Player on my hp notebook. It keeps saying it can't initialize once it hits 50%. Any ideas?

    What is your operating system?  If Windows, download the offline installer from http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_header
    [topic moved to Flash Player forum]

  • Need help with SB X-FI installation

    I just got my SB x-fi I cant figure out how to install it. I have a MSI K8N Neo4 motherboard. It uses the nforce4 chipset and I have gig of cruical ram, and a AMD athlon 64 3.0 cpu. I have a WD raptor 40g, and a seagate 300g. The only other thing i have in the computer is a dvd rom dri've. anyway the problem:
    With the card installed I get a error message on boot up:
    warning: Have option ram cannot be invoke (vendor ID: 000....
    The warning goes on but thats the jist of it.
    The mobo has onboard audio but I have disabled the only thing I could find in the bios relating to audio. (all that i could find at least) I have tried the card in the 2 and 3 pci slots but same thing happens. I havent tried the st pci slot becuase the PCIE slot with the video card blocks the st pci slot.
    I have also deleted and disabled all the onboard audio stuff in windows, but nothing changed.
    Any help would be appreciated.
    thnx

    In the Knowledge Base, it says you can have problems with nForce4 motherboards, and suggests that updating the BIOS will solve the problem. Howver, I've got a Gigabyte nForce4 board, updated to the latest BIOS, and no go. Looks to me that the X-Fi and the nForce4 don't play well together.

  • Need help with an analytic function I think

    I have a table as such:
    BID, POSITIONDATE
    1 3/10/2009
    1 3/11/2009
    1 3/12/2009
    1 3/13/2009
    1 3/13/2009
    1 3/13/2009
    1 3/14/2009
    I need to select a count(*) from this table for EACH day in MARCH, but the table is missing the days of 3/1 - 3/9
    I need my result set to be:
    BID, POSITIONDATE, COUNT(*)
    1 3/1/2009 0
    1 3/2/2009 0
    1 3/3/2009 0
    1 3/10/2009 1
    1 3/11/2009 1
    1 3/12/2009 1
    1 3/13/2009 3
    1 3/14/2009 1
    I thought LAG would do it but I cannot figure out how to get it to "make up the dates of 3/1-3/9 since those dates aren't actually in the table)
    I also tried creating a "FAKE" table (T1) with the dates of 3/1 -> 3/31 and outer joining to it, but that didn't seem to work either.
    Any tips/suggestions??
    Chris

    with t1
    as
    select to_date('03/01/2009','MM/DD/YYYY')-1 + level as Date1
    from dual
    where (to_date('03/01/2009','MM/DD/YYYY')-1+level) <= last_day(to_date('03/01/2009','MM/DD/YYYY'))
    connect by level<=31
    select * from t1
    DATE1
    3/1/2009     
    3/2/2009     
    3/3/2009     
    3/4/2009     
    3/5/2009     
    3/6/2009     
    3/7/2009     
    3/8/2009     
    3/9/2009     
    3/10/2009     
    3/11/2009     
    3/12/2009     
    3/13/2009     
    3/14/2009     
    3/15/2009     
    3/16/2009     
    3/17/2009     
    3/18/2009     
    3/19/2009     
    3/20/2009     
    3/21/2009     
    3/22/2009     
    3/23/2009     
    3/24/2009     
    3/25/2009     
    3/26/2009     
    3/27/2009     
    3/28/2009     
    3/29/2009     
    3/30/2009     
    3/31/2009     
    31 Rows Selected
    with t1
    as
    select to_date('02/01/2009','MM/DD/YYYY')-1 + level as Date1
    from dual
    where (to_date('02/01/2009','MM/DD/YYYY')-1+level) <= last_day(to_date('02/01/2009','MM/DD/YYYY'))
    connect by level<=31
    select * from t1
    DATE1
    2/1/2009     
    2/2/2009     
    2/3/2009     
    2/4/2009     
    2/5/2009     
    2/6/2009     
    2/7/2009     
    2/8/2009     
    2/9/2009     
    2/10/2009     
    2/11/2009     
    2/12/2009     
    2/13/2009     
    2/14/2009     
    2/15/2009     
    2/16/2009     
    2/17/2009     
    2/18/2009     
    2/19/2009     
    2/20/2009     
    2/21/2009     
    2/22/2009     
    2/23/2009     
    2/24/2009     
    2/25/2009     
    2/26/2009     
    2/27/2009     
    2/28/2009     
    28 Rows Selected
    I probably should change the variable to MM/YYYY and leave out day I guess, because if they put a day larger than 1, then I would end up with less than a full month.

  • Need help with some JS installing Bumpbox 2.0

    I am trying to add a lightbox effect to a pdf on my website, I found a Javascript plugin at http://www.artviper.net/bumpbox-demo/index.html that looks like it should do the trick, but I am having trouble getting it to work.
    To narrow down the problem I created a test.html file that I stuck in the root directory of the folder I downloaded from their site (so I am working locally off my desktop at this point)
    My code is as follows... I feel like I am missing something super obvious, does anyone see it? (do I need to define the .bump class in the css file?)
    Thank you in advance for the much needed help!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>
    <body>
          <a href="http://www.artviper.net/test.pdf" class="bump" rel="800-350">PDF File &raquo;</a><br />
    <script type="text/javascript" src="js/mootools.js"></script>
    <script type="text/javascript" src="js/bumpbox-2.0.1.js"></script>
    <script type="text/javascript"> doBump( '.bump',750, 500, '111', '900', '0.8', 5, 1 ,'333', 15,'000', 4,
                     Fx.Transitions.Bounce.EaseOut,
                     Fx.Transitions.Bounce.EaseOut,
                     'images/demo_bg_bumpbox.png',
                     'top left',
                     'repeat-x' ); </script>
    </body>
    </html>

    These paths won't work because they point to files on your local hard drive.
    <script type="text/javascript" src="file:///Macintosh HD/Users/Robert/Downloads/bumpbox Folder copy/js/mootools.js"></script>
    <script type="text/javascript" src="file:///Macintosh HD/Users/Robert/Downloads/bumpbox Folder copy/js/bumpbox-2.0.1.js"></script>
    Are you working within a properly defined local site?
    Did you save those javascript files to the js folder in your local site root?
    Correct path to scripts for this test page should look like this:
    <script type="text/javascript" src="../js/mootools.js"></script>
    <script type="text/javascript" src="../js/bumpbox-2.0.1.js"></script>
    PS.  Do not add spaces to folder or file names.  It can create problems for web files.
    Nancy O.

Maybe you are looking for

  • ERROR MESSAGE -`SKYPE CANT CONNECT`` - GET HELP H...

    URGENT HELP PLEASE!  I CANNOT ACCESS SKYPE Since yesterday 22 April 2014 - I am getting the same error message. the skype help connection wizard gives 2 options: 1. contact network administration;  2. restart skype wait 2 minutes for it to reconnect

  • External FireWire Casing: Parallel and Serial ATA, what's the diff??

    Hello all. I plan to get 2x FireWire External Casing and 2x 250Gb ATA Hard Drives seperately. I've done this before but I bought the 2 from the same store which no longer exsist. This new FW Casing is similar to what OWC is offering: http://www.memor

  • TTG Gallery Index - Web module template

    Hello, I'm today releasing my latest project, TTG Gallery Index for Adobe Lightroom. TTG Gallery Index allows you to generate a gallery index from the Lightroom Web module. Be sure to read through the documentation for usage instructions. This is a 0

  • Difference between ClassNotFoundException and NoClassDefFoundError?

    What is the difference between ClassNotFoundException and NoClassDefFoundError? When does each of them get throwns? To me they look very similar.

  • Illustrator to Epson 4800 printing

    I am trying to print a 64 inch long by 13 inch wide banner on my epson 4800 with illustrator. for some reason the printer only prints 46 inches of the 64 inch image. this does not happen with photoshop. is anyone else having this issue? is so, how do