hI
I am trying to update a table with Update Query which is already opened by another Select Query. I get an info that table is already opened exclusively by another user or it is already open through the user interface and cannot be manipulated programmatically.
Any idea how to update it.
In this example:
dim token as string
token = "&token=sEzwtdFW6v0VIq1c0jIeOzEDNS2xjy"
Dim req As New XMLHTTP60
Dim resp As New DOMDocument60
req.Open "GET", "https://api.insure.gov.rs/rest/" & token, False
req.send
resp.LoadXML req.responseText
....the question is How to check if it is...
Thank you a lot for your effort
I solved this in this way:
on Event dblClick of my field "Artikal"" (cboBox) I put this code "docmd.runcommand acCmdSortAscending" and did the job
Hello
How to sort entered records in a subform by combo box. Notice combo box has integer value not text. I want to bo sroted by text visibled ASC. The code must be in Command control SORT (See pict enclosed)
I have tried something but not very successfull.
Please help
Hi
I have a query like this
SELECT qryBONUS_pre.PACIENT_ID, Sum(qryBONUS_pred.TOTAL) AS SumOfTOTAL
FROM qryBONUS_pre.TOTAL
GROUP BY qryBONUS_pre.PACIENT_ID;
I like SumOfTOTAL to put into a variable
How to do it
Yes...you gave me idea..back slash ("/") cannot be in the name of the file...I resolved this by changing "146-2014-OI" instead of "146/2014/OI"
Thanks a lot...great
The Invoice Number can be this format "148/2014/OI" and this is a field in the Report, so I take the filed as title to output .pdf file i.e 148/2014/OI.pdf
DoCmd.OutputTo acOutputReport, "rptINVOICE_PRINT", acFormatPDF, "C:\INVOICES\ " & ME.INVOICE & ".pdf", True
Why I can't output to pdf with Invoice number as title to .pdf file
Thanks in advance
Hi pbaldy
I have a special question for you:
I use a form to view Web page. After entering email and password (see pic2) I get result as in Pict 3 (blank form with headline Share Point) instead of full Web page as in ( see pic 1 )
How to solve it
Thanks