I was able to get this to work
strSQL = "INSERT INTO tblCommissionsPaid ([ContractNumber], [RepID], [CommAmt], [CommDate], [CommTypeID]) " & _
"VALUES ('" & Me.ContractNumber & "', " & Me.RepID & ", " & Me.PurchAmt * 0.15 & ", " & _
" #" & Me.ContractDate & "#, 2)"
I'm still not sure if this...
I was using the following syntax in a Private Function when Access complained "Invalid SQL Statement":
Dim strSQL As String
Dim conn As ADODB.Connection
Dim rs As ADODB.Recordset
Set conn = CurrentProject.Connection
Set rs = New ADODB.Recordset
strSQL = "tblCommissionsPaid"
rs.Open strSQL...
Not what I was looking for... What I want to see is "dot dot dot" etc across the screen until the timer times out. The output to screen should liook something like this...
do something here
. . . . . . . . .
do something here
. . . . .
end
It works in Korn shell but not in Bash. THe output in...
I use the following in a UNIX Korn shell script
while [ i -lt $time ]; do
echo ".\c"
sleep 1
let i=i+1
done
It produces a ....... string to actively show the script is pausing.
This doesn't work with Bash. the result is
./c
./c...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.