Posts by Miguel • 80 points
8 posts
-
1
votes1
answer93
viewsQ: Update an Access application
What is the easiest way to upgrade an Access desktop application with VBA to a web application with sql server?
-
4
votes2
answers3784
viewsA: What is the difference between a VBA project and a VBA macro?
I’d say they’re not the same: A project is a set of "objects" that can contain Macros.…
-
1
votes2
answers550
viewsA: Null value showing zero MS Access
This setting should work (default setting):…
-
0
votes1
answer408
viewsA: How to print current form in MS Access?
Try: Option Compare Database Private Sub Comando0_Click() DoCmd.PrintOut End Sub This method accepts the following parameters (after printout): Printrange Pagefrom Pageto Printquality Copies…
-
0
votes1
answer62
viewsA: VBA MS Access - Version application
I use a table with a version field on the frontend. So when I re-compile, I have a checker on the clients that compares their version to the server version and if the server version is larger it…
-
0
votes1
answer174
viewsQ: Change 2 attributes of an XML with XSLT
I have the following XML: <?xml version="1.0" encoding="WINDOWS-1252"?> -<NewDataSet> -<xs:schema xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"…
-
0
votes2
answers7009
viewsA: How to delete data from a VBA Access table
Alternative: Private Sub Form_Close() Application.DoCmd.SetWarnings False Application.DoCmd.RunSQL "DELETE * FROM REPETIRTEL" Application.DoCmd.SetWarnings True End Sub…
-
0
votes1
answer457
viewsQ: Changing an attribute of an XML element
I have the following XML: <?xml version="1.0" encoding="WINDOWS-1252"?> -<NewDataSet> -<xs:schema xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"…