Some one ples help me with my k8t neo

 i have just got a new k8t neo fis2r mb with a 3700 64     all it wants to do is reset      i play a game it resets   i cut a cd it resets  i have use  windows  xp 32 bit and 64  i have used the old drivers  which came with it  and got the new ones         i have tryed all that i can think off to get it to work but it don t work        i have tryed prime 95 but it fails   when i instail windows it takes more than one try     pls help    this is not over clocked
if i change the agp value it locks up   
i cant change the memory timeing
the set up is
asus 6800ge 256 gddr
corsair 3200xl twinx  xms 512meg x2         cl2 2 2 5
ibm 120 gig hd x2 ide
160 gig ibm sata  x 2  i was hopeing to run two sets of raid but this also locks up the bios
nec dvdrw
liteon cdrw
sound baster audigy 2 zs
hiper type r  480w

1st screen   dram clock = 400mhz, sdram cas latency =2
system perfsrmance               fast                                                       cpu fsb clock  200mhz   
ldt to agp lokar (up)              16 bit                                                     ddr voltage v 2.75
ldt to agp width (down)        16 bit                                                     cpu vcore    auto      = 1.472v 
ldt to agp lokar frequency      800mhz                                                  agp voltage  auto      = 1.50
memclock mode                   auto            which = ddr 400
memclock value                    200             which is n/a                           +5 v  =   5.162
bank interleaving                  auto                                                        +12v =   12.046
 bust length                        8 beat                                                      -12v  =   12.546
cas latecncy                        auto            which = 2                       batttery =       3.506
tracd                                  auto            which = 2                               +5vsb     5.018
tras                                   auto             which = 5
trp                                    auto             which = 2
agp mode                           auto

Similar Messages

  • Some one can help me with Properties()

    hi, i try and i try to reasign one group of final static var, and i cant, so i see can i use the Properties() class to reasign one final static var.
    import java.util.Properties;
    Public class Config extends Object{
    static final int EMITIDO;
    static final int PAGADO;
    static final int ENVIADO;
    static final int SOLUCIONADO
    public void Config(){
    Properties defaultProps = new Properties();
    try{
    defaultProps.setProperty("my_new_emitido","2");
    defaultProps.setProperty("my_new_pagado","3");
    defaultProps.setProperty("my_new_enviado","4");
    defaultProps.setProperty("my_new_solucionado","5");
    EMITIDO = (new Integer(defaultProps.setProperty("my_new_emitido"))).intValue();
    PAGADO = (new Integer(defaultProps.setProperty("my_new_pagado"))).intValue();
    ENVIADO = (new Integer(defaultProps.setProperty("my_new_enviado"))).intValue();
    SOLUCIONADO = (new Integer(defaultProps.setProperty("my_new_solucionado"))).intValue();
    the compiler send me a error : cannot assign a value to final variable ABONO
    some can help me please!!!

    tks, yes i now but that was the only way to use them
    in other class with the case statement
    meabe you now other way tks.Use ifs instead of the switch.

  • I am in horry please if some one can help me with my FTP code, thanks

    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class Ass_2 {
         public static void main(String[] args){
              String currentPath = new String(); currentPath = "ftp://ftp.scit.wlv.ac.uk/pub";
              try {
                   BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
                   String str,user,pass ;
                   System.out.println("\n\nTYPE HELP for view the list of commands and there Formats!!");
                   System.out.println("enter command 'bye' to exit the application");
                        System.out.print("Enter Username: ");
                        user = in.readLine();     
                        System.out.print("Enter Password: ");
                        pass = in.readLine();
                        String tempPath = new String();
                        String toFile = new String();
                        tempPath = currentPath ;
                        readPage(currentPath);
                   while (!(str = in.readLine()).equals("bye")){     
                        int     tokencount;
                        StringTokenizer     token = new StringTokenizer(str);
                        tokencount = token.countTokens();
                        String block[] = new String[tokencount];
                        for (int i = 0; i < tokencount; i++)
                             block[i] = token.nextToken();
                             System.out.println(block);
                        if (block[0].equalsIgnoreCase("dir")){
                             System.out.println("DIR");
                             System.out.println(currentPath);
                             readPage(currentPath);
                             System.out.println("\n");
                        }else if(block[0].equalsIgnoreCase("cwd")){
                             System.out.println("Change Directory");
                             currentPath = changeDirectory(currentPath, block[1]);
                             System.out.println("\n");
                        }else if(block[0].equalsIgnoreCase("get")){
                             System.out.println("Wait Copying File : "+block[1]);
                             copyFile(currentPath,block[1]);
                        }else if(block[0].equalsIgnoreCase("cd..")){
                             currentPath = goBack(currentPath);               
                        }else if(block[0].equalsIgnoreCase("help")){
                             System.out.println("\nYour in the Help Section \n");
                        }else {
                             System.out.println("Wrong Command or Format, Type Help!!!");
                             System.out.println("\n");
              catch(Exception e){
                   System.out.println(e);
         // Function to read content form the specfied path
         static void readPage(String path){
              String tempPath = new String();
              try {     
                   URL     pageref = new URL(path);
                   InputStream in = pageref.openStream();
                   BufferedReader inline = new BufferedReader(new InputStreamReader(in));//(instr);
                   String     line;
                   int     linect = 0;
                   while((line = inline.readLine())!=null){
                        linect++;
                        System.out.println(line);
                   System.out.println("lines read = "+linect);
              catch(Exception e){
                   System.out.println(e);
         static String changeDirectory(String path,String dir){
              path = path+"/"+dir;//System.out.println(">>>>>>>>>>> " path" >>> \n");
              readPage(path);     
              return path;
         // Function to go one setp back from the current directory
         static String goBack(String currentPath){
              return currentPath;
         /// Function for basic copy TXT file
         static void copyFile(String path,String file){
              try {
                   path = path +"/"+ file;     //System.out.println("Copy Path : " + path);
                   String fileName = new String();
                        fileName = file+".txt";
                        System.out.println("Out put file name : " + fileName);
                   OutputStreamWriter out = new OutputStreamWriter(new FileOutputStream(fileName));
                   URL     pageref = new URL(path);
                   InputStream in = pageref.openStream();
                   BufferedReader inline = new BufferedReader(new InputStreamReader(in));//(instr);
                   String     line;
                   int     linect = 0;
                   while((line = inline.readLine())!=null){
                        System.out.println(line);
                        linect++; //System.out.println(line);
                        out.write(line+"\r\n");
                   out.close();               
                   System.out.println("File - " file " - copyed Successfully !!");
              catch(Exception e){
                   System.out.println(e);

    h2. {color:#ff0000}Double post{color}
    Replies here:
    http://forum.java.sun.com/thread.jspa?threadID=5253627
    It's rude to double post.
    It's futile (at best) to advertise your time pressure.
    It's pointless to use a forum like this but not actually ask a question.

  • ISO 8 a lot of facebook Internet problems it's annoying and I don't know what I have to do about it would some one can help me with that please.

    I Have an I pad 2 it was really working so well until I update it to ISO 8 many facebook and Internet problems it's become really slow and annoying I hope Apple will resolve that problem soon
    Thanks and  regards
    Tarek .

    Until Apple resolves such issues, there is not much we can do.
    However, try to restart your iPad. This helps more than most people realize.
    I hope this helps, but I cannot guarantee anything till Apple releases further bug fixes.

  • Hi, Can Some One Please Help Me With Deleting Pictures Off My iPod Nano?

    Hi, can somebody please tell me how to delete all the pictures off my iPod nano? I accendenty transfered them all and I dont know how to get rid of them. Thanks
      Windows XP  

    I'm not sure about what you see in ITunes in XP, but this is how you do it in OSX.
    Open ITunes, connect your Nano. Click on the Nano and then Preferences (it's a drop under "ITunes"). Click on IPod, then Photos. UN-CLICK " Auto-Synchronize" and you should get a pop-up that ask if you wish to remove photos from your IPod. Click "Yes"and you are done. It worked for me.

  • Some one Can help me with a big problem

    i need to get the IP from the pc how visit my site. so, i try before the next instructions.
    request.getRemoteHost() // this send me the proxy IP no the user IP.
    request.getRemoteUser() // this send me a null value.
    if you have another way to obtain the IP user
    Regards.

    public java.lang.String getRemoteAddr()Returns the Internet Protocol (IP) address of the client that sent the request. For HTTP servlets, same as the value of the CGI variable REMOTE_ADDR.
    Returns:
    a String containing the IP address of the client that sent the request
    getRemoteHost
    public java.lang.String getRemoteHost()Returns the fully qualified name of the client that sent the request. If the engine cannot or chooses not to resolve the hostname (to improve performance), this method returns the dotted-string form of the IP address. For HTTP servlets, same as the value of the CGI variable REMOTE_HOST.
    Returns:
    a String containing the fully qualified name of the client

  • I have CS6 Master Collection and Photoshop will not do a save as with any files that I am trying to save, can some one please help me?

    Can some one please help me with this?

    You would probably get some response if you posted your question in the Photoshop forum ...
    I'll move it there for you.
              - Dov

  • I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    Here's a quick example I threw together that generates a sort-of-bell-curve shaped data distribution, then performs the binning and plotting.
    -Kevin P.
    Message Edited by Kevin Price on 12-01-2006 02:42 PM
    Attachments:
    Binning example.vi ‏51 KB
    Binning example.png ‏12 KB

  • How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    How do I save a website created on IWeb 08 on one computer, so that I can open and adjust it on Iweb 08 on a other computer? pleas help me with this.

    Ernst ~ Welcome to the Support Communities. See this post:
    Editing my iWeb page from another computer

  • Client server code with errors could some one please help me!!!

    I am using a random access file to design the two interfaces for my client and my server is this the right thing to do? Oh could some one give me some example code of client server interfaces.
    I got an error in the code for the interfaces and I don't know what it is could some one please help me!!
    Heres the error in the code: This is for RegisterCustomer
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    class RegisterCustomer extends JPanel implements ActionListener
    // Button for registering a customer
    private JButton jbtRegister;
    // Customer information panel
    private CustomerPanel customerPanel; (The error is on this line and it says Field type customer panel is missing)
    // Random access file
    private RandomAccessFile raf;
    Second error: Its in the ViewCustomer:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    // View customer panel
    class ViewCustomer extends JPanel implements ActionListener
    // Buttons for viewing customer information
    private JButton jbtFirst, jbtNext, jbtPrevious, jbtLast;
    // Random access file
    private RandomAccessFile raf = null;
    // Current customer record
    private Customer customer = new Customer();
    // Create a customer panel
    private CustomerPanel customerPanel = new customerPanel(); (its on this line and it says field type CustomerPanel is missing)
    // File pointer in the random access file
    private long lastPos;
    private long currentPos;
    Heres the code for the customerPanel:
    // Customer Panel.java: Panel for displaying Customer information
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    public class customerPanel extends JPanel
         JTextField jtfRegistrationnumber = new JTextField(30);
         JTextField jtfSeatingcapacity = new JTextField(20);
    JTextField jtfStartdateofhire = new JTextField(20);
    JTextField jtfDurationofhire = new JTextField(10);
    JTextField jtfManufacture = new JTextField(20);
    JTextField jtfModel = new JTextField(15);
         JTextField jtfEnginesize = new JTextField(15);
    JTextField jtfCharge = new JTextField(20);
    JTextField jtfMileage = new JTextField(10);
    // Constuct a customer panel
    public customerPanel()
    // Set the panel with line border
    setBorder(new BevelBorder(BevelBorder.RAISED));
    // Panel p1 for holding all the labels
    JPanel p1 = new JPanel();
    p1.setLayout(new GridLayout(3, 1));
    p1.add(new JLabel("Registration number"));
    p1.add(new JLabel("Seating capacity"));
    p1.add(new JLabel("Start date of hire"));
    p1.add(new JLabel("Duration of hire"));
    p1.add(new JLabel("Manufacture"));
    p1.add(new JLabel("Model"));
    p1.add(new JLabel("Engine size"));
    p1.add(new JLabel("Charge"));
    p1.add(new JLabel("Mileage"));
    // Panel jpRegistration number for registration number
    JPanel jpRegistrationnumber = new JPanel();
    jpRegistrationnumber.setLayout(new BorderLayout());
    jpRegistrationnumber.add(new JLabel("Registration number"), BorderLayout.WEST);
    jpRegistrationnumber.add(jtfRegistrationnumber, BorderLayout.CENTER);
    // Panel jpSeating capacity for holding Seating capacity
    JPanel jpSeatingcapacity = new JPanel();
    jpSeatingcapacity.setLayout(new BorderLayout());
    jpSeatingcapacity.add(new JLabel("Seating capacity"), BorderLayout.WEST);
    jpSeatingcapacity.add(jtfSeatingcapacity, BorderLayout.CENTER);
         // Panel jpStart date of hire for holding start date of hire
    JPanel jpStartdateofhire = new JPanel();
    jpStartdateofhire.setLayout(new BorderLayout());
    jpStartdateofhire.add(new JLabel("Start date of hire"), BorderLayout.WEST);
    jpStartdateofhire.add(jtfStartdateofhire, BorderLayout.CENTER);
    // Panel jpDuration of hire for holding Duration of hire
    JPanel jpDurationofhire = new JPanel();
    jpDurationofhire.setLayout(new BorderLayout());
    jpDurationofhire.add(new JLabel("Duration of hire"), BorderLayout.WEST);
    jpDurationofhire.add(jtfDurationofhire, BorderLayout.CENTER);
    // Panel p2 for holding jpRegistration number and jpSeating capacity and start date of hire and duration of hire
    JPanel p2 = new JPanel();
    p2.setLayout(new BorderLayout());
    p2.add(jpRegistrationnumber, BorderLayout.WEST);
    p2.add(jpSeatingcapacity, BorderLayout.CENTER);
    p2.add(jpStartdateofhire, BorderLayout.CENTER);
    p2.add(jpDurationofhire, BorderLayout.CENTER);
    // Panel p3 for holding jtfManufacture and p2
    JPanel p3 = new JPanel();
    p3.setLayout(new BorderLayout());
    p3.add(jtfManufacture, BorderLayout.CENTER);
    p3.add(p2, BorderLayout.EAST);
    // Panel p4 for holding jtfModel, jtfEngine size, charge and mileage and p3
    JPanel p4 = new JPanel();
    p4.setLayout(new GridLayout(3, 1));
    p4.add(jtfModel);
    p4.add(jtfEnginesize);
    p4.add(jtfCharge);
    p4.add(jtfMileage);
    p4.add(p3);
    // Place p1 and p4 into customerPanel
    setLayout(new BorderLayout());
    add(p1, BorderLayout.WEST);
    add(p4, BorderLayout.CENTER);
    // Get customer information from the text fields
    public Customer getCustomer()
    return new Customer(jtfRegistrationnumber.getText().trim(),
                             jtfSeatingcapacity.getText().trim(),
                                  jtfStartdateofhire.getText().trim(),
                             jtfDurationofhire.getText().trim(),
                             jtfManufacture.getText().trim(),
                             jtfModel.getText().trim(),
                                  jtfEnginesize.getText().trim(),
                             jtfCharge.getText().trim(),
                             jtfMileage.getText().trim());
    // Set customer information on the text fields
    public void setCustomer(Customer s)
    jtfRegistrationnumber.setText(s.getRegistrationnumber());
    jtfSeatingcapacity.setText(s.getSeatingcapacity());
    jtfStartdateofhire.setText(s.getStartdateofhire());
    jtfDurationofhire.setText(s.getDurationofhire());
    jtfManufacture.setText(s.getManufacture());
    jtfModel.setText(s.getModel());
    jtfEnginesize.setText(s.getEnginesize());
    jtfCharge.setText(s.getCharge());
    jtfMileage.setText(s.getMileage());
    Could someone please help me and tell me what these two errors mean and how I could get rid of them

    Can some one take a look at this code and tell me how to get all my jlabels to line up alone side their jtf.
    Because it looks like this the picture in the attached file and this is the code for it:
    public customerPanel()
    // Set the panel with line border
    setBorder(new BevelBorder(BevelBorder.RAISED));
    // Panel p1 for holding labels Name, Street, and City
    JPanel p1 = new JPanel();
    p1.setLayout(new GridLayout(5, 1));
    p1.add(new JLabel("Registration Number:"));
    p1.add(new JLabel("Seating Capacity:"));
    p1.add(new JLabel("Engine Size:"));
    p1.add(new JLabel("Start date of hire"));
    p1.add(new JLabel("Duration of hire"));
    JPanel p2 = new JPanel();
    p2.setLayout(new GridLayout(5, 1));
    p2.add(jtfRegistrationnumber);
    p2.add(jtfSeatingcapacity);
    p2.add(jtfEnginesize);
    p2.add(jtfStartdateofhire);
    p2.add(jtfDurationofhire);
    //JPanel p3 = new JPanel();
    //p3.add(p1, BorderLayout.WEST);
    //p3.add(p2, BorderLayout.NORTH);
    JPanel p4 = new JPanel();
    p4.setLayout(new GridLayout(4, 1));
    p4.add(new JLabel("Manufacture:"));
    p4.add(new JLabel("Model:"));
    p4.add(new JLabel("Mileage:"));
    p4.add(new JLabel("Charge:"));
    JPanel p5 = new JPanel();
    p5.setLayout(new GridLayout(4, 1));
    p5.add(jtfManufacture);
    p5.add(jtfModel);
    p5.add(jtfMileage);
    p5.add(jtfCharge);
    // JPanel p6 = new JPanel();
    // p6.setLayout(new BorderLayout());
    // p6.add(p4, BorderLayout.SOUTH);
    // p6.add(p5, BorderLayout.EAST);
    // Place p1 and p4 into CustomerPanel
    setLayout(new BorderLayout());
    add(p1, BorderLayout.WEST);
    add(p2, BorderLayout.NORTH);
    add(p4, BorderLayout.SOUTH);
    add(p5, BorderLayout.EAST);
    So could someone please help me and correct my code so that each text lable is lined up next to its jtf java text field.

  • HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no ma

    HELP. ............Hi folks hope some one can help me please.Having a problem in Bridge I open my images in ACR,  as I open files in a folder and lets say they are labeled in yellow  they are all going back to  the camera raw default , in other words no matter what work I have done, inc cropping they  all go back to ,as they came out of camera. What on earth is happening? I am on PS CS6. I might point out everything was working normally up to  yesterday, when this first started.
    I recently changed computer to 64bit from 32bit, not sure if this causing  the problem or not. Any help would be appreciated.

    Robert,
    Would you be so kind to rephrase your question with concise, precise information and without any "let's say that" hypotheticals?  Sorry, I can't quite follow you.
    Also please give exact versions of Photoshop CS6 (13.what.what), of Bridge and of your OS.
    Thanks.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Security question keep saying they are wrong and I know they are right. I can't change them cuz when I try it tells me to answer the questions. I have tried everything changing my account and all and still can't get it can some one please help me out.

    Security question keep saying they are wrong and I know they are right. I can't change them cuz when I try it tells me to answer the questions. I have tried everything changing my account and all and still can't get it can some one please help me out.

    Go here and select "Reset your password."  You will receive an email message with a link that bypasses the questions.  You will then be able to select and answer the questions again.

  • I wish to uninstal a program ? could some one please help me thank you  marie

    I wish to uninstal a program / could some one please help me  thank you   marie

    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead.  Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
    AppZapper
    Automaton
    Hazel
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • I would like to know how i stop some albums ive bought from transfering to my iphone i delete them from itunes but when i sync my phone they transfer from my iphone this is a pain some one please help!!

    I would like to know how i stop some albums ive bought from transfering to my iphone i delete them from itunes but when i sync my phone they transfer from my iphone this is a pain some one please help!!

    Burb79 wrote:
    I thought of that one two tried it but still no joy. I have an ipad2 as well which I set up to not sync any music to it but for some reason the albums have got onto that as well. im thinkin its somthing to do with the dam cloud thing
    Go to Settings/ Store and under the category "Automatic Downloads" you can turn OFF the automatic download of purchases to your device (this needs to be done for each device). There's also a setting in iTunes just for automatic pushes to your iTunes library.
    To remove a purchase you've made directly to your device, you can either:
    a- Swipe across the song title from left to right and press Delete, or
    b- If you auto-sync your device, connect to iTunes and click on the Music tab where you define your sync settings (the Music tab is to the right of the overall Summary page of your device). At the bottom of the Music tab you'll see direct purchases that are on your device -- simply un-check those and click "Apply" or "Sync" to remove them.
    c- If you manually manage music on your device, connect to iTunes and click the small arrow to the left of your device name, and then click on the Music folder under your device. Then navigate to the item(s) you want to remove and then delete them.
    To prevent things from syncing from your library to your device, there are many ways to do that (un-checking things in your library is one way, but not the best IMO). Might want to read the manual or some online tutorials on iTunes if you want to learn more.

  • Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    Hii, i got an iTunes card for $15 and only used $6 in it, but it say I only have $0.37 left. If any one could help me with this, I will be forever grateful.

    You will need to Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • Setting up AP Extreme n without it being connected to the Internet

    Is it possible to set up the new AirPort Extreme Base Station (N) (as a one-bas-station network) to give me access to a hard disk and one or more printers, but without it being connected to the Internet? I have tried setting up an AirPort network usi

  • User Exit or BADI for Operation tab of IW32 Transaction

    Hi All, Currently I am working on the transaction IW32. I am looking for a user exit or BADI which can trace the item level changed data for operations. Thanks in advance. Regards, Rajesh

  • Infinity and MSN

    Has anyone come up with a definitive answer to why msn disconnects all the time when using BT Infinity?  i would love to know as it is really annoying me Andy

  • HElp in MERGE statement.

    I want to user MERGE statment. I want to merge values in another database of table on the netwrok. When i am going to run my script the following error araise. ORA-02071 error initializing capabilities for remote database string How can u user MERGE.

  • Eraser tool problem

    I am using Illustrator CS4 on a mac with a .ai file and am trying to use the eraser tool to remove a piece of an object from an area that I want to remain transparent (I don't want to just cover it with white).  The object is made of two paths with a