473,785 Members | 2,298 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to Test Function in Immediate Window

I am trying my first functions in my code. I have a set of queries
that runs to create temp tables with the right data for some reports.
They can run for a long time, so I want the user to know what is in the
tables (date parameters) before running all the queries. This way, if
the data in the tables is not for the time period the user needs for
reporting, s/he knows to recreate the data.

I just want to find the data in the tables and display it to the user -
probably will do a YES/NO to continue or not.

So, I wrote the following function, and I want to test it in the
immediate window (without running the whole process from the form). I
just can't figure it out. I don't understand the use of "passing
parameters" - when you call the function (which I'll have to do from my
code as well) what do I "pass" to the function and what does that look
like?

I also want to find the MAX Salesdate on the tmptblMTDSales. Can I do
this in DLOOKUP too?

Hope someone can help - it's very confusing to me and Help doesn't
explain for me.

Thanks

Code:
Function GetMoQtrYear(Mo EndDate As Date)
' Find the dates on the Temp Tables. If they are not right, tell the
user to rerun
' Merch Pct incr/decr to put the right data in the tables used in the
dashboard reports

Dim FiscalMonth As Integer ' Fiscal Month on MTD Table
Dim FiscalMYear As Integer ' Fiscal Year on MTD Table
Dim WEDate As Date ' Max Week End date on MTD Table
Dim FiscalQYear As Integer ' Fiscal Year on QTD Table
Dim FiscalQuarter As Integer ' Fiscal Quarter on QTD Table
Dim FiscalYYear As Integer ' Fiscal Year on YTD Table

' Get the Fiscal Month, Year and Last (max) week end date on MTD to
see if it's the
' right data for the week end requested to process
FiscalMonth = DLookup("[FiscalMonthNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")
FiscalMYear = DLookup("[FiscalYearNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")
' How to get MAX week end date?
' WEDate = DLookup("[WeekEndDate]", "tmptblMTDSales Data", _
' "[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")

' Get the Quarter and Year on the Qtr Table (Max sales date needed
too?)
FiscalQYear = DLookup("[FiscalYearNum]", "tmptblQTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")
FiscalQuarter = DLookup("[FiscalQtrNum]", "tmptblQTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")

' Get the Fiscal Year on the Year table (Max sales date needed too?)
FiscalYear = DLookup("[FiscalYearNum]", "tmptblYTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")

' Show all dates to the user. If not right, stop the code so they can
run the data gathering
MsgBox "Fiscal Month and Year on MTD Table is " & FiscalMonth & " "
& FiscalMYear _
& "Fiscal Quarter and Year on QTD Table is " & FiscalQuarter &
" " & FiscalQYear _
& "Fiscal Year on YTD Table is " & FiscalYear _
& "If any of these is NOT right, rerun Merch Pct to create
Table Data"

End Function

Dec 15 '05 #1
11 18306
sara wrote:
I am trying my first functions in my code. I have a set of queries
that runs to create temp tables with the right data for some reports.
They can run for a long time, so I want the user to know what is in the
tables (date parameters) before running all the queries. This way, if
the data in the tables is not for the time period the user needs for
reporting, s/he knows to recreate the data.

I just want to find the data in the tables and display it to the user -
probably will do a YES/NO to continue or not.

So, I wrote the following function, and I want to test it in the
immediate window (without running the whole process from the form). I
just can't figure it out. I don't understand the use of "passing
parameters" - when you call the function (which I'll have to do from my
code as well) what do I "pass" to the function and what does that look
like?

I also want to find the MAX Salesdate on the tmptblMTDSales. Can I do
this in DLOOKUP too?

Hope someone can help - it's very confusing to me and Help doesn't
explain for me.

Thanks

Code:
Function GetMoQtrYear(Mo EndDate As Date)
' Find the dates on the Temp Tables. If they are not right, tell the
user to rerun
' Merch Pct incr/decr to put the right data in the tables used in the
dashboard reports

Dim FiscalMonth As Integer ' Fiscal Month on MTD Table
Dim FiscalMYear As Integer ' Fiscal Year on MTD Table
Dim WEDate As Date ' Max Week End date on MTD Table
Dim FiscalQYear As Integer ' Fiscal Year on QTD Table
Dim FiscalQuarter As Integer ' Fiscal Quarter on QTD Table
Dim FiscalYYear As Integer ' Fiscal Year on YTD Table

