473,799 Members | 3,442 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Writing to COM Port

I am looking to write a program with Microsoft Visual Basic 6 that
writes out to the com port. After the inital Connection. I will be
connecting at 9600, 8 data bits, with hardware flow control. Once
connected I will be sending regular ascii commands to the connected
device (in this case Cisco 3550 series switches.) Has anyone done
this or can they point me to a procedure or built in command set that
can do this? Thx in advance.

Mathew Brady
mbrady@-NOSPAM-ssc-net.com
Systems and Services LLC
Jul 17 '05 #1
4 24230
On 30 Jun 2003 05:49:41 -0700, mb****@ssc-net.com (Mathew) wrote:
I am looking to write a program with Microsoft Visual Basic 6 that
writes out to the com port. After the inital Connection. I will be
connecting at 9600, 8 data bits, with hardware flow control. Once
connected I will be sending regular ascii commands to the connected
device (in this case Cisco 3550 series switches.) Has anyone done
this or can they point me to a procedure or built in command set that
can do this? Thx in advance.


To start off with you use the MSCOMM.OCX control
( [Ctl T] then check 'Microsoft COMM Control' )

It is pretty easy to understand

After that you may want to go down the API route
- I can help you there
- but you really do need to prototype things first

HTH
Jul 17 '05 #2
Hey

do you have some api code there can use the comport with any baudrate ?

--
Mvh Kasper

Tjek Elektronik Chatten på -> http://www.angelfire.com/alt/elektronik/
"J French" <Bo************ *@iss.u-net.com_.bin> skrev i en meddelelse
news:3f******** ******@news.btc lick.com...
On 30 Jun 2003 05:49:41 -0700, mb****@ssc-net.com (Mathew) wrote:
I am looking to write a program with Microsoft Visual Basic 6 that
writes out to the com port. After the inital Connection. I will be
connecting at 9600, 8 data bits, with hardware flow control. Once
connected I will be sending regular ascii commands to the connected
device (in this case Cisco 3550 series switches.) Has anyone done
this or can they point me to a procedure or built in command set that
can do this? Thx in advance.


To start off with you use the MSCOMM.OCX control
( [Ctl T] then check 'Microsoft COMM Control' )

It is pretty easy to understand

After that you may want to go down the API route
- I can help you there
- but you really do need to prototype things first

HTH

Jul 17 '05 #3
On Mon, 30 Jun 2003 16:24:22 +0200, "Kasper" <re****@hotmail .com>
wrote:
Hey

do you have some api code there can use the comport with any baudrate ?


Don't know about _any_ Baud Rate

For what it is worth this stuff is working Ok
It is highly targeted at one device :-

===== Start of Class ====

Option Explicit: DefObj A-Z

Private Type TCMN
ID As Integer
hFile As Long
Port As String
End Type
' Note: Raise DTR to power on printer
' See POWER OFF COMMAND in manual

Private Const GENERIC_READ = &H80000000
Private Const GENERIC_WRITE = &H40000000
Private Const OPEN_EXISTING = 3
Private Const FILE_FLAG_OVERL APPED = &H40000000
Private Const INVALID_HANDLE_ VALUE = -1

Private Const RTS_CONTROL_DIS ABLE = &H0
Private Const RTS_CONTROL_ENA BLE = &H1
Private Const RTS_CONTROL_HAN DSHAKE = &H2

Private Const DTR_CONTROL_DIS ABLE = &H0
Private Const DTR_CONTROL_ENA BLE = &H1
Private Const DTR_CONTROL_HAN DSHAKE = &H2

Private Const NOPARITY = 0
Private Const ONESTOPBIT = 0

Private Const EV_BREAK = &H40
Private Const EV_CTS = &H8
Private Const EV_DSR = &H10
Private Const EV_ERR = &H80
Private Const EV_EVENT1 = &H800
Private Const EV_EVENT2 = &H1000
Private Const EV_PERR = &H200
Private Const EV_RING = &H100
Private Const EV_RLSD = &H20
Private Const EV_RX80FULL = &H400
Private Const EV_RXCHAR = &H1
Private Const EV_RXFLAG = &H2
Private Const EV_TXEMPTY = &H4

Private Const COMM_MASK = EV_CTS Or EV_DSR _
Or EV_ERR Or EV_RXCHAR _
Or EV_RING

Private Const PURGE_RXCLEAR = &H8
Private Const PURGE_TXCLEAR = &H4
Private Const PURGE_TXABORT = &H1
Private Const PURGE_RXABORT = &H2

