Televison & Video Logo

Related Topics:

Posted on Jan 11, 2019
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

No menue button on my new Toshiba 43T6863DB how do I get int settings

1 Answer

Cindy Wells

Level 3:

An expert who has achieved level 3 by getting 1000 points

Superstar:

An expert that got 20 achievements.

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

  • Toshiba Master 6,688 Answers
  • Posted on Jan 12, 2019
Cindy  Wells
Toshiba Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

Superstar:

An expert that got 20 achievements.

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Joined: May 31, 2008
Answers
6688
Questions
0
Helped
3532758
Points
21745

Unfortunately, you need the original remote or a universal remote with the coding and a menu button. On the original remote, the Menu button is the blue one with a house symbol; I'd call it a Home button. Here's a replacement remote for the 43T6863DB: http://www.remote-controls-shop.co.uk/catalogue/TOSHIBA/43T6863DB/ . For a universal remote to have the best odds of having the correct code, you need one that was programmed 6 months or more after the TV was built.

I hope this helps.

Cindy Wells

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

Changing language on Toshiba 32W24 TV from russian to english

How to Change Toshiba TV Language to English

Since the TV has been set in a foreign language, you might have trouble identifying what's written on your TV. In that case, you might have to take a note of the type and number of keys pressed in the below steps.
  1. On your Toshiba TV's remote, press the Menu button.
  2. Then press the Menu buttons on your remote two times. This will take you to the Settings page.
  3. Press the OK button your remote to confirm your selection.
  4. Now tap the Down button on your remote once to go to the Language menu and press the OK button.
  5. The first option will be the language selection menu and that will be selected by default.
  6. So just use the "Left" or "Right" button on your TV remote to English (or any other language of your choice).
  7. You may now hit the Exit button on your remote to close the Settings option.
0helpful
2answers

28" Toshiba TV has no audio when TV is turned on. the speakers are fine as you can hear a video tape. need help

Check if the speakers are switched on in your Menu:

Press the AUDIO button on the Remote Control or the Menu button on the TV set to display the AUDIO menu. Repeatedly press the AUDIO button on the remote or the ADV button on the TV set until SPEAKERS is displayed in magenta

Press the + or - button to call up the SPEAKERS ON/OFF mode on screen display. Each time you press the button ON or OFF mode alternate. Make sure is is switched to on.

Also there is a switch on the back of the TV to control which speakers you use, it says MAIN SPEAKER EXT-INT make sure this is set to INT.

If this doesn't work you'll have to contact Toshiba service.

Hope that helps..........
0helpful
2answers

How do you change the date on a toshiba 3010 phone?

  1. Leave the handset on-hook.
  2. Press INT (intercom button, not a line key) and press 651.
  3. Dial in the date in the format YYMMDD.
  4. Press # (or RDL) to save the settings.
0helpful
1answer

Fix volume control

1. Go into the Set Menu.
2. Press the AMP button on the remote.
3. Press the Menu/Set Menu button.
4. Use the Arrow Up Down button to select Manual Setup.
5. Press the Enter button to enter Manual Setup.
6. Use the Arrow Down button to select the number 3 Option Menu.
7. Press the Enter button to enter the Option Menu
8. Use the Arrow Down button to select D Multi Zone Set.
9. Press the Enter button to enter D Multi Zone Set.
10. Press the Arrow Down button to get to Zone 2 Amp
11. Press the Arrow button to the right to set the Zone 2 Amplifier to INT.
12. Press the Menu/Set Menu button repeatedly to exit the Set Menu.

I’m happy to help further over the phone at https://www.6ya.com/expert/glenn_3b3dd885737c06f6

0helpful
1answer

My new toshiba 32 inch regza turns on but thats all it does? no picture, sound even menu dosnt come up

First if a "new" set and if in warranty--have them deal with the problem.

If nothing on remote except on and off works--it is a micro problem (microprocessor) in the set.

I assume you did unplug the set---wait and plug it back as that could allow the micro to reset.

The key clue here is nothing on remote works except on/off?
0helpful
1answer
0helpful
1answer

I need a complete workingsource code written in

