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
28. marts 2023Forfatter: Antrow SoftwareVirksomheden Kintsigu Ltd., som havde haft svært ved at administrere sine data effektivt. Virksomheden havde prøvet flere standarddatabaseløsninger, men ingen af dem syntes at passe til deres behov, hvilket førte til spild af tid og ressourcer.
Virksomhedens ledelse faldt over Antrow Software, en virksomhed, der specialiserede sig i udvikling af tilpassede webbaserede databaseapplikationer. Ledelsesteamet var imponeret over Antrow Softwares succeshistorik og besluttede at give dem en chance for at forbedre deres effektivitet og reducere deres omkostninger.
Antrow Softwares team gik straks i gang med at arbejde og foretog en grundig analyse af Kintsigu Ltd.'s behov for datahåndtering. De rådførte sig med virksomhedens interessenter for at forstå deres arbejdsgange, krav til dataindtastning og rapporteringsbehov. På baggrund af disse oplysninger udviklede de en webbaseret databaseapplikation, der var skræddersyet specifikt til Kintsigu Ltd.'s behov.
Det nye system gjorde det muligt for virksomheden at strømline sin dataindtastningsproces, hvilket reducerede fejl og sparede værdifuld tid. Rapporteringsfunktionerne gav en realtidsindsigt i virksomhedens aktiviteter, hvilket gjorde det muligt for ledelsen at træffe datadrevne beslutninger, der forbedrede bundlinjen.
Det nye system reducerede også behovet for manuel dataindtastning, hvilket førte til en betydelig reduktion af arbejdsomkostningerne. De automatiserede rapporteringsfunktioner eliminerede behovet for dyre dataanalyseværktøjer, hvilket reducerede virksomhedens omkostninger yderligere.
Alt i alt havde teamet hos Antrow Software med succes hjulpet Kintsigu Ltd. med at forbedre sin effektivitet og reducere sine omkostninger. Takket være deres ekspertise og engagement i at levere skræddersyede løsninger kunne virksomheden nu administrere sine data mere effektivt og dermed forbedre sine aktiviteter og skabe vækst.

Seneste artikler
17. maj 2023Forfatter: Antrow SoftwareFirst, make sure you have the following NuGet packages installed in your project:
Microsoft.Graph
Microsoft.Identity.Client
Then, you can use the following code to connect to Word Online:
Imports Microsoft.Graph
Imports Microsoft.Identity.Client
Module Module1
Sub Main()
' Set the Graph API endpoint for Word Online
Const wordOnlineEndpoint As String = "https://graph.microsoft.com/v1.0/me/drive/root:/Documents"
' Set the Azure AD app registration information
Const appId As String = "<Your app ID goes here>"
Const redirectUri As String = "http://localhost"
Const tenantId As String = "<Your tenant ID goes here>"
' Create a PublicClientApplication object with the app registration information
Dim pca As New PublicClientApplication(appId, $"https://login.microsoftonline.com/{tenantId}")
' Create a new GraphServiceClient object with an authentication provider that uses MSAL to get an access token
Dim graphClient As New GraphServiceClient(New DelegateAuthenticationProvider(
Async Function(requestMessage)
Dim result = Await pca.AcquireTokenInteractive({"Files.ReadWrite"}) _
.ExecuteAsync()
requestMessage.Headers.Authorization =
New System.Net.Http.Headers.AuthenticationHeaderValue("Bearer", result.AccessToken)
End Function))
' Get the list of files in the user's Word Online root folder
Dim files = Await graphClient.Me.Drive.Root.ItemWithPath("Documents").Children.Request().GetAsync()
' Print the name of each file
For Each file In files
Console.WriteLine(file.Name)
Next
End Sub
End ModuleIn this example, we're using the GraphServiceClient class from the Microsoft.Graph namespace to make requests to the Microsoft Graph API. We're also using the PublicClientApplication class from the Microsoft.Identity.Client namespace to authenticate the user and get an access token for the API.
To use this code in your own application, you'll need to replace the appId and tenantId constants with your own Azure AD app registration information, and you may need to modify the wordOnlineEndpoint constant to point to a different location in the user's OneDrive for Business.