Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #44.3K
~710 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for adhi

I assume you're using that loop as some way to make the computer wait a moment betwen sending commands. Yes, you are incrementing twice but that's not your problem. The problem is that the loop isn't doing anything. Counting to 10 (even 100 or 1000) is fast, very fast. RS232 …

Member Avatar for MikeStump
0
168
Member Avatar for dahljam

MSComm32 is not part of all versions of VB If you got MSComm32 in your version then you may also deploy it. If you didn't get MSComm and you added it manually yourself then it may work on your development computer but you won't have the developer license so deployment …

Member Avatar for MikeStump
0
144
Member Avatar for ballistic

If you're getting a message saying that the port is closed then you're probably trying to close it twice and the error happens the second time. Before closing check that it's actually open. If MSComm1.PortOpen = True Then MSComm1.PortOpen = False [I]<<snip>>[/I]

Member Avatar for MikeStump
0
199
Member Avatar for SCBWV

1000hz ? What he probably means the "Carrier" signal. Use MSComm32 or a 3rd party comm control such as [URL="http://www.axis-controls.com/mscomm32"]Comm32[/URL] and dial the other computer like this. Comm1.Settings = "9600,n,8,1" Comm1.RTSEnable = True Comm1.DTREnable = True Comm1.PortOpen = True Comm1.Output = "ATDT 1234567890" ' Replace that with the number you …

Member Avatar for MikeStump
0
112

The End.