VS 2005 : Dial A Computer From Another Computer Using Modem For Sending Files And Message?

Jul 11, 2009

I am trying to dial a computer from another computer using Modem for sending files and messge.Follwoing is the code done in dialing computer

Text1.Text = "Test string from App1 "
Number$ = InputBox$("Enter phone number:", "Number$")
If Number$ = "" Then Exit Sub
Temp$ = Status

[code].....

But after the dial tone, i am getting the exception "CTL_E_GETNOTSUPPORTED " at the line MSComm1.Output = Text1.Text?

View 6 Replies


ADVERTISEMENT

Dial Phone From Remote Computer Over Ethernet?

Apr 15, 2009

I have a remote computer on Cable Internet. Im needing to dial a phone number which is on a Avaya VoIP network. Is there any way to do this in vb.net? Ive noticed alot of stuff using modems and AT commands but thats not what Im really looking for.

View 4 Replies

VS 2008 - Share Files From A Computer To A Computer That Are Connected In?

Dec 21, 2009

How do you share files from one computer to another that are connected in one wireless internet connection? I mean, it's possible using shared folders this means it could be possible in vb.net too..

View 1 Replies

How To Transfer Files From 1 Computer To Computer With Program

Nov 18, 2010

how to transfer files from 1. computer to the computer with the program made in visual studio 2008 (visual basic)

View 3 Replies

VS 2005 Drag And Drop From Files On My Computer

Jul 8, 2009

I am trying to do drag and drop from files on my computer.Say the user has a file on the desktop, and he/she drags it onto the open application, I would like it to read the file path of the file and put that in the first column of my DataGridViewI have tried this but get no luck, I have DataGridView AllowDrop equal to True, but when I drag a file to it I get the "Circle with a line through it" action meaning it can't be done.How do I drag and drop?

View 3 Replies

Send Image From Computer Connected To GSM Modem To A Mobile

Jul 29, 2009

how to use at commands in vb.net and how to send image from computer connected to GSM modem to a mobile using vb.net

View 1 Replies

Transfer Files From One Computer In One Network To Another Computer With A Totally Different Network

Jun 22, 2011

I have a problem I want to make a server and client where the server is password protected and will make the client display files/folders in a designated folder which will be in the server's current directory and the client will ask what IP and password to connect to and if the password is correct is allows the client to access the files/folders in that folder in C.D. of the server and the client can download any file within the folder by clicking a button, yet don't even know where to start.

View 7 Replies

Sending Messages From 1 Computer To Another?

Dec 9, 2011

I am trying to add functionality to an existing program that can send a message from a Windows XP and Windows 7 computer to a group of computers that are running XP and Windows 7. Previously I was doing this with Net Send but as we are no purchasing
Windows 7 machines when we need to replace old computers, that is no longer an option.

I would prefer to have the message appear as a popup on the receiving computers as this is for calling for assistance from a supervisor or the QC department and they will not have to send a response.

View 3 Replies

Make A Program Which Will Dial A Phone Number Using Modem?

Jun 27, 2009

I want to make a program which will dial a phone number using modem. In the program there should be dial button and receive button and a text box 4 phone no. i want to make a call and receive from head phone and the program.

View 3 Replies

IDE :: Sending Messages To Other Applications On The Same Computer

Dec 5, 2009

I was looking for an easy way to send Messages to other Applications on the same computer. Something simple like "SendMessage("MySecondApplication",WMI_USERS,"MESSAGE").

View 1 Replies

Sending Data Via Internet To Another Computer

Oct 14, 2009

I was recently working on a project involving data transfer(transferring of a text file) from my pc to another pc via the internet. I've already created a site but I don't know how to transfer the file.

View 4 Replies

Sending Data Into VB Through A Serial Port On Computer?

May 2, 2009

I am sending data into VB through a serial port on my computer, from a microcontroller. The data enters VB in an ASCII form, but I need it as a number. I can use the Asc command to convert numbers 0-127 however after this it dosent work. I believe this is becaus the ascii character map only goes through 127. So how can I convert the rest of the data (128-256) to a numbers?

View 3 Replies

Sending Data To MIDI Device On Computer

Jul 1, 2009

I need some sample code for sending data to the MIDI device on the computer? I'm not quite sure what the hardware's address is though.

View 2 Replies

Displaying Message On A Computer Over LAN?

Nov 23, 2010

How can I display a message (Using vb.net) on a computer that is attached through LAN?Can I use IP Address of that computer: How?

View 1 Replies

Sockets - Check That If Another Computer In The Network Send Some String Data To The Listener Computer?

Mar 19, 2012

i have a task to create a TCP Server (a program that is listening on its network card interfaces for incoming data stream).I have search on the internet and i found that i can use two methods : Socket or TCPListener class.I have created an example for Socket class, but i wondering how could i test it? I need to check that if another computer in the network send some string data to the listener computer , then this message should be displayed.Here is the example from microsoft that i am using for TCP Server using Socket:

Public Shared Sub Main()
' Data buffer for incoming data.
Dim data = nothingc[code]....

But it does not work because of the PORT setting.If in the TCP Server i have "Dim localEndPoint As New IPEndPoint(ipAddress, 0)" the client crashes, but if i change the port from any (0) to 11000 for example,the client works fine.Do you know why?

Later edit2:Maybe i should have started with this question:Which method is recommended for my scope?asynchronous or synchronous method ?

View 2 Replies

Developing A Computer Application Designed To Monitor The Network And CPU Statistics On A Computer?

Jan 29, 2009