' Get the Fiscal Month, Year and Last (max) week end date on MTD to
see if it's the
' right data for the week end requested to process
FiscalMonth = DLookup("[FiscalMonthNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")
FiscalMYear = DLookup("[FiscalYearNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")
' How to get MAX week end date?
' WEDate = DLookup("[WeekEndDate]", "tmptblMTDSales Data", _
' "[WeekEndDate]= Forms![frmPrintReports]!GetWkMoDate")

' Get the Quarter and Year on the Qtr Table (Max sales date needed
too?)
FiscalQYear = DLookup("[FiscalYearNum]", "tmptblQTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")
FiscalQuarter = DLookup("[FiscalQtrNum]", "tmptblQTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")

' Get the Fiscal Year on the Year table (Max sales date needed too?)
FiscalYear = DLookup("[FiscalYearNum]", "tmptblYTDSales Data", _
"[SalesDate]= Forms![frmPrintReports]!GetWkMoDate")

' Show all dates to the user. If not right, stop the code so they can
run the data gathering
MsgBox "Fiscal Month and Year on MTD Table is " & FiscalMonth & " "
& FiscalMYear _
& "Fiscal Quarter and Year on QTD Table is " & FiscalQuarter &
" " & FiscalQYear _
& "Fiscal Year on YTD Table is " & FiscalYear _
& "If any of these is NOT right, rerun Merch Pct to create
Table Data"

End Function


You start off with
Function GetMoQtrYear(Mo EndDate As Date)
and then you never use MoEndDate (the passed date value).

Then you use for the filters in Dlookup
Forms![frmPrintReports]!GetWkMoDate
Well, you need frmPrintReports open to get the date. Is GetWkMoDate the
same as MoEndDate...IOW , is MoEndDate the value you want to calc on?

If so, change all references of
Forms![frmPrintReports]!GetWkMoDate
to
MoEndDate

