C# - Find The Harddisk Device Serial Number Without Using The WMI In .NET?

Jul 24, 2009

I want to get the hardwired serial number from the hard disk but NOT using WMI. I tried using WMI code, and it doesn't work on my machine for sure. So is there any alternative in .NET for finding the Serial Number of a physical hard disk?

View 8 Replies


ADVERTISEMENT

Find Files On Harddisk With Specified Extension?

Oct 26, 2010

Dim ListOfFileTypes() As String
Private Sub ListFiles()
' an array to hold the file types I am searching for

[Code]....

View 1 Replies

VS 2008 Mobile Applications - Device Board Serial Number In Vb 2008

Oct 15, 2011

My some problem for vs 2008 in mobile applications How to learn mobile device board serial number in vb 2008?

View 2 Replies

Find The Motherboard ID Or Motherboard Serial Number

Dec 10, 2008

I want to find the motherboard ID or motherboard serial number but i have no idea how to get it.

View 8 Replies

How To Send Hex (00) To Serial Device

Sep 20, 2010

In VB6, I use CHR$(&H00) to create a Null Character. In VB.Net VS2008 CHR(&H00) creats a Null. I'm trying to send a Hex(00) to a serial device, but the VB.Net function only sends a null, not a null character. How can I accomplish this with VB.Net?

View 5 Replies

Trying To Send A Hex(00) To A Serial Device

Sep 20, 2010

In VB6, I use CHR$(&H00) to create a Null Character. In VB.Net VS2008 CHR(&H00) creats a Null. I'm trying to send a Hex(00) to a serial device, but the VB.Net function only sends a null, not a null character. How can I accomplish this with VB.Net?

View 1 Replies

Communicating To A Device Using A USB To Serial Port (VCP)?

Feb 19, 2010

I am communicating to a device using a USB to serial port (VCP). I am having a problem with the usb failing. When the usb fails my app will lock up and the com port is lost. I have seen a post about this but cannot find it.

View 3 Replies

Read XML From A Device Through A Serial Port?

May 13, 2011

My current program can read in a continuous stream of data when initialized and I can send a command to retrieve the devices stored data, I also have within the same program code that will read an XML file and populate from controls.

I have two separate idea's right now that I'm trying to merge into one

I want to read in XML and populate my controls. I'm aware of delegate and Invoke but I'm having a hard time working them into my XML portion or the opposite "working my XML into my serial port class".

View 14 Replies

Code For Checking The Serial Serial Number Of A Usb Stick?

Nov 21, 2011

With this code i check the serial serialnumber of a usb stick.

[code]...

It is not perfect because the programma crash when there is no usb in de PC.But how do i search fot the sctick if it has a name , for example PPH ? And not G: , because it is everytime a different station.

View 5 Replies

App To View Which COM Port A USB-Serial Device Is Connected To?

Jul 14, 2011

I am currently having an issue finding information on how to develop a simple application that a user can run to find out which COM port ie. COM1, COM2, ect is assined to the Belkin USB to Serial Adapters we use in the company.

To anyones knowledge is this possible and how would I implement it in a Windows Form Application.

View 15 Replies

Connect To External Device Using A Serial Port

May 25, 2010

I'm trying to connect to an external device using a serial port. I found a couple of tutorials with demo code and tried these. Unfortunately they all return the same gibberish unreadible result.[code]I'm sure my port settings are correct (I have the communication protocol of the device.)

View 20 Replies

How To Show All Available Serial Port In Device Manager

Jul 24, 2011

I have a windows form in vb.net. in my form have a combobox. I want in combo box show only all com ports that exist and available in device manager. How to do it?

View 5 Replies

Communicating With A Serial Device Kelba Electronic Balance?

Dec 3, 2011

I am attempting to communicate with set of scales with a vb application that i have written using the comm control. The scales are a Kelba KHX-30 I can read the data from the scales but i have to manually press a button on the scale.

View 4 Replies

Communications :: Close Serial Port After USB Device Unplugged?

Oct 1, 2009

There seems to be a lot of discussion around about handling exeptions when a USB serial port device gets unplugged. What I want to know is how can one re-attach to it once it is plugged back in. The problem is that if you unplug a USB serial port device the app doesn't know it has gone and remains convinced it is still open. I have to close the app completely before I can re-attach to the device. I need a way to force it to close/go away.

View 2 Replies

Reading Output From A Serial Device In Visual Studio 2010?

Aug 31, 2011

Using visual studio 2010 on a PC running Windows XP SP3 (32bit) I am trying to read the output from a serial device but only get timed out error?If I open hyper terminal I can see the output, so the hardware and connections are good and the command to send data is working as well?When debugging I have no errors, when the program is run (in debugging mode) I get a timed out error from after the do loop (test=2) All I want to do is have my device output printed to TextBoxLockOut.Text? Note "comstring" grabs my com port the serial device is using - on this computer it is com4, it is a public string

Dim inputline As
String = ""
Dim command As
String = ""

[code]....

View 1 Replies

Made A Small Program Displaying A String Value Coming From A Serial Device?

May 7, 2009

I have made a small program displaying a string value coming from a serial device. When I run this on my laptop, then everything is just fine (VISTA OS), but when I run the same program on another computer (XP OS), then it shows some strange chars (Squares in distance number).

View 8 Replies

Hdd Serial Number (not Volume Number)code In 2008

Jan 13, 2010

Send hdd serial number (not volume number)code in vb.net 2008.

View 3 Replies

Generate Serial Number (last Six Digit Number)

May 17, 2010

