FOR FORM DESIGNING REQUIRE USER NAME,PASSWORD & HOST STRING

Please Help me
I need this one response on [email protected]
Thank you

Yes, you need a user, password and database. Nobody here on the forum can give you that. If you have not installed Designer repository yourself, than you should ask your designer administrator.

Similar Messages

  • HT1515 Will Airport Express work in hotels in China? They require user name/password to connect. Has anyone used one there?

    I will be traveling in China with my iPad2 and want to use hotel wireless. It requires a sign-in with user name/password.  Can I use an Airport Express for this purpose? How do I set it up for that? I have an old Express (pre-2007); can I use it or do I need to upgrade to the new model?

    OK - I have never been to China but the posts here say that it can be done - the cable from the hotel should be connected to the WAN port of the Express - the Express should be in bridge mode and set to create a wireless network with a name and password of your choice - you can do this with a computer before you leave for China or with the iPad if you have previously downloaded the Airport Utility app - you would then connect to your network and attempt to bring up a web page such as Google - the hotel should then intervene and ask you for the login info that they have provided.
    Charlie

  • User name & password for oracle designer 2000

    Hi,
    I have downloaded the oracle designer 2000 from oracle . I need user name & password to enter the screen. If anyone knows pl. help me

    The username and password you are looking for is that of the Database you are connecting to. I.e. where you have installed the designer repository.
    If you have not installed the repository, follow the instruction to create the oracle user (repository owner), install the designer repository and use it to login.
    The best thing will be to download the documentation the way you downloaded the software. It is important

  • User Name/Password class for MySQL -- it almost works ... almost

    I'm working on creating a user name/password class called Login that will get the information that is required to log into a MySQL database (This program is not an applet, by the way).
    In brief this class does following:
    * It creates a JFrame with JTextFields and a JPasswordField and a login button. All compents have ActionListener.
    * I am able to read the info from the fields (I tested this using System.out.println)
    * Another program calls this Login class (see code at end of post)
    I want the program to close the frame (I figured that out) and return the values to the calling program. I can't figure out how to have it return a cat string ( of "host|port|username|password" ). If this was one large piece of java source code, it'd be a piece of cake, but the code is broken into several java source components and I'm trying to figure out how to get the ActionListener to return the string.
    One web page mentioned using an ejector but haven't been able to find any information about that. Another thought was maybe putting some kind of code in the windowClosing event for the Login class.
    Ex:
      public void windowClosing(WindowEvent e)
         setVisible(false);
         dispose();
         // return value to calling function somehow
      }Any help would be greatly appreciated. I'm teaching myself this so I'm sure there are better ways to do the JFrame formatting, but here's the code anyway. I'll post the additional changes (in context) when I get a working version of this.
    //Login.java
    import java.awt.*;
    import java.awt.event.*;
    import java.lang.Object;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import javax.swing.*;
    import javax.swing.border.TitledBorder;
    public class Login extends JFrame implements ActionListener
       JTextField serverHost;
       IntTextField port;
       JTextField userName;
       JPasswordField password;
       JButton login;
       Canvas canvas;
       String ServerHost_String;
       String Port_String;
       String UserName_String;
       String Password_String;
       String Login_String;
       Font ssb10 = new Font("Sans Serif", Font.BOLD,10);
       Font hb30 = new Font("Helvetica", Font.BOLD,30);
       Integer rc;
       //public void init()
       public Login()
          // Set up buttons
          login = new JButton("Login");
          serverHost = new JTextField("localhost",10);
          port = new IntTextField(3306, 4);
          userName = new JTextField("root",10);
          password = new JPasswordField(10);
          // Draw Screen
          Canvas horizontal_spacer1 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacer2 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacer3 = new Horizontal_Spacer(420,15);
          Canvas horizontal_spacerA = new Horizontal_Spacer(100,45);
          Canvas horizontal_spacerB = new Horizontal_Spacer(100,45);
          Canvas vertical_spacer1 = new Vertical_Spacer();
          Canvas vertical_spacer2 = new Vertical_Spacer();
          Canvas vertical_spacerA = new Vertical_Spacer();
          Canvas vertical_spacerB = new Vertical_Spacer();
           * Top
          canvas = new Top_Logo();
          JPanel top = new JPanel();
          top.add(canvas);
          //top.add(horizontal_spacer1);
          add(BorderLayout.NORTH,top);
           * Middle
          Box p1 = Box.createHorizontalBox();
          Box p2 = Box.createHorizontalBox();
          Box p3 = Box.createHorizontalBox();
          JPanel bp = new JPanel();
          JLabel rbp = new JLabel();
          p1.setFont(ssb10);
          p2.setFont(ssb10);
          p3.setFont(ssb10);
          p1.setAlignmentX(Component.LEFT_ALIGNMENT);
          bp.setAlignmentX(Component.LEFT_ALIGNMENT);
          p3.setAlignmentX(Component.LEFT_ALIGNMENT);
          rbp.setLayout(new BoxLayout(rbp,BoxLayout.X_AXIS));
          rbp.setBorder(new TitledBorder("Connection to MySQL Server Instance"));
          JLabel lString = new JLabel("Server Host: ");
          lString.setFont(ssb10);
          // Setup server Host and Port JPanel
          p1.add(lString);
          p1.add(serverHost);
          lString = new JLabel("  Port: ");
          lString.setFont(ssb10);
          p1.add(lString);
          p1.add(port);
          // Setup username JPanel
          lString = new JLabel("Username:    ");
          lString.setFont(ssb10);
          p2.add(lString);
          p2.add(userName);
          // Setup password JPanel
          lString = new JLabel("Password:    ");
          lString.setFont(ssb10);
          p3.add(lString);
          p3.add(password);
          // Draw the big Jpanel
          //bp.add(horizontal_spacerA);
          bp.add(p1);
          bp.add(p2);
          bp.add(p3);
          //bp.add(horizontal_spacerB);
          rbp.add(vertical_spacerA);
          rbp.add(bp);
          rbp.add(vertical_spacerB);
          add(BorderLayout.WEST,vertical_spacer1);
          add(BorderLayout.CENTER,rbp);
          add(BorderLayout.EAST,vertical_spacer2);
          // Bottom
          JPanel bot = new JPanel();
          bot.setLayout(new BoxLayout(bot,BoxLayout.Y_AXIS));
          bot.add(horizontal_spacer2);
          bot.add(login);
          bot.add(horizontal_spacer3);
          add(BorderLayout.SOUTH,bot);
          // Draw JFrame
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setSize(420,280);
          setResizable(false);
          setVisible(true);
          // Listen for buttons being clicked
          login.addActionListener(this);
          serverHost.addActionListener(this);
          userName.addActionListener(this);
          port.addActionListener(this);
          password.addActionListener(this);
       class Horizontal_Spacer extends Canvas
          Horizontal_Spacer(int X, int Y)
             setSize(X,Y);
             setVisible(true);
       class Vertical_Spacer extends Canvas
          Vertical_Spacer()
             setSize(25,10);
             setVisible(true);
       class Top_Logo extends Canvas
          Top_Logo()
             setBackground(Color.white);
             setSize(420,65);
             setVisible(true);
          public void paint(Graphics g)
               g.setFont(hb30);
               g.drawString("MySQL Login",20,45);
       public void actionPerformed(ActionEvent event)
          Object source = event.getSource();
          ServerHost_String=serverHost.getText();
          Port_String=port.getText();
          UserName_String=userName.getText();
          Password_String=new String(password.getPassword());
          if ((ServerHost_String.compareTo("")!=0) &&
              (Port_String.compareTo("")!=0) &&
              (UserName_String.compareTo("")!=0) &&
              (Password_String.compareTo("")!=0))
               Login_String=ServerHost_String + "|" +
                            Port_String + "|" +
                            UserName_String + "|" +
                            Password_String;
               setVisible(false);
               dispose();
          public void windowClosing(WindowEvent e)
            setVisible(false);
            dispose();
    //Login_Test.java
    import javax.swing.*;
    public class Login_Test extends JFrame
       //public void run()
       public static void main(String [] args)
          Login f = new Login();
    }Doc

    Let me get this clear.
    You want a login dialog.
    Some program calls the dialog and waits untile user respond
    once the user press ok or cancel it reutrn the users input to the caller.
    You can do this directly using JFrame
    but you can do it wil JDialog if you use it as aModal dialog.
    it will look like this
    class LogInDialog  extends JDialog implements ActionListener{
       String value;
       public LogInDialog(){
          setModel(true);
        // This is what you invoke
        public String loadDialog(){
            setVisible(true);
            return value;
        public void actionListener(..... e){
            if (e.getSource() == bCancel)
               value = null;
            else if (e.getSource() == bOk)
               value = //generate the string
            dispose();
    }

  • User Name/Password for SQL*Plus

    I installed the Oracle 8i Personal Version in my PC.
    I have been trying to log on to the Oracle SQL*Plus screen, which asks me for the User Name, Password and the Host String.
    Does anybody out there know what I should use here to log on to this screen?
    Thanks in advance.
    Jay
    [email protected]

    Hi,
    Please check old mails and then forward questions.
    User scott/tiger
    DBA system/manager
    SYS sys /change_on_install
    with regards,
    Boby Jose Thekkanath,
    Dharma Computers(P) Ltd.
    Bangalore-India.
    www.dharma.com

  • HT204053 I did not know my kids had set up an Itunes account for me with one user name and password.  then i got an i phone and set it up with a different email address and new password.  how can i get my accounts to merge so i can have all of my music on

    I did not know my kids had set up an Itunes account for me with one user name and password.  then i got an i phone and set it up with a different email address and new password.  how can i get my accounts to merge so i can have all of my music on my iphone

    Quote: "You cannot merge two or more Apple IDs into a single one. You can, however, use one Apple ID for iCloud services and another Apple ID for store purchases (including iTunes in the Cloud and iTunes Match). See “Using one Apple ID for iCloud and a different Apple ID for Store Purchases” above for details." See also Apple ID & iCloud FAQ: http://support.apple.com/kb/HT4895?viewlocale=en_US&locale=en_US
    You can set up your iCloud account on your iOS device under: "Settings > iCloud" and a other account for store purchases under "Settings > iTunes & App Stores". Unfortunately merging accounts is not possible but you could transfer all of your music manually via iTunes from your Mac or PC.

  • POP3 -Keep asking for user name & Password

     
    Hi,
    We have exchange 2003 server with Service pack 2. We have user who check their mails through   Outlook 2003, Outlook web access & some users are using POP3 to download the messages.
    Since last few weeks, we are getting the complained that when engineers are trying to configured users account in Outlook with POP3 configuration, its keep asking for user name & password. But with same user name & passwords user is able to check their mail through Outlook web access.
    In some of our site, users are able to download messages through pop3 account but this account was configured long back.
    Kindly advise.

    HI,
    This is happening mainly when
    1. user changed his password through Outlook web access next time its keep poping up for password & it will not accept the new passord.
    2. if user is using  OWA & when we try to configured his mail in Outlool with POP3 .
    See if i remove exchange attributes from user's account & then delete the users from AD & Recreated with same  user name, Password & reconnected  to that user to his old mailbox, it;s work fine.
    Regards,
    Chetan
    POP3 is enabled by default for all the users.

  • How can I find my user name password as I only remember the administrator password for the MacBook?

    How can I find my user name password as I only remember my administrator password?I don't want to lose things or content.

    If you have only one account, then your admin password is your user password. If you use another account that is not an admin account, then log into your admin account from which you can change the password on your user account.
    Forgot Your Account Password
    For Snow Leopard and earlier with installer DVD
         Mac OS X 10.6- If you forget your administrator password,
         OS X- Changing or resetting an account password (Snow Leopard and earlier).
    For Snow Leopard and earlier without installer DVD
        How to reset your Mac OS X password without an installer disc | MacYourself
        Reset OS X Password Without an OS X CD — Tech News and Analysis
        How To Create A New Administrator Account - Hack Mac

  • I forgot my user name & password for Firefox Sync 1.3.1

    I set up Firefox Sync 1.3.1 on my main PC, but when I tried to sync a laptop (some days later), I couldn't remember/find the user name & password fort Sync. How can I recover them?
    == This happened ==
    Just once or twice
    == as above

    You can see the Sync password and secret Sync key in the password manager on the computer where you first created that sync account.
    Look for these names:
    *chrome://weave (Mozilla Services Password)
    *chrome://weave (Mozilla Services Encryption Passphrase)

  • Restrict the User name / Password Auto complete option for users accessing

    Hi All,
    Can any one know the Restrict the User name / Password Auto complete option for users accessing Portal from within and outside of Portal.
    Regard's
    Rama

    Are your referring to the browser functionality of remembering the usernames and passwords?
    Thanks,
    GLM

  • Default User name & Password for NETWEAVER

    Hi Everybody,
                  I am a Basis Admin in my company working with ABAP Stack installed in my Server.
           Now I have installed Java Stack for Netweaver in a Separate System to Understand the Functionality of Netweaver & its Concept.
         Now the Problem is i am not able to Login Netweaver. I dont know the Default User name & Password for Netweaver after installing it.
        Also, what are the Main features of Netweaver Compare to ABAP Environment
      Could somebody help me to Understand Netweaver and its Default User name & Password to login?
    Thanks,
    Siva

    Hi
    The default asmin user for your Java add in would be J2EE_ADMIN and guest user would be J2EE_GUEST.
    The default password would be the password you provided at the time of installation.
    Regarding information on Netweaver Java, follow link:
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/a3bb3eff62847ae10000000a114084/content.htm
    Regards
    Rahul

  • User name,password for 10g

    Hey i downloaded the "Oracle Databese 10g Release 2 (10.2.0.1.0) for Microsoft Windows".
    durin the download and installation i nevr specified any user name or passwd or host string.
    when i open SQL Plus it asks for my user name ,pwd and host string.
    i tried the folowing combinations and it didnt wrk for any of them
    user name/pwd:scott/tiger,sys/sys,system/system,admin/admin.
    i really need to wrk over oracle as i have to complete my project. and i have only one sem left.
    it will b so kind of u if u can provide me with the user id, pwd and host string
    ur co-operation will b greatly appreciated.
    With regards
    Aamir suhail
    alternate e-mail: [email protected]

    Goto oracle database configuration assnt and create a db. During db it creation it will prompt u for pwd and u can set at tht point. By dafult oracle pwd's are
    sys/change_on_install
    system/manager
    scott/tiger
    Regards,
    http://askyogesh.com

  • I don't know icloud user name&password to login iphone after update ios7

    I don't know icloud user name&password to login iphone after update ios7.
    I try to recovery apple i.d., but nothing.
    I called Thailand service support 001800 4412904.
    He advise me to goto http://expresslane.apple.com/, and send issue form to apple service.
    I wait more than a week, but no reply.
    I have purchased invoice and iphone package to confirm this phone is not stolen.
    How could I do?
    Thank you for your time to reply.

    Unfortunately, the contacting Apple's express lane is all you can do, if you had no luck to reset your password on http://iforgot.apple.com/

  • -4008 Unknown user name/password combination

    Hi All,
    We are installing SAP NW 7.4 with MaxDB 7.8 on Windows server 2008 R2, When in the phase Create database schema for ABAP  its giving error like below.
    "[-4008] Unknown user name/password combination"
    Below is the output from SdbCmdOut.log
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.models.software.Software | Software object initialized Sucessfully
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.models.database.DatabaseParameter | Create new database parameter object with name: MCOD value:  and comment:
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | JDBC driver path: D:\sapdb\programs\runtime\jar\sapdbc.jar
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | Class: com.sap.dbtech.powertoys.DBM loaded
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | Class: com.sap.dbtech.jdbc.DriverSapDB loaded
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.Xserver | Use Java process call.
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.Xserver | Execute command:  D:\sapdb\programs\bin\x_server.exe start
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | Establish dbmcli session
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.DbmJdbcSession | Connect to database: SID on host: HOSTNAME
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.DbmJdbcSession | Logon with user: control
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.DbmJdbcSession | Run command: param_directget MCOD
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.DbmJdbcSession | MCOD NO
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.DbmJdbcSession | Close dbmcli Session.
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.runtime.SdbLibInstance | End of command section: PARAM_GET
    Tue Aug 12 20:31:19 IST 2014 | class com.sap.sdb.sllib.runtime.SdbLibInstance | *************************************************************
    Tue Aug 12 20:31:20 IST 2014 | class com.sap.sdb.sllib.runtime.SdbLibInstance | Start new command section: GET_SQL_USERS
    Tue Aug 12 20:31:20 IST 2014 | class com.sap.sdb.sllib.utils.Dbmcli | Use Java process call.
    Tue Aug 12 20:31:20 IST 2014 | class com.sap.sdb.sllib.utils.Dbmcli | Execute command:  D:\sapdb\programs\pgm\dbmcli.exe -s dbm_version build
    Tue Aug 12 20:31:20 IST 2014 | class com.sap.sdb.sllib.utils.sdbregview.SdbRegviewIsolated | Use Java process call.
    Tue Aug 12 20:31:20 IST 2014 | class com.sap.sdb.sllib.utils.sdbregview.SdbRegviewIsolated | Execute command:  D:\sapdb\programs\bin\sdbregview.exe -l -delimiter -DELIM-
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.models.software.Software | Software object initialized Sucessfully
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | JDBC driver path: D:\sapdb\programs\runtime\jar\sapdbc.jar
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | Class: com.sap.dbtech.powertoys.DBM loaded
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.connection.JdbcDriver | Class: com.sap.dbtech.jdbc.DriverSapDB loaded
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.Xserver | Use Java process call.
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.Xserver | Execute command:  D:\sapdb\programs\bin\x_server.exe start
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.connection.session.SqlJdbcSession | Start new connection with URL: jdbc:sapdb://HOSTNAME/SID connect user: superdba
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.utils.DbCommand | com.sap.dbtech.jdbc.exceptions.DatabaseException: [-4008]: Unknown user name/password combination
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.sllib.utils.connection.JdbcDriver.createSqlSession(JdbcDriver.java:69)
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.sllib.utils.DbCommand.getAllSqlUsers(DbCommand.java:2054)
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.sllib.utils.cmd.ident.classes.GET_SQL_USERS.run(GET_SQL_USERS.java:26)
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.sllib.utils.DbCommand.runCommand(DbCommand.java:3469)
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.core.main.cmd.SdbCmdMain.<init>(SdbCmdMain.java:67)
    Tue Aug 12 20:31:22 IST 2014 | class com.sap.sdb.sllib.api.exceptions.DatabaseCommandException | com.sap.sdb.core.main.cmd.SdbCmdMain.main(SdbCmdMain.java:212)
    Kindly Suggest me to resolve.
    Regards,
    JD.S

    Hi Deepak,
    I have executed the below commands,
    xuser -U c -u CONTROL,<password> -d SID -n HOSTNAME -S INTERNAL set
    xuser -U w -u CONTROL,<password> -d SID -n HOSTNAME -S INTERNAL set
    After execution of the commands i have retry the same installation still i am getting same error.
    Kindly suggest,
    Regards,
    Sree

  • Question on how to Hide the User Name, Password, and Domain fields in the MDT Wizard

    MDT 2012 U1
    Deploying Windows 7 via Offline Media (ISO) to MS Virtual PC's
    I am looking on how to Hide the User Name, Password, and Domain fields which are prepopulated in the MDT wizard via the CS.ini (Not so concerned about the Domain field as I am User Name and Password)
    We do need the Computer Name and OU fields to be seen, so skipping the wizard is not a option
    The client just does not want these fields to be seen by the end users, they dont want them to even know the account name used for adding the machine to the domain, of course the password is not displayed but it must not be displayed either.
    But since we use the fields they must still  be fuctional just not seen.
    Thanks.....
    If this post is helpful please click "Mark for answer", thanks! Kind regards

    You shouldn't have to edit DeployWiz_Definition_ENU.xml. You should only need to add "SkipAdminPassword=YES" to the CS.ini file and your authentication information.
    Example:
    [Settings]
    Priority=Default
    Properties=MyCustomProperty
    [Default]
    OSInstall=Y
    SkipCapture=NO
    SkipAdminPassword=YES
    UserID=<MyUserID>
    UserPassword=<MyPassword>
    UserDomain=<MyDomain.com>
    SkipProductKey=NO
    SkipComputerBackup=YES
    SkipBitLocker=NO
    -Nick O.
    Nick,
    SkipAdminPassword=YES is for:
    You can skip the Administrator Password wizard page by using this property in the
    customsettings.ini.
    I am hidding the Username/Password/and domain field in the computer name Wizard pane which is read from the cs.iniDomainAdmin=xxxxx
    DomainAdminPassword=xxxxx
    DomainAdminDomain=xxxxxx
    JoinDomain=xxxxxx
    If this post is helpful please click "Mark for answer", thanks! Kind regards

Maybe you are looking for

  • GL & Vendor Line Item Display

    Dear Forum, The users want to display the Vendor Codes in the GL Line Item Display to reflect the corresponding vendor related to the expense in the GL line item and also want the GL Code to be displayed in the Vendor Line Item to reflect the nature

  • Problem with the creation of the date server with the technology Mysql

    Hi, I have installed date integrator 11.1.1.5. I have installed oracle database 11.2 I have installed mysql 5.1.41 with xamp I have created the repository master and work. I have created data server for oracle . ok all correct I have created the date

  • Live Migration and private network

    Is it a best practice to put up a Private Network beetween the nodes in a pool (reserving a few network cards and switch ports for it), to have a dedicated network for the traffic generated e.g. by live migration and/or ocfs2 heartbeat? I was wonderi

  • Black and gray box keeps popping up on my monitor and I cant get it to stay off

    Black and gray box pops up on my monitor. Cant move my mouse over it. Cant remove it. It just recently started doing this. I know it has to do with the settings on my monitor, but im not sure how to set it. When I tried, it would go off for a few min

  • Another Slow constant disconnect DSL WHY?

    How  or when  will   I ever get  internet    service that stays connected?     Already today   we  have gone from  3 bars  to    1  and 3 disconnectes  in  the  past 2 hours.   Oh  I get  it  I am not supposed to be  on  line,  my service does not su