Private Const ERROR_IO_PENDIN G = 997

Private Type DCB
DCBlength As Long
BaudRate As Long
fBinary As Long
fParity As Long
fOutxCtsFlow As Long
fOutxDsrFlow As Long
fDtrControl As Long
fDsrSensitivity As Long
fTXContinueOnXo ff As Long
fOutX As Long
fInX As Long
fErrorChar As Long
fNull As Long
fRtsControl As Long
fAbortOnError As Long
fDummy2 As Long
wReserved As Integer
XonLim As Integer
XoffLim As Integer
ByteSize As Byte
Parity As Byte
StopBits As Byte
XonChar As Byte
XoffChar As Byte
ErrorChar As Byte
EofChar As Byte
EvtChar As Byte
wReserved1 As Integer ' reserved; do not use
End Type

Private Type COMMTIMEOUTS
ReadIntervalTim eout As Long
ReadTotalTimeou tMultiplier As Long
ReadTotalTimeou tConstant As Long
WriteTotalTimeo utMultiplier As Long
WriteTotalTimeo utConstant As Long
End Type
Private Type OVERLAPPED
Internal As Long
InternalHigh As Long
Offset As Long
OffsetHigh As Long
hEvent As Long
End Type

Private Declare Function BuildCommDCB _
Lib "kernel32" _
Alias "BuildCommD CBA" (ByVal _
lpDef As String, lpDCB _
As DCB) As Long

Private Declare Function CreateFile _
Lib "kernel32" _
Alias "CreateFile A" _
(ByVal lpFileName As String, _
ByVal dwDesiredAccess As Long, _
ByVal dwShareMode As Long, _
ByVal lpSecurityAttri butes As Long, _
ByVal dwCreationDispo sition As Long, _
ByVal dwFlagsAndAttri butes As Long, _
ByVal hTemplateFile As Long) As Long

Private Declare Function GetCommState Lib "kernel32" ( _
ByVal hFile As Long, _
lpDCB As DCB) As Long

Private Declare Function SetCommState Lib "kernel32" ( _
ByVal hFile As Long, _
lpDCB As DCB) As Long

Private Declare Function SetupComm Lib "kernel32" ( _
ByVal hFile As Long, _
ByVal dwInQueue As Long, _
ByVal dwOutQueue As Long) As Long

Private Declare Function SetCommTimeouts _
Lib "kernel32" _
(ByVal hFile As Long, _
lpCommTimeouts As COMMTIMEOUTS) As Long

Private Declare Function CloseHandle Lib "kernel32" ( _
ByVal hObject As Long) As Long

Private Declare Function PurgeComm Lib "kernel32" ( _
ByVal hFile As Long, _
ByVal dwFlags As Long) As Long

Private Declare Function SetCommMask Lib "kernel32" ( _
ByVal hFile As Long, _
ByVal dwEvtMask As Long) As Long

Private Declare Function WaitCommEvent Lib "kernel32" ( _
ByVal hFile As Long, _
lpEvtMask As Long, _
lpOverlapped As Any) As Long

Private Declare Function CreateEvent Lib "kernel32" Alias
"CreateEven tA" ( _
ByVal lpEventAttribut es As Long, _
ByVal bManualReset As Long, _
ByVal bInitialState As Long, _
ByVal lpName As String) As Long

Private Declare Function WriteFile Lib "kernel32" ( _
ByVal hFile As Long, _
lpBuffer As Any, _
ByVal nNumberOfBytesT oWrite As Long, _
lpNumberOfBytes Written As Long, _
lpOverlapped As Any) As Long

Private Declare Function ReadFile Lib "kernel32" ( _
ByVal hFile As Long, _
ByVal lpBuffer As String, _
ByVal nNumberOfBytesT oRead As Long, _
lpNumberOfBytes Read As Long, _
lpOverlapped As Any) As Long

Private Declare Function ReadFileEx Lib "kernel32" ( _
ByVal hFile As Long, _
lpBuffer As Any, _
ByVal nNumberOfBytesT oRead As Long, _
lpOverlapped As OVERLAPPED, _
ByVal lpCompletionRou tine As Long) As Long

Private Declare Sub Sleep Lib "kernel32" ( _
ByVal dwMilliseconds As Long)

Private Declare Function EscapeCommFunct ion Lib "kernel32" ( _
ByVal nCid As Long, _
ByVal nFunc As Long) As Long

Private Declare Function GetCommModemSta tus Lib "kernel32" ( _
ByVal hFile As Long, _
lpModemStat As Long) As Long