A typical Dlookup would look something like
FiscalQYear = DLookup("[FiscalYearNum]", "tmptblQTDSales Data", _
"[SalesDate]= #" & MoEndDate & "#"

Dates are surrounded by #'s, strings by " or ' and numbers with no
enclosed characters.

From the immediate window you could enter
? GetMoQtrYear(Da te())
to test

Then in your form you can pass
Dim var As Variant
var = GetMoQtrYear(Fo rms!frmPrintRep orts!GetWkMoDat e)

Functions usually return a value; a string, a true/false value, a
number, a date, etc. You really aren't returning anything in your
function since you never assign a value to the function to return.
Here's a function example

'the As Long descibles the type returned.
Public Function SumIt(lngA As Long, lngB As Long) As Long

'SumIt = assigns the values of lngA+lngB and returns
'the summed value to wherever you called it.
SumIt = lngA + lngB
End Function

From the Immediate window you can now enter
? Sumit(1,2)

Dec 15 '05 #2
Thanks - so far!

First of all, I can do the function in the "training mode", (lngA,
lngB, etc) but I can't translate it into "real" work.

I've tried what you said here and have some questions and an answer to
your question.

First, The user enters a week ending date (for the report) into a field
on the form called GetWkMoDate. I do put dates on the temp tables, so,
I figured I could use this date to look up the values I need in the 3
temp tables.

I don't understand what to put in the variables in the Function
statement (it would help if it could be explained as, for example:
Function NameofFunction (NameOfVariable 1PassedIn As VarType1,
NameofVariable2 PassedIn as VarType2, etc. till all passed in are
defined) AS NameofVariable1 withFunctionRes ult,
NameofVariable2 withFunctionRes ult.

The confusion is related, also, to what do I dimension? I want to take
the DATE the user entered, pass it in to the function, and have the
function figure out the Mo, Year, Quarter, QYear and Year (and maybe
the MAX date on one or more of these tables), so I can tell the user
what these values are on the tables. The Mo, Year, Quarter, QYear and
Year are all Integers, and the SalesDate (if I do the MAX thing) is a
Date format.

How do I do this? Maybe I shouldn't even do a function? I also have to
put error handling in so that if the user wants, say, 12/3/05 and the
date on the table is 10/29/05, I can handle the error. I think the way
I have it, DLookup comes up with "Null" because 10/29/05 isn't on the
MTD table.

Does this make any sense? I wish there was a VBA class somewhere. I
have 5 or 6 books and am just not able to translate from simple
examples into the more complex world of reality.

I also tried to run the function with: ? GetMoQtrYear(Da te()) after
changing my code and I got "Sub or Function not defined". (I put in As
Date in the Function statement and changed all the references to #" &
MoEndDate & "#" and made sure the form was open with the date typed in.

thank you very much.
sara

Dec 15 '05 #3
Sara:

I am a little confused about what you are trying to accomplish with
this function. It sounds like you are trying to get date values from
your temp tables and then tell your user which records have already
been built. Then, if they need more than what has been built, give
them the option to rebuild the data. Is that correct?

Please clarify so we can steer you in the right direction :)

Jana

Dec 15 '05 #4
Yes, basically. Since several users can run reports at any time, it is
possible that the data in the tables needed to run this set of special
weekly reports will be for the wrong week.

SO, I want to take the date the user entered, and look up in the tables
to see if the date is there and tell them - if it's error number 94 -
the date isn't there.

If the date is found, tell the user all the important info - to make
sure it's what they want (the reports will reflect the correct data).

I can do this ALL with in-line code, but I think it's something I may
do again and again, so I wanted to build a function, which I can reuse
(Good practice, right? - I'm still VERY new at all this and want to
learn and do it right).

I ALSO want to be able to tell the user the MAX date on each table as
10/29/05 and 10/22/05 are both in Q3, FY 2006, BUT if the table ha
10/29/05 data and the user wants to rerun 10/22/05 report, the totals
will be wrong, since my DLOOKUP will work, will find 10/22/05, but it
won't tell the user that the tables have too much data and need to be
recreated.

Is this clear now? I so appreciate the help - I am the only
"programmer " type here (and am learning on my own). I fought for 2
years to get PC in the office and then a person to support them and
build a network. Retail - it's very slow accepting technology on any
level.

Thanks.
Sara

Dec 15 '05 #5
Sara:
OK, after some long and hard thought, here's what I've come up with:

Function RecreateData(Mo EndDate As Date) As Boolean
' Find the dates on the Temp Tables. If they are not right, tell the
user to rerun
' Merch Pct incr/decr to put the right data in the tables used in the
dashboard reports
Dim FiscalMonth As Integer ' Fiscal Month on MTD Table
Dim FiscalMYear As Integer ' Fiscal Year on MTD Table

Dim MaxWEDate As Date ' Max Week End date on MTD Table
Dim MinWEDate As Date ' Minimum Week End date on MTD
Table
Dim MaxQSaleDate As Date ' Max Sales Date on QTD Table
Dim MinQSaleDate As Date ' Min Sales Date on QTD Table

Dim FiscalQYear As Integer ' Fiscal Year on QTD Table
Dim FiscalQuarter As Integer ' Fiscal Quarter on QTD Table

Dim FiscalYYear As Integer ' Fiscal Year on YTD Table

Dim IsMyDtThere As Boolean ' True if chosen date exists in
data
Dim MyMsg As String ' Used to build Message Box text
Dim Response As Variant ' Used to capture user's response
to MsgBox

' Determine if the chosen date exists in MTD table
If Not IsNull(DLookup( "[WeekEndDate]", "tmptblMTDSales Data", _
"[WeekEndDate]= #" & MoEndDate & "#")) Then
IsMyDtThere = True
Else
IsMyDtThere = False
End If

' Set function result to True if user's selected date doesn't exist in
' the MTD table and the user needs to recreate the data
If IsMyDtThere = False Then
RecreateData = True
MyMsg = "The Week End date you selected does not exist in the "
& _
"Month-to-Date table." & vbCrLf & vbCrLf & _
"Please rerun the Merch Pct incr/decr to put the right
" & _
"data in the tables before you run the report."
MsgBox MyMsg, vbCritical, "Week End Data Does Not Exist in
Table"
Exit Function
End If

' Get the latest and earliest Week End date in the MTD Table
MaxWEDate = DMax("[WeekEndDate]", "tmptblMTDSales Data")
MinWEDate = DMin("[WeekEndDate]", "tmptblMTDSales Data")

' Get the Fiscal Month and Year in MTD to see if it's the right data
for
' the week end requested to process
FiscalMonth = DLookup("[FiscalMonthNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= #" & MoEndDate & "#")
FiscalMYear = DLookup("[FiscalYearNum]", "tmptblMTDSales Data", _
"[WeekEndDate]= #" & MoEndDate & "#")

' Get the Quarter and Year on the Qtr Table
FiscalQYear = DLookup("[FiscalYearNum]", "tmptblQTDSales Data", _
"[SalesDate]= #" & MoEndDate & "#")
FiscalQuarter = DLookup("[FiscalQtrNum]", "tmptblQTDSales Data", _
"[SalesDate]= #" & MoEndDate & "#")
MinQSaleDate = DMin("[SalesDate]", "tmptblQTDSales Data")
MaxQSaleDate = DMin("[SalesDate]", "tmptblQTDSales Data")

' Get the Fiscal Year on the Year table
' If Max sales date needed, Dim some variables and grab them like
' what was done for the QTD table
FiscalMYear = DLookup("[FiscalYearNum]", "tmptblYTDSales Data", _
"[SalesDate]= #" & MoEndDate & "#")

' Show all dates to the user. If not right, stop the code so they can
' run the data gathering

MyMsg = "The MTD Table has data for Week End dates between " & _
Format(MinWEDat e, "mm/dd/yy") & " and " & _
Format(MaxWEDat e, "mm/dd/yy") & " and the Fiscal Month " & _
"and Year is " & FiscalMonth & " " & FiscalMYear & vbCrLf &
_
"Fiscal Quarter and Year on QTD Table is " & FiscalQuarter &
_
" " & FiscalQYear & " and the sales dates range from " & _
Format(MinQSale Date, "mm/dd/yy") & " to " &
Format(MaxQSale Date, "mm/dd/yy") & vbCrLf & _
"Fiscal Year on YTD Table is " & FiscalMYear & _
vbCrLf & vbCrLf & vbCrLf & _
"Are all of these dates accurate?"
Response = MsgBox(MyMsg, vbYesNo + vbDefaultButton 1, "Are These
Dates Correct?")
If Response = vbYes Then
RecreateData = False
Else
RecreateData = True
End If
End Function

Here's what this does:
This function now returns a true/false value to answer whether or not
the user should (or wants) to recreate the data. When you call the
function, feed it the week end date they input on the form. Then, when
it returns the result to your main code, you can stop your code if it
returns True. You would have lines something like this somewhere in
the code for your form:
Dim blnNeedToStop as Boolean

'Call the RecreateData function and set its result to
blnNeedToStop
blnNeedToStop = RecreateData(Fo rms![frmPrintReports]!GetWkMoDate)

'Check the result and stop if the data needs to be recreated
If blnNeedToStop = True Then
MsgBox "Cancelling your request so that you may rebuild the
data.",vbInform ation,"Report Request Cancelled"
Exit Sub
End If

Note the usage of the DMax and DMin functions to obtain low and high
values for the dates in the MTD Table.

***DISCLAIMER** * I have NOT tested this by setting up the 3 tables with
appropriate fields and data, so this may not be the end all, be all
version of your function.

A little guidance for you: The whole purpose of a function is to
return a value after it is called, which is what we've got now. It
tells your main code whether or not the data needs to be recreated.
Also, the use of DLookup on a table with multiple records will give you
a random result from that table. So, if your QTD and YTD tables have
more than 1 possible value for the Fiscal Month and Fiscal Year, etc,
you cannot guarantee what will be returned by DLookup, only that
something WILL be returned if the criteria matched.

I made an assumption (pardon) that, if the Week End date they entered
didn't exist in the MTD table, that they should recreate the data and
don't really need to know anything more about what's in the tables. If
that is incorrect, you will need to adjust the code accordingly.

Some questions to ask you, since I don't know much about the data
creation process you've written. Is it possible that the WEDate DOES
exist in the MTD table, but DOES NOT exist in the QTD and/or YTD
tables? If yes, then you will need to take a look at the criteria for
your DLookups, because they will only work if the date exists in the
QTD and YTD tables. Do these tables only contain ONE month, ONE
quarter, and ONE year at a time, or could they have multiple periods?
If they only have one, then you can just eliminate the criteria in the
DLookups because it won't matter which record gets returned. If they
have multiples, you'll need to come up with a way to ensure that all is
as it should be and that it will always return a value.

Hope this gets you going in the right direction...
Whew!
Jana

Dec 16 '05 #6
I'm going to work on this; it's a lot to digest. Thank you so very
much.

I'll read, learn, code and test, and then reply. Probably tomorrow, is
my guess.

Again, thanks!
Sara

Dec 16 '05 #7
So far so good. I've learned a few things - DMax and DMin, along with
info on functions. I still have more work/testing to do, so I hope you
can hang in with me for a few more days. I think the most important
thing I've learned is that to do what I (often) want to do, using a
function, I need to do all the work in the function and send back just
a "pass/fail" to the code for the form, and then decide what to do.
I've been re-reading info I have on functions with this in mind - and
it seems to make sense.

The other way to use a function (the way it's described in most
books/help) is to return a value, say, after a calculation. I haven't
needed that, but I think I understand it. We'll see if I ever need to
use it.

Meanwhile, I continue to read, study and try to code this properly. I
greatly appreciate your help, along with the additional comments, like
about DLookup. I have to work on that one, too. Thank you again -
I'll be back in touch within a few days.

Sara

Dec 18 '05 #8
sara wrote:
Meanwhile, I continue to read, study and try to code this properly.


That's the most enjoyable part.

And the part that is likely to make you most successful.

And the part that is likely to cut you most slack here on CDMA.

So, IMO, it's a good plan!

Dec 18 '05 #9
Sara:

Just read your responses, glad to know you're digesting!! Here's
hoping you don't get ulcers :)

Your assessment of function utility is correct--use it when you want to
return a value, whether it be a calculated number, a string, or a
boolean. For instance, in my database I have fields for First Name,
Last Name and Middle Initial. Rather than always having to use an
expression every time I want the user's full name, I have a custom
function that I feed the name fields, and it spits back out the full
name. With my FullName function, I can also take into account that a
record may not always have a middle initial. As you progress in your
coding ability, you will find more and more uses for custom functions.

Happy coding, I'll continue to monitor this thread to see if you have
any questions.

Jana

Dec 19 '05 #10

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

Similar topics

3
3436
by: Russell Stevens | last post by:
Can anyone tell me how to get to the immediate window in VS2005. The help file says (when debugging) to click Debug, Windows, Immediate. There is no Immediate window listed there, nor anywhere else I can find it. Also, is there a trick now to single step. I can't find that anywhere either. Thanks Russ Stevens
1
1336
by: DougS | last post by:
When I'm debugging an ASP 2.0 application and I'm trying to use the immediate window to interrogate some classes I cant reference anything in my code. When I type ?dvClient.Rows.Count it gives me no intellisense and it says object not found. I also have VS 2003 installed on this machine. What am I doing wrong? Thanks, DougS
5
5646
by: vul | last post by:
In VB6 I used to use Immediate Window to get or change values of variables. It is very convenient while debugging. I used drag and drop operation to paste the variable name into Immediate Window. In VB 2005 this approach either doesn't work or I need to do it some different way. Of course VB 2005 environment allows to see values right in the code window, but it's true only for not too long strings. With a long string I still need Immediate...
2
2597
by: dgk | last post by:
Using VS2005 Standard Edtion, I have an Immediate window during ASP debugging. My co-worker, using VS2005 Team Edtion does not have an Immediate window. He does have a Command window, which is sort of ok but doesn't have intellisense. Documentation shows that editions above Express do have immediate windows. We've looked under Debug, View, and just about everywhere else. I don't see the Immediate window under View on my system either,...
3
2309
by: Photobug | last post by:
I have downloaded Allen Browne's function TableInfo() and am getting a ByRef Type Mismatch error when I try to execute it. I don't know if it is a reference problem or not, but my references for Access 2000 are set at: VB for Applications MS Access 9.0 Object Library OLE Automation MS ActiveX DataObjects 2.5 Library MS VB for Apps Extensibility 5.3
6
2841
by: Frank Rizzo | last post by:
I am using the Immediate Window a lot to see the progress of the application. In VS2003, if your cursor was at the very bottom, the window would scroll down whenever something new showed up. If your cursor was somewhere in the middle of the text output, then there would be no scrolling. In VS2005, the Immediate Window scrolls regardless of where the cursor is which is very annoying. Sometimes you want to go back up in the window to...
4
3092
by: Armin Zingler | last post by:
Hi, I feel fooled.. In the immediate window, if I enter ? DateTime.Now.Kind I get "Unspecified {0}". The result - I expected "local" - lead to some time consuming deliberations. Today, I execute MsgBox(DateTime.Now.Kind)
4
2119
by: mgfine | last post by:
We're new to using VB 9 and we cannot invoke an immediate command window from an immediate window. Typing >cmd in the immediate window does bring up a command window but we're looking for the immediate command window that we used in VB 7. Thanks.
0
2249
by: mgfine | last post by:
This question was first posted in the VB forum: We're new to using VB 9 (Visual Studio.Net 2007) and we cannot invoke an immediate command window from an immediate window. Typing >cmd in the immediate window does bring up a command window but we're looking for the immediate command window that we have used in VB 7. Thanks.
0
9481
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10155
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...
0
8979
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...
0
6741
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5383
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...
0
5513
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4054
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
3656
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2881
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.