I want to generate a serial number in this format: INDDMMYY000001, INDDMMYY000002, INDDMMYY000003, ... I can generate INDDMMYY using following code: lblNoSiri.Text = "IN" + Date.Now.ToString("ddMMyy") However, I don't know how to generate the last six digit number. I only can generate number without zero in front of it. How to create the number with fix number of digit?

View 4 Replies

Communications :: Find Device On Network By Its Mac Address?

Feb 6, 2009

I have a small embedded web server and to setup its network parameters I use a serial port, however this is giving me a lot of trouble due to USB to serial adapters (in some computers work in other doesn't).

However the other day I saw that Buffalo has a little program to find their NAS boxes (or network drives) when you don't know their IP address or got the wrong one so I assume they do it by looking for mac addresses.Is there any way of doing this with VB 2005 or higher? Basically I don't know the IP of the embedded server so I need to find it on a network, how do I find it?

a) I could do a general IP scan assuming it is on the same subnet than the host computer
b) if it has a different subnet... a general IP scan is not going to work, is it?

View 2 Replies

Create An Application For Find Bluetooth Device In Around

Dec 19, 2010

i want create an aplication for find bluetooth device in around give me a sample if it posible

View 2 Replies

Find The Default Audio Playback Device?

Sep 10, 2011

How to find the default audio playback device

View 5 Replies

Find The Operating System Of The Device (if It's A Computer)?

Jan 26, 2012

I am building a simple network browser that pings a specified range of IP addresses, and if a response is discovered, it gets the host name and MAC address of the device it pinged.My first question is how can I find the operating system of the device (if it's a computer)?My second question is, for devices that aren't computers e.g. a wireless printer or router, is there a way I can find out what type of device it is?

View 1 Replies

VB 2003 - Handling Data - Transmitting Data From A Comm Device Via Serial Port

Nov 10, 2009

I'm currently working on a project where I am transmitting data from a comm device via the serial port and resorting the raw data (in binary) to its respective ascii values. The problem I'm facing is determining the most efficient method to accomplish my goal. Essentially, I have 68 bytes coming in, the first and second bytes represent the page and packet number and the data itself ranges from 3 to 64, the remaining for my checksum.

What I am needing to do is, grab 50 consecutive bytes per variable in my array, and that is where I'm confused. I have easily pulled my 3-64 bytes and stored that data to a string. I just don't know the most efficient method to accomplish my goal. Should I write directly to file all my data, as there are like 8 pages, of 128 packet data. [Code] I can capture the the first 50 by using a for-loop easily, but what would be the preferred method to track what data chunk I've taken? The more I think about it, I think I may just want to write to file, all my data, and then just take them back to back in 50 byte chunks. Is that the most efficient method?

View 3 Replies

Get FullName From Available Serial Port (Com Port) From Device Manager In Windows Form With .net?

Jul 25, 2011

I have a Windows form.in windows form have a combo box that give me a list of available port serial with it code (Dim ports As String() =SerialPort.GetPortNames())for example( Com1,Com8,Com15,...).but I want to give me fullname of serial port in device manager for example in dvice manager is these (Comunication Port(COM1) - Printer Port(LPT1) And USB Serial Port(COM8)).how to Get it?

View 2 Replies

C# - Find Through Which Network Device User Is Connected To Internet?

Apr 1, 2011

Using the code below i will get all network interfaces wich are enabled and functional on the machine.

Private netIntrfc As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces()
For i As Integer = 0 To netIntrfc.Length - 1
If netIntrfc(i).OperationalStatus = OperationalStatus.Up Then

[code]....

But my problem is how to get the default one, the one(ethernet adapter) through wich user is connected to internet?I need to change some settings of default(through wich user is connected to internet) adapter. settings i change through registry so i could sample add same settings for each network interface but that could cause problems and makes no point then?

EDITED:for now i have done like code below, so if this can help someone other...

Dim u As UdpClient = New UdpClient(System.Net.Dns.GetHostName, 1)
Dim localAddr As IPAddress = CType(u.Client.LocalEndPoint, IPEndPoint).Address
Private netIntrfc As NetworkInterface() = NetworkInterface.GetAllNetworkInterfaces()

[code]....

View 1 Replies

Can't Get Monitor Serial Number

Mar 10, 2009

i need to write a program to get the monitor's serial number i can get the model number for the life of me i cant seem to get the serial?

Private Function monitorName() As String
On Error GoTo Error_Handler
Dim objWMIService As Object

[Code]....

View 7 Replies

Cd Manufacture Serial Number?

Jan 1, 2010

how do i get the cd manufacture serial number of each cd with vb code?

View 2 Replies

Get Volume Serial Number?

Jul 17, 2009

I'm using this code to generate machine signature. But it's take noticeable time to execute.

Public Shared Function DriveSN(ByVal DriveLetter As String) As String
Dim disk As ManagementObject = New ManagementObject(String.Format("Win32_Logicaldisk='{0}'", DriveLetter))

[Code].....

View 4 Replies

Hardware Id - Get USB Serial Number?

Sep 19, 2010

how to get USB serial number(Hardware ID) using VB.net?

View 1 Replies

How To Get Motherboard Serial Number

Jan 29, 2010

Dim Q As New SelectQuery("Win32_BaseBoard")
Dim SearchString As New ManagementObjectSearcher(Q)
Dim Info As ManagementObject
For Each Info In SearchString.Get()
TextBox1.Text += Info("SerialNumber").ToString()
Next
Its not working. I cant get my motherboard serial. Why?

View 5 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved