Driver Setup problem!k8n user plz help.....

when i wanna setup the SATA/RAID driver on the beginning of the windows setup, i can only run the 'nVidia RIAD class driver',  if i setup the 'nVidia nForce Storage Controller' as well, my windows setup will occurs error and cannnot setup windows anymore unless i no install the 'nVidia nForce Storage Controller' at the next of windows setup. What happening actually??? i no have SATA hard disk, is that the problem occurs???
beside that, if i trying to upgrade my motherboard version to latest version that download from nVidia website, my windows will occurs error/blue screen and cannot boot windows anymore and restart everytime when computer wanna try to boot the windows. What is the problem?? is that also cause from 'nVidia nForce Storage Controller' too?? last time i using another nForce board and can setup new driver and everything working fine. but this board make me so sick to update the driver.
ya...BTW why the MSI utility software (WMI info) showing my AMD Athlon 64 proc data width only 32bit??? is that proc problem or the software problem??
thank everyone who helping me to solve those problem

Hi Davidsk2001
1) Quote
beside that, if i trying to upgrade my motherboard version to latest version that download from nVidia website, my windows will occurs error/blue screen and cannot boot windows anymore and restart everytime when computer wanna try to boot the windows. What is the problem?? is that also cause from 'nVidia nForce Storage Controller' too?? last time i using another nForce board and can setup new driver and everything working fine. but this board make me so sick to update the driver
I've had this, the Driver asks if you want to update Pata drivers, if you say Yes it goes to blue screen on restart.
Use the Windows XP Pata Drivers NOT NVidia - there is no difference in performance
2) Quote
when i wanna setup the SATA/RAID driver on the beginning of the windows setup, i can only run the 'nVidia RIAD class driver', if i setup the 'nVidia nForce Storage Controller' as well, my windows setup will occurs error and cannnot setup windows anymore unless i no install the 'nVidia nForce Storage Controller' at the next of windows setup. What happening actually??? i no have SATA hard disk, is that the problem occurs???
Are you using the Floppy Disc that came with your motherboard. This is faulty
Raid / Win XP install problems
you only have a IDE Drive
you dont need floppy when you install windows
Disk is for Raid and 'nVidia nForce Storage Controller' =Sata
Windows will install the XP  IDE drivers ok
3)Quote
ya...BTW why the MSI utility software (WMI info) showing my AMD Athlon 64 proc data width only 32bit??? is that proc problem or the software problem??
do you mean the
Accessories / System Tools / System Information / I cant find anything
hope this helps