Private Const MS_CTS_ON = &H10&
Private Const MS_DSR_ON = &H20&
Private Const MS_RING_ON = &H40&
Private Const MS_RLSD_ON = &H80&

Private Const CLRDTR = 6 ' Clears the DTR (data-terminal-ready)
signal.
Private Const CLRRTS = 4 ' Clears the RTS (request-to-send) signal.
Private Const SETDTR = 5 ' Sends the DTR (data-terminal-ready) signal.
Private Const SETRTS = 3 ' Sends the RTS (request-to-send) signal.

Private cmn As TCMN

' =============== =============== =============== ===============
'
'
'
Public Function OpenCommErr(Por tNo%, Erm$) As Boolean

OpenCommErr = True
Erm$ = ""
cmn.Port$ = "COM" + Trim$(Str$(Port No))

If cmn.hFile <> 0 Then
Erm$ = cmn.Port$ + " is Already Open - Closing it"
Call CloseCommErr("" )
Exit Function
End If

cmn.hFile = CreateFile(cmn. Port$, _
GENERIC_WRITE Or GENERIC_READ, _
0, _
0, _
OPEN_EXISTING, _
0, 0)
If cmn.hFile = INVALID_HANDLE_ VALUE Then
Erm$ = "Error opening " + cmn.Port$
cmn.hFile = 0
Exit Function
End If

If LF_FailSetupCom m(Erm$) Then
Erm$ = "OpenComm: " + Erm$
Exit Function
End If

OpenCommErr = False
End Function

'
'
'
Private Function LF_FailSetupCom m(Erm$) As Boolean
Dim D As DCB, cto As COMMTIMEOUTS
Dim lRet&, Status&

LF_FailSetupCom m = True
Erm$ = ""

D.DCBlength = Len(D)

If GetCommState(cm n.hFile, D) = 0 Then
Erm$ = "Error Getting " + cmn.Port$ + " parameters"
Exit Function
End If

' ---
'd.DCBlength = Len(d)
D.BaudRate = 19200
D.fBinary = 1
D.fParity = 0
D.ByteSize = 8
D.Parity = NOPARITY
D.StopBits = ONESTOPBIT
D.fOutxCtsFlow = 0 ' CTS On
D.fOutxDsrFlow = 0 ' DSR Off ??
'D.fDtrControl = DTR_CONTROL_ENA BLE
D.fDtrControl = DTR_CONTROL_DIS ABLE
D.fDsrSensitivi ty = 0 ' - 5/10/02
D.fTXContinueOn Xoff = 0
D.fOutX = 0 ' XOn - Off
D.fInX = 0
D.fErrorChar = 0
D.fNull = 0
D.fRtsControl = RTS_CONTROL_DIS ABLE ' RTS On
'D.fRtsControl = RTS_CONTROL_ENA BLE
D.fAbortOnError = 0
'd.fDummy2 = 0
'd.wReserved = 0
'd.XonLim = 0
'd.XoffLim = 0
'd.XonChar = 255
'd.XoffChar = 254
'd.ErrorChar = 0
'd.EofChar = 0
'd.EvtChar = 0

lRet = BuildCommDCB("b aud=19200 parity=N data=8 stop=1", D)
If lRet = 0 Then
Erm$ = "Error Setting Com State"
Exit Function
End If

If SetCommState(cm n.hFile, D) = 0 Then
Erm$ = "Error setting " + cmn.Port$ + " parameters"
Exit Function
End If

' --- In Out Buffer sizes
If SetupComm(cmn.h File, 256, 256) = 0 Then
Erm$ = "Error on API SetupComm()"
Exit Function
End If

' Setup Timeouts in Milliseconds
cto.ReadInterva lTimeout = 100
cto.ReadTotalTi meoutConstant = 100 ' TIMEOUT_CONSTAN T
cto.ReadTotalTi meoutMultiplier = 10 ' TIMEOUT_MULTIPL IER
cto.WriteTotalT imeoutMultiplie r = 10
cto.WriteTotalT imeoutConstant = 100

If SetCommTimeouts (cmn.hFile, cto) = 0 Then
Erm$ = "Error setting " + cmn.Port$ + " timeouts"
Exit Function
End If

Call PurgeComm(cmn.h File, PURGE_RXCLEAR)
Call PurgeComm(cmn.h File, PURGE_TXCLEAR)
Call PurgeComm(cmn.h File, PURGE_RXABORT)
Call PurgeComm(cmn.h File, PURGE_TXABORT)