I am developing a computer application designed to monitor the network and CPU statistics on a computer remotely. The monitored computer would have my program installed and the monitoring computer would display, in a form, the information being sent from the remote client.The application does not send any information regarding packets, user names, passwords, etc. It is solely meant for monitoring CPU performance and Network resources remotely.

What would be the best method to send this information over to my host machine?I am programing in Visual Studio 2008 on windows XP. The client machine is also XP. I know this sounds a little shady, but it is required for my little business (http://www.iquorum.net) to monitor what and when something happens on our machines when I and my employees are away.

View 2 Replies

TCP Protocols - Sending Command To Specific Port On Same Computer

Mar 10, 2011

I am working on writing a program that needs to send a command to a specific port on the same computer, I have that working fine. There is another piece of software running that is listening to that port for some commands (read on).
Dim myTcpClient As New TcpClient
myTcpClient.Connect("127.0.0.1", 61225)
Dim networkStream As NetworkStream = myTcpClient.GetStream()

However when I try to send a command I get no response...
Dim outStream As Byte() = System.Text.Encoding.ASCII.GetBytes("0x33")
networkStream.Write(outStream, 0, outStream.Length)
networkStream.Flush()

I have been given a list of protocols that I need to send to that port. What I have been told is that the size (in byes) is 1 and the value is "0x33" with no parameters. I am completely new to sockets and sending data through tcp.

View 7 Replies

Access The Data Coming To The Computer From The In-built Bluetooth Module Of A Computer On Windows Platform?

Feb 4, 2011

i have encountered a problem, i want to access the data coming to the computer from the in-built bluetooth module of a computer on windows platform, this data has been sent by a remote bluetooth module say a by an autonomous device (just like a bluetooth mouse connecting to the computer). The to be sent is in the form of numbers and i need these to manipulate on the computer.

View 6 Replies

VB - Desktop Computer With Cable Connection On Back Allows To Watch TV On Computer Using Windows Media Center

Jun 12, 2010

I have a desktop computer with a cable connection on the back that allows me to watch TV on the computer using Windows Media Center. I had the idea of writing a program that would access this feed and send it to another computer (laptop) via my network. That way I would be able to watch TV from anywhere that my network spans. I have no idea if this is possible or how I would even do it,

So I have three questions.
1: Is it possible?
2: How would I go about access the feed?
3: How would I send it over the network?

My original thought was doing it in Flash, but I'm not very good at Flash so I wanted to do it in VB.Net.

View 2 Replies

Copy A File From A Local Computer To A Remote Computer On The Network?

Dec 19, 2006

I need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?

View 2 Replies

Lookup For A Specific Computer Given Ip Or Computer Name ... Retrieve The User Logged On

May 21, 2010

how can i look up for a specific computer given ip or computer name ...retrieve the user logged on..

View 2 Replies

VS 2008 Computer Restarts And Mapped Drive Appears Under My Computer?

Mar 31, 2009

Problem:When my computer restarts my mapped drive appears under My Computer. When I try to use it from code I get errors. If I open the mapped drive by double clicking it, and then try the code, it works. What I discovered is that when my computer starts the status, using net use, is

[code]...

View 5 Replies

Send Message To Another Computer Using LAN Or Network?

Oct 20, 2010

to do a program that can send a message in other computerthru LaN or Computer NetworkExample im in Server and i will send it is \PC-01here is the picture i design it but i don't know the code

View 1 Replies

Create Application On Computer / Must Install SQL On Every Employee's Computer?

Jun 1, 2008

I have to create an online application which i can apply it on every employee's computer in my company and i have create the application on visual basic 2008 and SQL 2005 using windows application and database. The problem is i do not understand how am i going to run the application on every employee's conputer. Because i have create the application on my computer, must i install SQL on every employee's computer? or any other software i have to used.

View 8 Replies

Line Of Code Freezes On Win7 Dev computer  but Not XP Dev Computer?

Oct 8, 2011

This line of code freezes on my Win7 dev computer but not my XP dev computer.I am using Visual Studio 2003.

strOutputFile = "c: est.mp3"

View 3 Replies

.net - Object Reference Message After Moving To Another Computer?

Feb 29, 2012

The Error I get is "Couldnt show any because: Object reference not set to an instance of an object"While on the development machine it works.Both running Win7, I inclluded all sql files as stated on the deployment instruction for datafile and sql-ce dll's from the msdn.The datafile is fine and connection is good, becuase a "cmd.ExecuteNonQuery()" runs without problems.

Public Sub LoadFolders()
Dim ds As New DataSet
Dim da As SqlCeDataAdapter = New SqlCeDataAdapter()

[code]....

View 2 Replies

Cannot Open Database Due To This Message :because Of Computer Name Change

Nov 16, 2009

Im doin project in vb.net as front - end and sqlserver 2005 as back-end

View 8 Replies

Execute Exe File Locates In Computer B From Computer A?

Nov 4, 2010

I have exe file that lunch a program takes 5 inputs. this exe locates in computer B and I need to execute it from computer A using VB.net customized application that pass the inputs through it.

View 3 Replies

Get Os Version Of Remote Computer Using Computer Name Or Ip Address?

Apr 16, 2010

I tried to get os version of remote computer using ip address with WMI ,It shows "RPC server unavailable" error.If anybody have solution for getting remote system information without WMI in vbnet,

View 1 Replies

Make Automatic Backup From One Computer To Another Computer?

Feb 27, 2011

how to make automatic backup from one computer to another computer ? I'm using vb.net. We are on the local network.

View 14 Replies







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