This is a simple source code for Simple calculator in Java using RMI
//mathServer//
import java.rmi.*;
import java.rmi.Naming.*;
import java.rmi.server.*;
import java.rmi.registry.*;
import java.net.*;
import java.util.*;
interface mathInterface extends Remote
{
public int add(int a,int b) throws RemoteException;
public int subt(int a,int b) throws RemoteException;
public int mult(int a,int b) throws RemoteException;
public int div(int a,int b) throws RemoteException;
}
public class mathServer extends UnicastRemoteObject implements
mathInterface
{
public mathServer() throws RemoteException
{
System.out.println("Initializing Server");
}
public int add(int a,int b)
{
return(a+b);
}
public int subt(int a,int b)
{
return(a-b);
}
public int mult(int a,int b)
{
return(a*b);
}
public int div(int a,int b)
{
return(a/b);
}
public static void main(String args[])
{
try
{
mathServer ms=new mathServer();
java.rmi.Naming.rebind("MathServ",ms);
System.out.println("Server Ready");
}
catch(RemoteException RE)
{
System.out.println("Remote Server Error:"+ RE.getMessage());
System.exit(0);
}
catch(MalformedURLException ME)
{
System.out.println("Invalid URL!!");
}
}
}

//mathClient//
import java.rmi.*;
import java.rmi.registry.*;
import java.awt.*;
import java.awt.event.*;
public class mathClient extends Frame implements ActionListener
{
Button B1=new Button("Sum");
Button B2=new Button("Subtract");
Button B3=new Button("Multiply");
Button B4=new Button("Divide");
Label l1=new Label("Number 1");
Label l2=new Label("Number 2");
Label l3=new Label("Result");
TextField t1=new TextField(20);
TextField t2=new TextField(20);
TextField t3=new TextField(20);
public mathClient()
{
super("Calculator");
setLayout(null);
l1.setBounds(20,50,55,25);
add(l1);
l2.setBounds(20,100,55,25);
add(l2);
l3.setBounds(20,150,55,25);
add(l3);
t1.setBounds(150,50,100,25);
add(t1);
t2.setBounds(150,100,100,25);
add(t2);
t3.setBounds(150,150,100,25);
add(t3);
B1.setBounds(20,200,80,25);
add(B1);
B2.setBounds(100,200,80,25);
add(B2);
B3.setBounds(180,200,80,25);
add(B3);
B4.setBounds(260,200,80,25);
add(B4);
B1.addActionListener(this);
B2.addActionListener(this);
B3.addActionListener(this);
B4.addActionListener(this);
addWindowListener(
new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
}
);
}
public void actionPerformed(ActionEvent AE)
{
if(AE.getSource()==B1)
{
sum();
}
else if(AE.getSource()==B2)
{
subt();
}
else if(AE.getSource()==B3)
{
mult();
}
else if(AE.getSource()==B4)
{
div();
}
}
public void sum()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.add(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void subt()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.subt(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void mult()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.mult(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public void div()
{
int i=Integer.parseInt(t1.getText());
int j=Integer.parseInt(t2.getText());
int val;
try
{
String ServerURL="MathServ";
mathInterface MI=(mathInterface)Naming.lookup(ServerURL);
val=MI.div(i,j);
t3.setText(""+val);
}
catch(Exception ex)
{
System.out.println("Exception:"+ex);
}
}
public static void main(String args[])
{
mathClient MC=new mathClient();
MC.setVisible(true);
MC.setSize(600,500);
};
}
0helpful
2answers

HOW TO ''INT'' THE ENTIRE OFFICE

This is a partial guess, because an EKT phone probably sits on a Strata. Try Intercom 60 for all internal, 68 for all internal/external if you have it, and 69 for external only. The missing numbers are 1-4 for zones.

If it happens to be a DK, try 3x instead of 6x.

Carl
0helpful
1answer

Remote Control wont open manue on new tv

ensure the satellite receiver is turned on and the output from the satellite receiver is connected to the ant. in on the tv. on the remote control, press the tv button, then the menu button. from the menu, select settings, set input to ant. .

do this and let me know what happens so we can get this working

I will be available till 2:00am CST

clarkco
2helpful
1answer

Alpine cda 7893 no sound

this radio does have setting to turn off internal amp go into menu and check it hold down set button to access menu I think
Not finding what you are looking for?

134 views

Ask a Question

Usually answered in minutes!

Top Toshiba Televison & Video Experts

Grand Canyon Tech
Grand Canyon Tech

Level 3 Expert

3867 Answers

matt martin
matt martin

Level 3 Expert

1259 Answers

Cindy Wells

Level 3 Expert

6688 Answers

Are you a Toshiba Televison and Video Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...