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

flex mobile switching between front and back camera

I'm building an android video application on flex mobile that can switch between front and back camera.I wrote a function that switch between the two cameras but it does that only once and when i try to press the button again to switch the camera…
adel oueslati
  • 117
  • 2
  • 6
0
votes
0 answers

VS 2010 Video Card switching

I have together an Intel(R) HD Graphics and NVIDIA GeForce GTX 660. Now I am writing an OpenGL aplication in Visual Studio 2010. By checking the OpenGL version, it results OpenGL 3.3, so I think it`s running on the HD Graphics. I would appreciate…
satana
  • 1
0
votes
1 answer

Control changing windows with Tkinter

I'm trying to build a little app that lets you switch between to pages. This is what I got so far: import tkinter from tkinter import ttk def main(): root=tkinter.Tk() root.title("Control") first_page = FirstWindow(root) …
user2304540
  • 101
  • 1
  • 2
  • 8
0
votes
1 answer

Primefaces CommandButton (Within Datatable) - To Refresh Datatable on a second tab and switch to that tab

I am newbie. I have a Primefaces tab (1. Summary 2. Detail). I am allowing user to search for the list of items and then in 1st tab, the primefaces datatable shows the results. Along with the table there is an extra column on which user clicks then…
Chirag Jhaveri
  • 135
  • 2
  • 14
0
votes
2 answers

Switching matrix

Hello i have this program and i wanted to know what do you think i can do to change the first row and the last row For example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 Changed to: 4 2 3 1 8 6 7 5 12 10 11 9 16 14 15 13 This is what i have so…
0
votes
1 answer

jQuery switching images when link is clicked

Need some help here. I'm trying to achieve this: By default the images are hidden by css display: none; When the user clicks on the link for example: vanilla glazed it will display the image that matches the image alt "vanilla-glazed". Then if the…
0
votes
2 answers

Jquery - when a link is hovered, switch an image in a seperate DIV

I am new to Jquery and am having problems getting the following working. I have a web page with two columns. In the left column is an unordered list of links. In the right column is a div. What I want to do is have the div in the right column,…
greenkiwi
0
votes
2 answers

switching between layouts using setvisibility on android not working

I'm using a screen that I want to switch between layouts on the click of a button. I want both layouts to occupy the full height of the screen, when the button on the first layout is pressed, i want this layout to disappear and the other layout to…
Graham Baitson
  • 580
  • 1
  • 11
  • 29
0
votes
1 answer

How to open camera then switch to Image mode (vice versa)

In my case I want to take photo or capture video, actually I can do these if I create separate intents. I mean I can open camera as image mode or video mode but can not switch between them. Is this related to intent filters which I use? What should…
Mustafa Güven
  • 15,526
  • 11
  • 63
  • 83
0
votes
1 answer

Pause between div background switching with Chrome

It seems I'm not changing background properly when I'm switching between two div or anchor backgrounds, either directly in JS or using jQuery, with Chrome. The crossbrowser test is as follow: Opera 12 - OK FF 15.01 - OK IE8 - OK! Safari 5.1.7 -…
Léon Pelletier
  • 2,701
  • 2
  • 40
  • 67
0
votes
1 answer

Switching View in methods in XCode 4

I am using XCode 4.4 and making an app with storyboard. I want to switch to another view in a method of a view. I want to achieve the same functionality as switching view on storyboard by modal,inside the method. So far I am using the following…
0
votes
2 answers

Cocos2d: is there a way to access to a CCMenu child?

I am using the following code: CCMenuItemFont *controllerItem = [CCMenuItemFont itemFromString:@"Analog" target:self selector:@selector(controllerToggle)]; CCMenu *controllerTypeMenu = [CCMenu menuWithItems:controllerItem, nil]; …
mm24
  • 9,280
  • 12
  • 75
  • 170
0
votes
2 answers

backbone.js application view switching?

I'm writing a front-end to my RESTful API using Backbone... and I'm really enjoying it so far. Learning this framework continues to be super interesting. However, I am now stumped on something that seems like, to me at least, that it should be…
bitcycle
  • 7,632
  • 16
  • 70
  • 121
0
votes
3 answers

How to Invoke on background thread

Is there a way to invoke a method on a background thread ? I am aware of BackgroundWorker/Creating a thread or use ThreadPool.QueueUserWorkItem etc but that's not the answer i am looking for for e.g. the SCSF has attributes to ensure the method is…
Kumar
  • 10,997
  • 13
  • 84
  • 134
0
votes
1 answer

wpf4, prim4 switching between views in the same region

I Want to display three views on the same region(list, add and Edit view) on the same region using wpf with prism, MEF. user have to consult a list and choose an action that enable the add or edit view. I dont' want to use Popups. it's a sort of…