Skip to content

Hardware & Devices

Discussions on hardware (choosing, setting up, troubleshooting) and device drivers (for those who like the colour blue)

This category can be followed from the open social web via the handle hardware-devices@forum.codeproject.com

1.5k Topics 6.1k Posts
  • ping

    4
    0 Votes
    4 Posts
    0 Views
    V
    Actually I think I can see what you're trying to get at. Are you referring to pinging both the public facing IP address and an Internal address say behind a firewall? Unless the router allows IP forwarding so that an external IP is mapped to one behind the firewall probably, then no you probably can't do both. "I've learned that life is one crushing defeat after another, until you just wish Flanders was dead." [Homer J Simpson]
  • passthrough

    sysadmin
    3
    0 Votes
    3 Posts
    0 Views
    C
    I think when you enable pass through it defaults all traffic to the pass through IP. Make a new rule for ICMP and set it to your WAN IP. See if you can ping after that.
  • Connect Phone Line to Computer

    question
    3
    0 Votes
    3 Posts
    0 Views
    K
    you would require a modem, either internal or external ( a little costly than the internal one ) and a software (modem driver). Keshav Kamat :) India
  • IBM improves CPU cooling capabilities

    html com announcement
    3
    0 Votes
    3 Posts
    0 Views
    K
    ya. i checked it out. it is a nice one. Keshav Kamat :) India
  • system restart after every 5 to 6 min

    sharepoint help
    6
    0 Votes
    6 Posts
    0 Views
    K
    it can also be an overheating issue. Check the fans. I dont think you would be able to run an antivirus scan within the 5 minutes. Keshav Kamat :) India
  • Upgrading my ram

    help question
    4
    0 Votes
    4 Posts
    1 Views
    K
    Hi, Well RAM is sometimes a problem. U need to check first whether the RAM is the older SD one or the DDR which are now common in the market. Assuming that it is DDR, it should be checked whether it is DDR1 or DDR2. DDR2 wont work if your original RAM (512) was of the first version. Moreover, some RAMs dont work if the difference in the frequencies at which they work is different. So check for the frequencies as well. Enjoy Keshav Kamat :) India
  • canbus interface

    csharp help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • faysie

    csharp design regex architecture help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Design of an optical sensor

    design iot performance
    5
    0 Votes
    5 Posts
    0 Views
    M
    Just read the whole article, instead of only the first section.
  • Suggestions for PC Interfacing projects.

    question
    5
    0 Votes
    5 Posts
    2 Views
    B
    Dear Noora, I would suggest interfacing to the graphic LCD: something like... http://www.crystalfontz.com/products/index-grph.html Maybe making a small game like PONG using the mouse
  • overheating

    help question
    3
    0 Votes
    3 Posts
    0 Views
    K
    The easiest will be try to put some case fans from local hardware shop. Also take a look at the CPU Fan that may be clogged use to dust. Try cleaning the fans with Air dust cleaner of just vacuume cleaner with blowing nozzle. Tapas Shome System Software Engineer Keen Computer Solutions 1408 Erin Street Winnipeg, Manitoba Canada R3E 2S8 www.keencomputer.com
  • RAM Issue

    help com tools question
    4
    0 Votes
    4 Posts
    0 Views
    R
    Hey call your system administrator..... Just kidding.. Just try ... and try and try ...... Some day glory will kiss your feet..
  • list com ports

    com
    5
    0 Votes
    5 Posts
    0 Views
    L
    Hi, it is rather simple to try a series of port names, as in the following code: // get a list of existing serial ports public static object[] GetSerialPorts() { ArrayList ports=new ArrayList(); byte[] bytes=new byte[1024]; for (int port=1; port<30; port++) { string portName="COM"+port; int size=1024; // getting default settings succeeds if device exists, // independent of port wnership bool exists=GetDefaultCommConfig(portName, bytes, ref size); if (exists) ports.Add(portName); } return ports.ToArray(); } // get Windows port parameters (fails for non-existing ports) [DllImport("kernel32.dll", CharSet=CharSet.Ansi, CallingConvention=CallingConvention.Cdecl)] public static extern bool GetDefaultCommConfig(string portName, byte[] buf,ref int bufSize); The above works on all .NET versions. Starting with .NET 2.0 you can use SerialPort.GetPortNames() to get all serial port names (also those that are not COM#). :) Luc Pattyn [My Articles]
  • Network interference

    18
    0 Votes
    18 Posts
    0 Views
    C
    In the web interface you can configure an "Intrusion" sensitivity that will react to "Motion" and send an email. Seems pretty cool!
  • What is up with crappy monitors on Laptops lately?

    question
    4
    0 Votes
    4 Posts
    0 Views
    V
    Tim Schwallie wrote: I also told them to put a bunch of masking tape on the screens to reduce glare. Masking tape would also keep them from being distracted by anything on-screen. Imagine the increase in productivity - genius! :laugh:
  • Not execution of Applications on HP ML 350 G5 server

    c++ sysadmin question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • VGD Display going off

    help workspace
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • How can I Get my Port ID

    question help
    2
    0 Votes
    2 Posts
    0 Views
    J
    ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * from WIN32_SerialPort"); foreach(ManagementObject Port in searcher.Get()) { // use the Port object to get the values you need... Console.Write(Port.GetPropertyValue("Name")); } you need a using and a reference to System.Management. -- modified at 10:40 Wednesday 4th April, 2007 I'm sorry, this of course, is only C# code, if this isn't what you were looking for,.. well then specify :p Visual Studio can't evaluate this, can you? public object moo { __get { return moo; } __set { moo = value; } }
  • networking problem

    sysadmin help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    C
    This the place in your registry to munge with your NIC settings. Put in false information for the default gateway to cripple the internet, put in false settings for Subnet Mask to cripple the LAN put in false settings for IP address to cripple everything. I don't know if this will work without restarting. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces What I would instead do is Google "enable dhcp command line Windows XP" and you will see how you can invoke commands from the shell/command line to enable disable the network connection or you can search on NETSH. There are more ways to do this than there are airports in the world so this shouldn't be too hard if you search well on Google. My name is Maximus Decimus Meridius, Commander of the Armies of the North, General of the Felix Legions, loyal servant to the true emperor, Marcus Aurelius. Father to a murdered process, husband to a murdered thread. And I will have my affinity, in this life or the next. - Gladiator. (Okay, not quite Gladiator but close.) I work to live. I do not live to work. My clients do not seem capable of grasping this fact. Ancient of days! august Athena! where, Where are thy men of might? - Lord Byron