If GetCommModemSta tus(cmn.hFile, Status) = 0 Then
Erm$ = "Failed GetCommModemSta tus()"
Exit Function
End If

' --- Good Exit
LF_FailSetupCom m = False

End Function

' =============== =============== =============== ===============
'
' CLRDTR Clears the DTR (data-terminal-ready) signal.
' CLRRTS Clears the RTS (request-to-send) signal.
' SETDTR Sends the DTR (data-terminal-ready) signal.
' SETRTS Sends the RTS (request-to-send) signal.
Private Function LF_WakePrinterE rr(Erm$) As Boolean
Dim Status&, Count%

LF_WakePrinterE rr = True
' ---
If cmn.hFile = 0 Then
Erm$ = "Printer is NOT Open"
Exit Function
End If

Erm$ = "Failed To Wake Printer"

RETRY:
If GetCommModemSta tus(cmn.hFile, Status) = 0 Then
Erm$ = "Failed GetCommModemSta tus()"
Exit Function
End If

' --- DSR On means printer is online
If (Status And MS_DSR_ON) = MS_DSR_ON Then
LF_WakePrinterE rr = False
Erm$ = ""
Exit Function
End If

Count = Count + 1
If Count > 3 Then Exit Function

Call DtrOff("")
Sleep 100
Call DtrOn("") ' Raise DTR should raise DSR
Sleep 1000 ' this seems to be needed 22/11/02
GoTo RETRY

End Function

' =============== =============== =============== ===============
'
'
Public Sub DtrOn(Erm$)
Erm$ = ""
If EscapeCommFunct ion(cmn.hFile, SETDTR) = 0 Then
Erm$ = "Failed EscapeCommFunct ion() SETDTR"
End If

End Sub

Public Sub DtrOff(Erm$)
Erm$ = ""
If EscapeCommFunct ion(cmn.hFile, CLRDTR) = 0 Then
Erm$ = "Failed EscapeCommFunct ion() CLRDTR"
End If
End Sub

' =============== =============== =============== ===============
'
' Write String to Com Port
'
Public Function WriteCommErr(Da ta$, Erm$) As Boolean
Dim Res&, BytesWritten&
Dim L9&, Nix$, S As String * 1

Erm$ = ""
WriteCommErr = True

If LF_WakePrinterE rr(Erm$) Then
Erm$ = "WriteComm: " + Erm$
Exit Function
End If
For L9 = 1 To Len(Data$)
LSet S$ = Mid$(Data$, L9, 1)
If LF_CTS_On(Erm$) = False Then
Exit Function
End If
Res = WriteFile(cmn.h File, ByVal S$, Len(S$), BytesWritten, 0)
' ---
If BytesWritten <> 1 Then Exit For
If Res = 0 Then Exit For
Next
If Res = 0 Then
Erm$ = "WriteComm: Error Writing to Comm"
Exit Function
End If

If BytesWritten <> 1 Then
Erm$ = "WriteComm: Error Bytes written incorrect"
Exit Function
End If

WriteCommErr = False

End Function

'
' --- Return when CTS is On - or return Failure
'
Private Function LF_CTS_On(Erm$) As Boolean
Dim Status&, Count%

AGAIN:
If GetCommModemSta tus(cmn.hFile, Status) = 0 Then
Erm$ = "Failed GetCommModemSta tus"
Exit Function
End If
' ---
If Status And MS_CTS_ON Then
LF_CTS_On = True
Exit Function
End If
' ---
Count = Count + 1
Sleep 100 ' Was Sleep 10 21/3/03
DoEvents
If Count < 500 Then ' Was Count < 20
GoTo AGAIN
End If

Erm$ = "Write Comm: CTS Failure"

End Function
' =============== =============== =============== ===============
'
' Read one Char - or ""
'
Public Function ReadCommChar$(E rm$)
Dim Char As String * 1
Dim Count&

Erm$ = ""

If LF_WakePrinterE rr(Erm$) Then
Erm$ = "Read Comm: " + Erm$
Exit Function
End If

Call Sleep(10)
DoEvents
Call ReadFile(cmn.hF ile, Char$, 1, Count&, 0)
If Count Then
ReadCommChar$ = Char$
End If

End Function

' =============== =============== =============== ===============
'
'
'
Public Function CloseCommErr(Er m$) As Boolean
If cmn.hFile = 0 Then Exit Function

If CloseHandle(cmn .hFile) = 0 Then
Erm$ = "Error Closing Comm"
CloseCommErr = True
End If
cmn.hFile = 0
End Function

