Search Result
Collapse
19 results in 0.0044 seconds.
Keywords
Members
Tags
-
thelionheart started a topic can i use a wireless usb dongle to increase the wifi receiving coverage of my pc?in Networkingcan i use a wireless usb dongle to increase the wifi receiving coverage of my pc?
I have a laptop that was capable to receive WiFi signal in a certain place. My problem is I always transfer my laptop time to time to the nearest vicinity just to detect and get Unsecured Wireless Connection to connect to internet. My Question is it possible to use USB Wireless Dongle/Receiver to 5 meter USB Cable on my laptop to maximize the its capacity to receive/detect a wide range of Wireless Networks along my places? please help -
How to get a file path on Windows Network Server from Linux
Hi,
I am trying to get a valid path of an Excel file exsist on windows network server from a Perl script running at Linux machine.
I have tried searching CPAN but could not figure it out.
Any advise will be greatful.
thanks -
How to See router set up page?
Hi to all,
I'm working under static ip address, in which i could not open router set up page. when i use 192.168.0.1, it just redirect to one default "Red Hat Enterprise Linux Test page".
I don't know how to access the router web page for configure the port.
Thanks to all -
Sending Images Over a Network Stream
Hi i am making a simple HTTP Server using TCP/IP sockets for a project.
i have a method to get an image and send it over to the browser but i am having problems doing so, i have tried doing it different ways but nothing seems to be working.
the browser asks for the image, the server sends the head along with the image but the browser never shows the image. the server works fine for all the html/css files i have send... -
Sql Server Works Slow in Network
I developed an application in VB.NET to connect to a SQL Server 2005 server.
In the local machine all works perfect ... but in the others PCs ... the server returns my querys (even the simplest, by the way) very ... very slowly.
What configurations I would do to solve this problem
Thanks for any help -
haanjae started a topic What programming language should i use in creating a bandwidth control system?in NetworkingWhat programming language should i use in creating a bandwidth control system?
what programming language should i use in creating a bandwidth control system?
Java, C++, C# or any other language? -
Should I use Sockets or not, and why?
I've build TicTacToe game, and got it to work multiplayer. I have used one java server for connecting to the database and with the clients ( sockets ).
It works fine but now I am wondering if I could only make the clients connect to the database and receive/update data from there (whose turn it is and what move someone made), without any Java server and sockets.
Please help me on this one. Should I use sockets or not,... -
Solution for handling boost::thread with member functions
I'm using VC++ 2010 with Boost 1.43.
I've just created a class that uses winsock to handle network communication. Now there's a method called "fillQueue" which is defined like this:
Code:void fillQueue(NetworkQueueTS& nq);
-
Appalling performance after splitting database
Hi all, working in Access 2003 (using the Access 2000 file format).
I've been developing a moderate-sized database and have recently secured write permission for the network folder that is to be its permanent home. So after moving it there, I went to split the front and back ends so that I could test the links, distribute the front end, and begin training the administrators.
But it hasn't gone well.
Previously,... -
Server Error in '/rss1' Application.
Hello...in mya "home.aspx" page i have included webpart manager,and webzones.and i have also write the following code in my page.still it is showing me this srror.plz help me out.
Code:protected void Page_Load(object sender, EventArgs e) { WebPartManager1.DisplayMode =WebPartManager1.DisplayMode; }
-
How do I make a network game on JAVA?
There is a local card game here in our place that me and my classmates got addicted to (oh no, we don't put bets on it, we just play the game), but when we get to our respective homes, no one in our place knows how to play the game but us. So we were thinking if we could search the net for an online version, but no, there is none (because it's a local game, no one out there knew of it).
Now we thought like, "What if we make this... -
Cisco PVST to MST
I have 3 Cisco switches (catalyst 3600 series I think) that I am wanting to move from PVST to MST. Two of the three switches I can type "spanning-tree mode mst" and it takes it. This last one any time I type that it locks the switch up and I loose my connection, leaving me no choice but to restart it (which of course resets it back to PVST). There are only 2 vlans
1 -disabled and 2 everything is on this vlan.
Let... -
Linux network: Network interface parameters
Hi all! I'm joining the forum with my first question:
Each time you start a network interface that uses DHCP there are parameters such as DNS server and IP gateway that are defined. Assuming that I have several interfaces via DHCP, How can I get these parameters for a specific interface? Using C code? -
How to print form to a network printer?
I am having difficulty finding the proper code to print to a network (non-default) printer.
I have it currently set to print on a default printer using this code (created in wizard):
Code:Private Sub cmdPrint_Click() On Error GoTo Err_cmdPrint_Click Dim stDocName As String stDocName = "frmPrint" DoCmd.OpenReport stDocName, acNormal
-
Dijkstra's Algorithm for finding the shortest route
Hi All
Here is a very simple little class for finding a shortest route on a network, following Dijkstra's Algorithm:
Code:#!/usr/bin/env python #This is meant to solve a maze with Dijkstra's algorithm from numpy import inf from copy import copy class Graph(object): """A graph object that has a set of singly connected,weighted, directed edges