Similar Messages

  • Shopping Cart Problem...plz help

    Hello Gurus,
    I have a Cart created by my user,
    the problem is the Cart is not moving to the backend to create
    the follow on document,i.e the PR,
    Checked the BBP_PD,it shows I111 as the status,
    i am unable to get where the exact problem is,
    The Approval is completed,
    can any 1 advise why this is stuck.
    where can i see the problem?
    (checked RZ20)no clues..:-(
    tried to Update by bbp_get_status_2...:-( no use...
    plz help..
    Points gaurenteed.
    Thanks

    Hi Arshad,
    You have to apply OSS notes to resolve this issue.Please find the relavent OSS notes :
    <b>Note 729967 - Shoppng cart:Status I1111,no follow-on docs->analysis report</b>
    <b>Note 949162 - Follow-on documents exist, status I1111 and I1113 active</b>
    <b>Note 854478 - Alert monitor: No longer possible to transfer shopping cart</b>
    <b>Note 728536 - Shopping cart: Follow-on docs => analysis-/correction report</b>
    <b>Note 900142 - BBP_PD_SC_RESUBMIT: All items set to status I1111</b>
    Hope the above notes will resolve your issue.
    Let me know once it gets resolved or in case of any further clarifications.
    Award points for suitable answers.
    Rgds,
    Teja

  • Big problem!!~plz Help me

    i'm a newbie in creating javamail.now i hava the big problem in my coding can someone look 4 me the problem. this is my Coding::
    package common;
    import java.util.*;
    import javax.mail.internet.*;
    import javax.mail.*;
    public class sendMail{
         public static void send(String host,String from, String to){
         // Get system properties
         Properties props = System.getProperties();
         // Setup mail server
         props.put("mail.smtp.host", host);
         // Get session
         Session session = Session.getDefaultInstance(props, null);
         // Define message
         MimeMessage message = new MimeMessage(session);
    try
    message.setFrom(new InternetAddress(from));
    catch (internet.AddressException e)
    System.err.println("Caught Exception: "
    + e.getMessage());
         message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
         message.setSubject("Hello JavaMail");
         message.setText("Welcome to JavaMail");
         // Send message
         Transport.send(message);
    this is my error::
    sendMail.java:27: package internet does not exist
    catch (internet.AddressException e)
    ^
    1 error
    plz help me thanks a lot

    In this line catch (internet.AddressException e)
    you have a non-existent package "internet".
    The correct package for that error is[b] javax.mail.internet; since you have imported this package, you can just delete the invalid information, like this:
    catch (AddressException e)

  • Driver adding...| plz help

    i wrote a little servlet that works with db2 database , compiled it , deployed it but when i call it from the browser window it says that oit can t reach db2 driver ... may be i should add it somehow somewhere.... PLZ HELP
    ***********************************************************MY SOURSE CODE
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    import javax.servlet.http.*;
    import javax.servlet.*;
    public class db2serv extends HttpServlet {
    public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
    res.setContentType("text/html;charset=Windows-1251");
    PrintWriter pw = res.getWriter();
    String title ="servlet/db2 example titll ?";
    pw.println("<HTML><HEAD><TITLE>"+title+"</TITLE> </HEAD>");
    pw.println("<BODY>");
    pw.println("<H1>"+title +"</H1>");
    try {
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
    Connection con = DriverManager.getConnection("jdbc:db2:irabase","login","passwd");
    Statement st = con.createStatement();
    ResultSet rs = st.executeQuery("select * from cname");
    /* output */
    pw.println("<TABLE>");
    while (rs.next()) {
    pw.print("<TR>");
    pw.println("<TD>"+rs.getString(3)+"</T D>");
    pw.println("</TR>");
    pw.println("</TABLE>");
    pw.println("<h2>The en</h2>");
    rs.close();
    st.close();
    } catch (Exception e) {
    throw (new ServletException(e));
    pw.println("</BODY>");
    pw.println("</HTML>");
    pw.close();

    error messege says:
    javax.servlet.ServletException: No suitable driver
         at db2serv.doGet(db2serv.java:40)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.access$0(ApplicationFilterChain.java:197)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:172)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:368)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1012)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107)
         at java.lang.Thread.run(Thread.java:484)
    root cause
    java.sql.SQLException: No suitable driver
         at java.sql.DriverManager.getConnection(DriverManager.java:537)
         at java.sql.DriverManager.getConnection(DriverManager.java:177)
         at db2serv.doGet(db2serv.java:21)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.access$0(ApplicationFilterChain.java:197)
         at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:172)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.CertificatesValve.invoke(CertificatesValve.java:246)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2343)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:368)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
         at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1012)
         at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1107)
         at java.lang.Thread.run(Thread.java:484)

  • Dvd drive problems...plz help

    ok so ive got a mac mini and i reformatted the main hardrive but first i backed all my files up.....then once i had installed tiger it wouldnt boot up it just stayed on the bott screen...so i reformatted it again...now it boots but the dvd drive is so **** slow......it says its gonna take 27 hours to copy 2.7gb from my dvd+rw..anyonce know what's wrong with it..before it was alot faster and now it just slows right down...also while im copying it the cpu and memory are maxed out...any help is excellent and highly apreciated....thx

    "What kind of Mini is it (Intel or PowerPC) ?"
    "Apart from Tiger, what did you install on it ?"
    its a power pc.......ummm apart from tiger i put norton anti virus, pocket tanks, microsoft office 2004 for mac, limewire pro, norton personal firewall, a few dvd's...took about 40 min to copy to harddrive each......over 7 gp.....no this wasnt illegal so dont tell me it was.....all my music..i know none of these things have viruses on them because i scan them with about 3 different virus scanners before i use them/unarchive them...all of the macromedia programs basicly....fireworks,dreamweavor,flash pro.....adobe photoshop....no i did not illegally pirate this stuff....im a student and im taking a **** of all lot of computer crap....i just dont know what the ****'s wrong with my dvd drive... and i really need it fixed as im a student and have school ever day of the week.....

  • Live! SB022x (or any OEM model) owners with driver installation problems ... [Help 'maybe' he

    Hi
    Problems to get 'drivers'/'driver updates' installed for your Li've! or other SB models on XP or W2k system?
    If ctzapxx.exe method didn't work either for you, have you tried 'forced' driver installation yet? If not here is what you can do.
    NOTE: THIS METHOD DOES NOT WORK W/ ALL DRIVER PACKAGES, BECAUSE OF THE USED INSTALLER IS NOT THE SAME (ctcomp.dat is not available on those)
    . download [url="http://members.aol.com/dvdking200/Pub/ctcomp.exe">this utility[/url]
    2. download driver package (or installation ISO/rip) you want to install and extract it to your HD (you can also install Audigy X drivers for your Li've! card if you like)
    3. run ctcomp.exe and point it to look from
    - ..\Audio\Setup -folder, found as a subfolder in folder you extracted the ISO/rip
    - 'main folder' (for. ex. AUD_EAX4DRV_0303) when you're installing driver update (data.cab must exist on that folder)
    4. press Patch button
    5. install your drivers by running setup.exe located
    - at same ..\Audio\Setup -folder when setting up from extracted ISO
    - at 'main' folder when you're installing driver update
    .jtp
    ADDON: ---------------------------------------------------------------------------------
    I tested what ctcomp.exe makes to this installation package and here are the results.
    INSTALLATION PACKAGE patched: Li'veDrvUni-Pack(ENG)
    SUPPORTED CARDS by installer
    BEFORE CTCOMP
    ;SBLi've!
    ;For CT4670, CT4620, M002/M003, CT4780, CT40, CT4830, CT4832, CT4870, CT4872, CT483, CT487, CT4760, CT4850
    [Hardware.Map3]
    ID = 00000020, 0000002, 0000002F, 0080022, 0080025, 0080026, 0080027, 0080028, 0080029, 008003, 0080032, 0080040, 0080050
    ProductName = Sound Blaster Li've!
    ;SBLi've! 5.
    ;For SB0060, SB000, SB002, SB00, SB003, SB005, SB022, SB0222
    [Hardware.Map5]
    ID = 008006, 0080062, 0080064, 0080069, 008006A, 008006B, 008006C, 0080065
    ProductName = Sound Blaster Li've!
    AFTER CTCOMP listed only Li've! and older series cards
    ;SBLi've! 5. : For SB0060, SB000, SB002, SB00, SB003, SB005, SB022, SB0222, SB0228, SB0226, SB0223, SB0229
    [Hardware.Map4]
    ID = 008006, 0080062, 0080064, 0080069, 008006A, 008006B, 008006C, 0080065, 0080066, 0080067, 00000, 000000A
    ProductName = Sound Blaster Li've!
    ;SBLi've! : For CT4670, CT4620, M002/M003, CT4780, CT40, CT4830, CT4832, CT4870, CT4872, CT483, CT487, CT4760, CT4850
    [Hardware.Map4]
    ID = 00000020, 0000002, 0000002F, 0080022, 0080025, 0080026, 0080027, 0080028, 0080029, 008003, 0080032, 0080040, 0080050
    ProductName = Sound Blaster Li've!
    ;For SBPCI 52 : CT4790, CT4820, SB050
    [Hardware.Map4]
    ID = 0080023, 0080050, 008007
    ProductName = Sound Blaster PCI52
    ;For SBPCI 256 : CT4890, CT489, CT4893
    [Hardware.Map4]
    ID = 008002A, 008002B, 0080033
    ProductName = Sound Blaster PCI256
    = No SB0220 support available? SO, IS THERE exactly a model numbered as SB0220 AT ALL?
    I think there is not.
    .jtpMessage Edited by jutapa on 07-04-2006 08:6 AM

    The reason i said this should be a sticky is that these boards move so fast that its impossiable for new comers to keep up with threads that have AWESOME tips that may or may not help but how many of us have accually gone through every post in the last 60 days to try and find a fix? I know I have not, but in the end you need to try everything you can.
    Something like this is not on the Creative FAQ data base so the only people to know about this possiable fix are the few who catch it in time.
    In my experience there is ALWAYS more than way to do things and 0 ways to get it to work with 20 other methods to run it. Thats a lot of ways to do the one thing. So unless we have a huge data base with every possiable fix,method or forceiable way to do something then more and more people will get really upset that Creative offer no help.
    Take the way Creative say to un-install drivers, man, this for the most part never works, so something like this may be the only way to get it to work for some people.
    What I do is though, I copy a thread like this one and will pass it on to others if need be. Ofcause with all credit to the original poster and I never pass it off as my fix and/work.
    I I like to cover every possiable aspect to do something. Ya know what i mean

  • JRE Detected---Version Collision problem!!--plz help..it's urgent

    Hello ,
    I am working on developing a upload component in applets that would be used to
    Let the user browse thru his/her local file system, select it and then upload that file
    to a Specific location on the server, during this file transfer operation it also
    Shows the bytes remaining and a progress bar with percentage.
    I have developed it already and my purpose is to make it available as a cross-
    Platform independent component that can simply be merged/used with just about
    any application developed in any language/or on any platform and so I developed
    it in java using applets, bcauz it has to run and be accessible via a browser.
    Now, the component is working fine but there�s a problem to which I have not
    Found a complete and stable solution.
    The problem is with the JRE(Java Runtime Environment), that if the html page that
    Contains my applet does find a JRE already installed on someone�s browser but
    With a different version to that of which I have used for example(1.4.2_07-b05) it
    Gives an error saying �jre detected-version collision� and I understand fully by
    Looking up on net as to what this error means, but how do I remove this problem
    i.e. I simply want that (since I am already using the OBJECT tag in my html file)
    when my html page containing loads up in any one�s browser then even if that
    browser doesn�t contains a JRE in it, it should(my applet)should run, as I guess
    my browser only had a default MSJVM earlier and had no JRE for instance, still
    any site that I opened on net which contained applets , never gave me any such
    kind of error.?
    One temporary solution that I did, (although it�s not what I would like to do as it is
    not user friendly at all) is that in my OBJECT tag I had used a codebase attribute
    which contains the path of my jre�s exe file like this:
    I am giving here the complete code for my html file:
    <html>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" name="Helper" width="900" height="200"
    codebase="http://10.11.13.63:8090/j2re-1_4_2_07-windows-i586-p.exe">
    <PARAM name="java_code" value="FileChooserDemo.class">
    <PARAM name="java_archive" value="filechooser.jar">
    <PARAM name="type" value="application/x-java-applet;version=1.4">
    <PARAM name="progressbar" value="true">
    <PARAM name="boxmessage" value="Please...wait..while..the..applet..starts..up">
    <COMMENT>
    <NOEMBED>
    </NOEMBED>
    </COMMENT>
    </OBJECT>
    </html>
    further I also have to take care that if the above problem occurs i.e.(�JRE detected-version collsion�) then I got to tell the user to first go into his/her control panel and then
    remove the JRE�s exe file from add/remove programs and then come back to his/her browser to get the JRE�s exe file downloaded automatically from the location of intranet
    (my web server path) and run itself and install it on his/her browser bcauz of the tag that
    I used above.
    But all this is not at all a user friendly solution and I would not want any user to go thru the hassle of all this.
    Can there be any way to let my applet run on any browser without the JRE problem ,
    Plz suggest as I have now fully developed my applet upload component after a month�s
    hard work , but is not able to now finally integrate it with our email server application that we have in our office, just bcauz of this problem..
    Thanks in anticipation
    Regards
    Sd76

    I don't know what version collition means but what jdk version you used to compile your
    applet?
    clsid:8AD9C840-044E-11D1-B3E9-00805F499D93 is dynamic versioning classid and
    allowes IE to run your applet with any installed jre without trying to install a newer one.
    Problem here is when you compiled with 1.5 and try to run it with an older version there
    might be some problems.
    Try to compile it with -source and -target option so your applet is compatible with 1.3
    http://java.sun.com/products/plugin/versions.html
    Another thing is that your platform independent file uploader will only run in active x
    enabled browsers like Microsoft Internet Explorer and not with mozilla(see link above) .

  • Hard drive sometimes not recognized! Plz help!

    Hello,
    For the past 3 weeks I've been having problems with my iMac during start-up, and I'm completely out of ideas to solve them...
    Here are the symptoms:
    -Very long grey screen at start-up, culminating in the "?" folder after 10 or so minutes.
    -When I force the system to start with the CD, 50% of the time Disc Utilty doesn't even see the HD!!!
    -When it does see it, I can select it in the Start-up Disk utility and my system then boots up normally.
    -When it doesn't see it, I have to restart (using the CD) until it does.
    But, in the end, once it starts using the HD, everything works perfectly (until the next restart).
    Can someone please help me figure this thing out?
    I tried everything I could think of:
    -Running Disc Utility from CD: nothing wrong, permissions OK.
    -Running the CD in diagnostic mode: nothing wrong.
    Thanks a lot you guys!
    Loa

    If you haven't tried booting in Safe Mode, you could try that.
    How to boot in Safe Mode
    What is Safe Mode
    *"When I forrce the system to start with the CD, 50% of the time Disc Utilty doesn't even see the HD!!"*
    You could try reformatting the drive by doing a completely erase and install with your restore disk but there's not guarantee that will work.
    If you have another Mac, you could use Firewire Target Disk Mode and try to access your files.
    Carolyn

  • JSPDynpage problem...plz help

    Hi All,
    I hv a Strange problem facing with Portal Component Project. I hv created Portal Component Project with two JSPDynpages :
    JSPDynpage1 - hving one Hyperlink Text
    JSPDynpage2 - Plain text and Images
    Whenever User clicks on Hyperlink in JSPDynpage1 will navigate to other JSPDynpage which show only plain text and images.
    I hv used following h ref to navigate from one to other
    href="http://someserver:50000/irj/servlet/prt/portal/prtroot/PDK
    Project.JSPDynpage"
    I hv created an IView based on JSPDynpage1. Everything works fine. IView is
    showing the Hyperlink and taking it to the next page. Finally I assigned this IView to page.....when the User clicks on Hyperlink it is prompting me give User Id and pwd.
    Also, Hyperlink shows underlined eventhough when I don't point mouse at hyperlink. I want to get rid of this one.
    Can anybody help me in this regards.... where I am going wrong. Any suggestion woudl be greatly appreciated and helpfull. Looking forward to your responses.
    Thanks in advance,
    Ravi Kumar.

    Hi Ravi,
    please check the permission property for the target iView: Right Click open -> Permissions. If you see the permission is only given for super admin or something like that then add the Everyone gorup to it and check on the End User checkbox. Save the permission set and then test to see what happens.
    Regarding the line coming below hyperlink - I think you need to change the design of the link a bit in order to get the hovering effect.
    Regards,
    Shubho

  • N73 Memory card problem !! plz help me

    Hi ive bought Nokia n73 not me edition ive encountered a
    serious problem ive also bought 1gb card & whenever i
    insert the card in Card reader it shows disk like
    Removable disk (F) etc. But when i try 2 open it it shows
    this message "Please insert the disk into drive F:" ive
    tried 2 open more than 10 times it never opened it shows
    same messge .Ive even formatted the card but still the
    problem persists.When i insert the card in to my phone it
    shows the files it works fine .The actual problem is i
    can't view or edit the files or add the files like
    ringtones ,music videos or themes in card reader it never
    displays the content inside in the memory card .Now im
    presently transfer my files through bluetooth & not from
    card reader.Im totally frustrated with this problem Plz
    2 solve this serious problem .Message Edited by ishah on 24-Mar-200706:06 AM

    Dont get frustrated ! Be happy !
    Now...the problem is causing becaz thr is somthing wrong with ur Card Reader.Try another card 4 ensuring...or check if u inserted ur card properly!
    Next...That Mcard may not be original...U should check that 1st.
    After...U can Downlaod latest version of PC Suite frm here http://www.nokia.com ...Try it 4 yourself...Once u r done..Connect ur USB cable...and Whoa ! Thr is an icon right on ur "My computer" portion.
    Your problem may be solved!Message Edited by coool on 25-Mar-200708:53 AM
    CoOL

  • Hp D330.audio driver installed but no voice.plz help.

    hi
    i hav hp d330, X86 based PC with O.S wp pro.sp2.
     i installed bios update , networkind [lan card] drivers and they worked fine.
    I also download n installed Soundmax drivers one by one from
     http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&cc=us&prodNameId=342068&p...
    but even after installed correctly [also showing "soundMAX integrated digital audio" in device manager] no voice heard by headphones[i dont hav speakers].
    head ph is correct n working fine on tv. i hav checked all basic stuff "mute " etc. but still no vice.
    plz give some advice.
    Thanks a lot.

    First right-click on sound icon in systray(lower right in area where the clock is) then open mixer and check to see that the mute all box does not have a check mark in it, If it does select it to remove the check mark and adjust the volume. Try something that produces sound.
    Second(if mute was not checked) Go to Conrol Panel --> Sound --> next to the audio icon there should (in parentheses) be the name of your onboard sound chipset device. in volume, mute should not be checked. Go to Audio tab (select at top) and in standard sound device your chipset audio device should be selected as the standard output devive and not greyed out. You should see the same in recording device. In Speech tab you should also see your chipset device selected for both.
    Please post what you found and your results.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Problems with User Privileges - Help required Novice Server Experience

    Hi, We have an old Xserve runing Mac OS X 10.2.8.
    I have shared the 3 drives out no problem. The problem I have is with Workgroup Manager 1.2.2. I have set 4 User accounts with their own username and password to access the drives which works fine, but if one User modifies a file or puts a new file on to the Server another user has only read access to that file from the server, and if they try to copy the file/folder to their local machine a warning box comes up saying that they have Insufficent Privileges.
    It seems each User can only work on their individual files which is problem when we all need access to the same files/folders.
    What do I need to do?
    Many Thanks
    Richard

    Hi Richard.
    You need to create a Group, and add all of your Users to that Group.
    Make the owner of the sharepoint your admin account (who can be added to the Group, or not), and make the Group , well, the new Group you've created.
    Set permissions for the Group to Read & Write.
    In Workgroup Manager, Sharing, Share Points
    select AFP and then choose “Inherit permissions from parent"
    This is all in the 10.2 Server Admin, worth reading. The 10.4 docs are far better and it's a worthwhile upgrade if that's in the cards at all.

  • Data base problem-new user need help

    im new user and trying to insert data base to my page using
    "asp.net c",i get connetction to my data base but when i try to
    build a form ,and then preview him i get ,the following message
    Server Error in '/' Application.
    Parser Error
    Description: An error occurred during the parsing of a
    resource required to service this request. Please review the
    following specific parse error details and modify your source file
    appropriately.
    Parser Error Message: File or assembly name DreamweaverCtrls,
    or one of its dependencies, was not found.
    Source Error:
    Line 1: <%@ Page Language="C#" ContentType="text/html"
    ResponseEncoding="iso-8859-1" %>
    Line 2: <%@ Register TagPrefix="MM"
    Namespace="DreamweaverCtrls"
    Assembly="DreamweaverCtrls,version=1.0.0.0,publicKeyToken=836f606ede05d46a,culture=neutra l"
    %>
    Line 3: <MM
    ataSet
    Line 4: id="DataSet1"
    Source File: e:\inetpub\wwwroot\Untitled-1.aspx Line: 2
    Assembly Load Trace: The following information can be helpful
    to determine why the assembly 'DreamweaverCtrls' could not be
    loaded.
    === Pre-bind state information ===
    LOG: DisplayName = DreamweaverCtrls, Version=1.0.0.0,
    Culture=neutral, PublicKeyToken=836f606ede05d46a
    (Fully-specified)
    LOG: Appbase = file:///e:/inetpub/wwwroot
    LOG: Initial PrivatePath = bin
    Calling assembly : (Unknown).
    ===
    LOG: Publisher policy file is not found.
    LOG: No redirect found in host configuration file
    (E:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\aspnet.config).
    LOG: Using machine configuration file from
    E:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\config\machine.config.
    LOG: Post-policy reference: DreamweaverCtrls,
    Version=1.0.0.0, Culture=neutral, PublicKeyToken=836f606ede05d46a
    LOG: Attempting download of new URL
    file:///E:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary
    ASP.NET Files/root/804ee9b4/26f0df32/DreamweaverCtrls.DLL.
    LOG: Attempting download of new URL
    file:///E:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary
    ASP.NET
    Files/root/804ee9b4/26f0df32/DreamweaverCtrls/DreamweaverCtrls.DLL.
    LOG: Attempting download of new URL
    file:///e:/inetpub/wwwroot/bin/DreamweaverCtrls.DLL.
    LOG: Attempting download of new URL
    file:///e:/inetpub/wwwroot/bin/DreamweaverCtrls/DreamweaverCtrls.DLL.
    LOG: Attempting download of new URL
    file:///E:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary
    ASP.NET Files/root/804ee9b4/26f0df32/DreamweaverCtrls.EXE.
    LOG: Attempting download of new URL
    file:///E:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary
    ASP.NET
    Files/root/804ee9b4/26f0df32/DreamweaverCtrls/DreamweaverCtrls.EXE.
    LOG: Attempting download of new URL
    file:///e:/inetpub/wwwroot/bin/DreamweaverCtrls.EXE.
    LOG: Attempting download of new URL
    file:///e:/inetpub/wwwroot/bin/DreamweaverCtrls/DreamweaverCtrls.EXE.
    Version Information: Microsoft .NET Framework
    Version:1.1.4322.573; ASP.NET Version:1.1.4322.573
    I know its probably something stupid ,so u can lauph,but i
    realy cant fix it.
    need help
    tnx for advance

    anyone? please help

  • DSN not found error and no default driver specified....plz help me

    am doing my project in jsp. using tomcat.
    am connecting the database using access.
    it cause the error like " DSN not found error"
    am verified so many times the data source name as well as data base connection.
    but not to be clear the error.
    am also tried it in weblogic, it worked perfectly.
    then am reinstall the tomcat and used other platform but not worth.
    plzzzzzzzzzz some one help me to clear the error.
    thanx in advance.
    with regards,
    senthil

    Yes, it has a DSN. It is:
    DSN Test Homer
    User Name ******
    Server homer.cs.odu.edu
    The connection string is:
    Provider=MSDASQL.1;Password=*******;Persist Security Info=True;User ID=******;Extended Properties="DSN=Test Homer;UID=******;PWD=******;SERVER=homer.cs.odu.edu;"
    with the appropriate user name and password filled in.

  • Drive configuration problem K8N NEO4 F1

    First, a little history. Prior to setting up this computer I had an 845PE Max3 with SATA RAID1. I was able to insert an IDE hard drive with no confusing problems. It was seen immediately as drive F: by windows and I was able to use it for back up purposes.
    This is not the case with the new board.  I have XP Pro SP2 on SATA Raid0.  If I disable IDE Channel 1 (extra hard drive) then Windows sees the raid as the C: drive.
    If I enable IDE 1 XP automatically changes the drive letter of IDE 1 to C: (it sees it as Disk 0) and the Raid becomes F: (IDE 0 has two CD/DVD roms).
    It would appear that the bios give priority to IDE or something?  The IDE 1 disk is formatted NTFS but contains no boot info or operating system.
    Obviously, if I now remove the IDE disk then XP will no longer boot.
    My question is how to insure that XP sees the raid as Disk 0?
    Thanks

    I was careful about 'boot order'.  Looking again with partitioning software it would seem that the Raid is showing as Disk 0 in the bios and the IDE as Disk 1.
    I have now got it to show up in windows but it shows as Disk 0 and the Raid as Disk 1. Unfortunately, XP is showing it as an 'unknown partition' with no drive letter and the only option it gives me is to delete the partition.  As I have back ups on the disk, that option is a nono.
    Still stuck but at least Windows still boots!
    EDIT :- Problem sorted but lost the data. Now seen as drive F:

Maybe you are looking for

  • ITouch 5 is not recognized by Windows 7

    Hi, I bought a used iTouch 5th gen and charger cable and have spent the last 5 hours trying to get it to sync to iTunes. I had a 4th gen iPod that i lost a month ago that worked perfectly with my computer. I have reconnected and restarted both device

  • URGENT: pass parameters from report to report without usting a link or URL

    HI. I want to send an ID field from a report to a report (like master-detail) and that should be done by pressing the next or previous button. So, not with a LINK or URL link. Is that possible? I used the wwsto_api_session package in several ways, bu

  • KDE Desktop disappeared after update [SOLVED]

    Hiya folks, I have just updated my system with pacman -Syu. There were several kde updates, among others, and now, upon reboot, the desktop is completely blank: no taskbar, clock, wallpaper, icons, etc... All I see after logging in to the desktop env

  • Column level table audit

    Hi Friendz, Is there a ulitity audit for table at column level? Say, if I update a column SALARY in table EMP, it will reflect that the SALARY was changed and save in the audit_trail. Can you share me sample trigger similar to this please. Thanks a l

  • Why does Adobe keep crashing for no reason on the newer versions of Firefox?

    I tried updating the flash player after updating to the newest version on Firefox and it still doesn't work. That flash player problem needs to get fixed. This is so annoying! It does that on versions higher than Firefox 13. I also have the hardware