Private Sub Class_Initializ e()
cmn.ID = TSDebug.RegObj( "cZPrint")
End Sub

Private Sub Class_Terminate ()
Call Me.CloseCommErr ("")
TSDebug.UnRegOb j cmn.ID
End Sub

Jul 17 '05 #4
On 30 Jun 2003 10:18:39 -0700, mb****@ssc-net.com (Mathew) wrote:
Thanks for all the inputs guys but honestly im a very new VB
programmer. The first option that was suggested... can anyone specify
more on how that works?


For a start

Private Sub cmdOpen_Click()
MSComm1.CommPor t = 1
DoEvents
MSComm1.Handsha king = comRTS
MSComm1.Setting s = "19200,n,8, 1"
MSComm1.InputLe n = 0
MSComm1.OutBuff erSize = 2000
MSComm1.PortOpe n = True
End Sub

However, the best thing is to press [F1] and examine the help file

You might be well advized to hook a modem onto the COM port and just
trying to send 'AT' to it - and getting back 'OK'

- that is not sarcasm
- these thingsare not hard, but they require small steps

HTH
Jul 17 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
3490
by: Pif Paf | last post by:
I am writing programs that will run as TCP servers. Briefly, I want to set up a TCP server on a port in such a way that if another server is already sitting on that port (both servers are Python programs I will be writing), the old one is booted off (and its process ended). My master process is a test harness, which tests a script which as part of its functionality sends http GET messages. My test harness sets up an http server as a...
2
13199
by: willie | last post by:
Hi, I'm writing a program which requires the use of three serial ports and one parallel port. My application has a scanning devices on each port, which I can access fine with pyserial. However, I'm unsure of how exactly I should be designing the program, I thought I could use threading to start class: class scanner(Thread): def __init__(self,port):
7
3063
by: Kevin | last post by:
Hi all I am having a problem reading from a serial port, first of all I have now resorted to using the MSComm ActiveX control on my Windows Forms to provide me with the interface to my serial port. is there no other way to do this - it has to be simple or well explained because I'm still new to the .NET world and c#. I did stumble across an article on the MSDN site where I downloaded a file NetSerialComm.exe - I think it was from one of the...
4
11208
by: joe bloggs | last post by:
I am writing a mobile application to interface with a legacy system and I am planning to use web services to communicate with this system. The legacy system receives data through a serial port. What I would like to do is make the serial port accessible via a web service. The web service and the legacy application would be running on the same machine. The mobile application would access the web service via a network connection. It...
0
2007
by: usagimys | last post by:
Hi all, i'm very new in serial port communication.. here i got some problem in writing to the serial port.. i have done the connection successfully.. let me explain my situation.. i'm doing a system for toll.. here, there have a device name TFI (Toll Fare Indicator)..This device has to display 3 things (vehicle class, fare, and message).. now, i'm connecting my pc to this device using Serial Port.. i write to the serial port using byte.. now,...
1
2974
by: Smita Prathyusha | last post by:
I am facing a problem in writing to COM1. I am using a Win 32 Console mode Program in VC++ the following is the code: If anyone can help me out it will be of great help : // SC_Using_Classes.cpp : Defines the entry point for the console application. #include "stdafx.h" #include <stdio.h> #include <conio.h> #include <iostream>
2
7849
by: Nasif | last post by:
Currently I am writing a program which sends and receives messages through serial port to a device. I am using C# and Microsoft Visual studio 2005 for windows program. But my problem is when i try to write in serial port from my windows a Timeoutexception is thrown. I use SerialPort class in System.IO.Ports and for writing port i used write() function under the built in class SerialPort. But when i use hyperterminal , everything goes fine....
11
12473
by: Krzysztof Retel | last post by:
Hi guys, I am struggling writing fast UDP server. It has to handle around 10000 UDP packets per second. I started building that with non blocking socket and threads. Unfortunately my approach does not work at all. I wrote a simple case test: client and server. The client sends 2200 packets within 0.137447118759 secs. The tcpdump received 2189 packets, which is not bad at all. But the server only handles 700 -- 870 packets, when it is...
4
13412
by: mayaanu | last post by:
I have developed a GUI based application in C# for communicating with a 16 bit littleendian microcontroller device .the device has a serial port interface. 1.my appplication opens a COM port on which the device is connected with proper settings for the device. 2.It writes a command to the port. 3.datareceived event of the serial port reads the data in to a byte array. 3.i have closed the serialport using close() method The problem that i...
0
9688
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10490
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10259
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10238
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9077
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7570
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4145
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3761
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.