Could you not add a field to state whether or not the category is taxable and then group the report into taxable and non-taxable? ?
z
User Profile
Collapse
-
I know of another way to send emails using CDO... you don't require a mail server too just internet access...
See Ron De Broin's page on emailing...
www.rondebruin. nl
HTH
zLeave a comment:
-
There's a few ways todo this here's one...
Code:Private Sub txtbox1_AfterUpdate() If IsNull(Me.txtbox1) And Me.chkbox1 = True Then Me.chkbox1.Value = False Else 'Do nothing End If End Sub Private Sub txtbox1_Exit(Cancel As Integer) If IsNull(Me.txtbox1) And Me.chkbox1 = True Then Me.chkbox1.Value
Leave a comment:
-
What i mean is the there no way in doing this without chaning the function displayMessage?
[code=javascript]
function displayMessage( aMessage)
{
document.getEle mentById('theFl ights').innerHT ML = aMessage;
}
[/code]Leave a comment:
-
Is there no way in which this can be done without chaing the actual function as it's used for other tasks?
zLeave a comment:
-
on Adding the + sign to the code everything i click a link button the text never clears the screen it just keeps adding to it? is this right
zLeave a comment:
-
Cool that worked!
i did have a workaround of this
[code=javascript]
var myString1 = ('1 ' + flightTimes[0] + ' to ' + flightDestinati ons[0] + ' operated by ' + flightOperators[0] + '. $' + flightFares[0] + '<BR>' +
'2 ' + flightTimes[1] + ' to ' + flightDestinati ons[1] + ' operated by ' + flightOperators[1] + '. $' + flightFares[1] + '<BR>' +
'3 ' + flightTimes[2]...Leave a comment:
-
How does that SQL syntax work when you have not got a INNER JOIN ON for the second table?Leave a comment:
-
-
for loop in function calling another function
Hi
i currently have this code for an assignment i'm working my way through
[code=javascript]
var flightTimes = new Array ('07:15', '08:05', '08:30', '09:30', '09:50', '10:00', '10:20', '10:45', '11:00', '12:00', '13:00', '13:05', '13:15', '13:35', '14:10', '15:00', '16:00', '16:40', '16:55', '17:00', '19:30', '21:00', '22:00', '23:20', '23:59');
var flightDestinati ons = new Array ('Arkham', 'Hensonville',...
No activity results to display
Show More
Leave a comment: