Latest News
Sunday, March 16, 2025As businesses continue to evolve, so should your technology. If your company is still relying on an MS-Access database, now is the time to upgrade. With Antrow Software, you can seamlessly convert MS-Access into a Web App and run it in the cloud for enhanced efficiency, accessibility, and security.
? Access Your Data Anywhere, Anytime – Work from any device without limitations.
? Run MS-Access in the Cloud – Eliminate server dependency and reduce IT maintenance costs.
? Scalability & Security – Protect your data while ensuring your system grows with your business.
? Seamless Migration – Our team ensures a smooth transition with minimal downtime.
Migrating to a cloud-based Web App is not just about modernization—it’s about staying ahead of the competition and ensuring your business is future-ready.
?? Contact us today to discuss how Antrow Software can help you upgrade your MS-Access system into a high-performance Web App running on AWS, Azure, or your preferred cloud provider.
?? Learn more: antrow.com
Best regards,
The Antrow Software Team
#MSAccessToWebApp #RunMSAccessInTheCloud #CloudMigration #BusinessEfficiency #AntrowSoftware

Customer stories
Tuesday, February 28, 2023Author: Antrow SoftwareJohn runs a medium-sized manufacturing company that produces custom-made parts for various industries. When John started his business, he managed his inventory and production process using spreadsheets and manual data entry. However, as his business grew, it became increasingly difficult to keep up with the demands of his customers.
John knew he needed a better solution and came across Antrow Software Development's production management software. After seeing a demo of the software and learning about its features, John was impressed and decided to implement it in his business.
The software allowed John to easily track his inventory, production schedule, and orders, giving him a real-time view of his business operations. He also appreciated the ability to generate custom reports and analyze his data to make informed business decisions.
The Antrow team worked closely with John during the implementation process, helping him to customize the software to fit his unique business needs. They also provided training to his team to ensure a smooth transition.
Since implementing Antrow's software, John's business has seen a significant improvement in efficiency and productivity. He's now able to quickly identify production bottlenecks and optimize his production schedule to meet customer demands. Additionally, the software has reduced errors and waste, helping him save money and improve his bottom line.
Overall, John is extremely happy with his decision to use Antrow Software Development's production management software. He credits the software and the team behind it with helping him to grow his business and stay competitive in his industry.

Latest articles
Sunday, March 5, 2023Author: Antrow SoftwareImports Microsoft.Identity.Client
Imports Microsoft.Graph
Imports Microsoft.Graph.Auth
Public Class OneDrive_Client
Private _graphClient As GraphServiceClient
Public Async Function AuthenticateAndConnect(clientId As String, tenantId As String, username As String, password As String, scopes As String()) As Task
Dim publicClientApp As IPublicClientApplication = PublicClientApplicationBuilder _
.Create(clientId) _
.WithAuthority(AzureCloudInstance.AzurePublic, tenantId) _
.Build()
Dim authProvider As UsernamePasswordProvider = New UsernamePasswordProvider(publicClientApp, scopes, username, password)
_graphClient = New GraphServiceClient(authProvider)
End Function
Public Async Function ListDriveItems() As Task(Of List(Of DriveItem))
Dim driveItems = Await _graphClient.Me.Drive.Root.Children.Request().GetAsync()
Return driveItems.ToList()
End Function
End Class
To use this class, you can create an instance of the OneDrive_Client class and call the AuthenticateAndConnect method with your client ID, tenant ID, username, password, and the desired scopes for the application. Then, you can call the ListDriveItems method to retrieve a list of DriveItems from your OneDrive:
Dim client As New OneDrive_Client()
Dim clientId = ""
Dim tenantId = ""
Dim username = ""
Dim password = ""
Dim scopes = {"https://graph.microsoft.com/.default"}
Await client.AuthenticateAndConnect(clientId, tenantId, username, password, scopes)
Dim driveItems = Await client.ListDriveItems()
For Each item In driveItems
Console.WriteLine(item.Name)
Next
This example uses the Microsoft Graph SDK to access the OneDrive API and the Microsoft Identity Client SDK to authenticate the user. You need to create a Microsoft Azure AD application and obtain a client ID and tenant ID to use this example.