Seneste nyt
11. januar 2025Dear Valued Customer,
As 2024 has ended, we want to take a moment to express our heartfelt gratitude for your trust and partnership throughout the year. It has been an incredible journey helping businesses like yours unlock the full potential of their MS-Access databases by converting them into modern, efficient web apps that deliver flexibility and accessibility like never before.
With our tailored migration services, we’ve supported countless businesses in transforming their legacy MS-Access systems into powerful, cloud-enabled solutions. These web apps allow seamless access from anywhere, on any device—whether hosted on a web server or in the cloud with providers like AWS or Azure. Together, we’ve streamlined operations, enhanced efficiency, and empowered teams to achieve more.
As we look forward to 2025, we remain committed to continuing this journey with you. Our mission is to help you stay ahead of the curve by providing cutting-edge solutions tailored to your needs. If you’re planning to move your MS-Access applications to the cloud or convert them into robust web apps, we’re here to guide you every step of the way.
Here’s to another year of innovation, collaboration, and success!
Wishing you a Happy New Year and a prosperous 2025!
Thank you for your trust in Antrow Software. Together, let’s make 2025 even more successful.
Warm regards,
The Antrow Software Team

Kundehistorier
3. oktober 2023Forfatter: Antrow SoftwareI et forretningslandskab i konstant udvikling har behovet for strømlinet datahåndtering, forbedret tilgængelighed og effektivt samarbejde aldrig været mere kritisk. Denne erkendelse har fået mange fremsynede virksomheder til at søge en transformation: at konvertere deres gamle MS-Access-databaser til kraftfulde, databasedrevne webapplikationer. I dette blogindlæg vil vi undersøge, hvorfor denne konvertering ikke bare er et valg, men et strategisk træk, der kan drive virksomheder til nye højder af succes.
1. Forbedret tilgængelighed og fleksibilitet
En af de primære fordele ved at konvertere MS-Access til en webapp er den nyfundne tilgængelighed, det giver. Med en webapp bliver dine data og applikationer tilgængelige hvor som helst og når som helst. Denne fleksibilitet gør det muligt for dit team at arbejde på afstand, samarbejde ubesværet og betjene kunder, selv når de er på farten. Det handler om at bryde fri af begrænsningerne ved desktop-bundne databaser og omfavne en arbejdskultur, der værdsætter tilgængelighed og tilpasningsevne.
2. Samarbejde i realtid
Samarbejde er livsnerven i moderne virksomheder. Webapps tager samarbejde til et helt nyt niveau. Teams kan arbejde sammen i realtid, uanset hvor de fysisk befinder sig. Det betyder hurtigere beslutningstagning, smidigere arbejdsgange og en mere sammenhængende teamdynamik. Uanset om det drejer sig om at redigere et delt dokument eller opdatere et kritisk projektdashboard, letter en webapp et problemfrit samarbejde, der fremmer produktiviteten.
Seneste artikler
5. marts 2023Forfatter: 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.