Questions tagged [switching]

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs)

A switch is a telecommunication device that receives a message from any device connected to it and then transmits the message only to the device for which the message was meant. This makes the switch a more intelligent device than a hub (which receives a message and then transmits it to all the other devices on its network). The network switch plays an integral part in most modern Ethernet local area networks (LANs). Mid-to-large sized LANs contain a number of linked managed switches. Small office/home office (SOHO) applications typically use a single switch, or an all-purpose converged device such as a residential gateway to access small office/home broadband services such as DSL or cable Internet. In most of these cases, the end-user device contains a router and components that interface to the particular physical broadband technology. User devices may also include a telephone interface for VoIP. An Ethernet switch operates at the data link layer of the OSI model to create a separate collision domain for each switch port. With 4 computers (e.g., A, B, C, and D) on 4 switch ports, any pair (e.g. A and B) can transfer data back and forth while the other pair (e.g. C and D) also do so simultaneously, and the two conversations will not interfere with one another. In full duplex mode, these pairs can also overlap (e.g. A transmits to B, simultaneously B to C, and so on). In the case of a repeater hub, they would all share the bandwidth and run in half duplex, resulting in collisions, which would then necessitate retransmissions.

http://en.wikipedia.org/wiki/Network_switch

329 questions
0
votes
1 answer

iPhone UINavigation Controller issue?

I have 3 different xib's. I am able to go back and forth between view 1 and view 2 with the following code... This Code brings up the second view... -(IBAction)startButtonClicked:(id)sender{ self.gamePlayViewController =…
NextRev
  • 1,711
  • 4
  • 22
  • 31
0
votes
2 answers

Switching xib's in iPhone SDK?

I'm having issues with switching xib's when I try to from my second view into the third. I get into the second view from the first like this... -(IBAction)startButtonClicked:(id)sender{ Number2ViewController *screen = [[Number2ViewController…
NextRev
  • 1,711
  • 4
  • 22
  • 31
0
votes
1 answer

Switch from a View (Login) to another View with a TabBarController

i'm new at IPhone SDK Developing and now i need some help. I have a LoginView where the User have to authentificate his legitimacy. After he enter his Username and Passwort he click on the "Sign In" Button. Then i want to load my "Real-App". Here is…
Raphael
  • 3
  • 3
0
votes
1 answer

in specific condition set and store a variable until another specific condition

Hello I'm pretty new in programming. I need to solve this problem in php but the solution in any different language will be great. I tryied to solve it with if statement but if condition is changed the variable is gone. Easy example for better…
Jakub
  • 103
  • 1
  • 6
0
votes
2 answers

switching fragment by onclicklistener in activity

I have application with fragments, and I want to switch between them by a button-operated activity. Here is my try. How can I do it? public class StartActivity extends Activity { public static Context appContext; @Override public void…
0
votes
1 answer

Switching Views

I have two XIb files and I need to switch between them with the swipe of a finger, like the native iphone weather app. does anyone know how to do this. please give some sample code if possible. thank you. P.S I am programming in Objective-C.
0
votes
1 answer

Printing to a file properly, but then hangs up

I set my program up to print to a file, which works correctly. The only issue is that, since I made this change, the program does not continue as it should after the data is ouputed to the file. Loan.printAmortTable(name, custID, loanID, cBalance,…
user1873736
  • 101
  • 2
  • 12
0
votes
3 answers

Switch Text Color with Delay

I'm trying to change the color of the text with a timeout. like every 5 seconds the colors should change. I just can't get it to work. What am I doing wrong? var rainBowColors = new Array(); rainBowColors.push("#FF0000"); //Red: #FF0000…
VRC
  • 745
  • 7
  • 16
0
votes
1 answer

Switching from a normal view to a TabBar Controller

I build my first iPhone application and I have a problem with switching views. First, I have two views (login, registration) which switch via "presentModalViewController:animated:". But if someone logged in, there must be a new kind of view. I wanna…
Tim
  • 13,228
  • 36
  • 108
  • 159
0
votes
1 answer

Is it possible to just detect (not change) current brightness level on iOS screen?

Is it possible to just detect (not change) current brightness level on iOS screen? For example, I am trying to set a certain brightness value at which the UI/styles may change based on the current context. Sort of like responsive stylesheet…
Danelle
  • 11
  • 3
0
votes
3 answers

How to switch / toggel 2 applications with same name?

Been looking for the best way to do this now for some time but no answers. I'm using Windows XP and Delphi 6. I have basically 2 applications which I want identical source code for. The only difference is that the 2 application look at different SQL…
0
votes
2 answers

Toggle divs or their content on key click WITHOUT ajax or jquery library

I found this code : It shows a pop up on spacebar or…
user2759665
0
votes
2 answers

switching between camera not working after thread creation

Good morning to everyone. I am developing an application in Android environment that captures frames from a video stream, in order to process them, and then shows the processed frames on screen. This application, if the device has two cameras,…
user140888
  • 609
  • 1
  • 11
  • 31
0
votes
1 answer

C# WPF page switching

I want to accomplish something like they have in Modern UI for WPF. I have MainWindow : NavigationWindow, which source is page /main.xaml and my code in it looks like this: public partial class main : Page { public main() { …
0
votes
1 answer

Switching back and forth between windows XCode interfaces

I am having a very difficult time switching between forms in Cocoa interfaces. From my initial form and its delegate, I can hide the initial window then load and display the second window with all properties on it. This is working working... Alas,…