Neuesten Nachrichten
Montag, 23. Dezember 2024Dear Customers,
As the holiday season approaches, we want to take a moment to express our heartfelt gratitude for your trust and partnership throughout the year. It has been an honor to assist you in migrating your MS-Access applications to modern Web Apps, empowering your business with greater flexibility, efficiency, and accessibility.
At Antrow Software, we take great pride in helping our customers transition to innovative, web-based solutions. Your success is what drives us, and we are genuinely thankful to be part of your journey.
Looking back on the year, we are inspired by the incredible transformations we’ve achieved together. From seamless migrations to delivering customized web-based platforms, it’s been a pleasure to help you unlock the full potential of your business data.
As we look forward to 2025, we are excited to continue supporting you with our expertise and dedication. Your trust means everything to us, and we are committed to providing exceptional service in the years ahead.
Wishing you, your team, and your loved ones a joyous holiday season and a prosperous New Year! ????
Warm regards,
The Antrow Software Team
P.S. If you have any upcoming projects or ideas for 2025, we’d love to hear about them! Let’s make next year even more successful together. ??

Kundengeschichten
Dienstag, 28. Februar 2023Autor: Antrow SoftwareJohn leitet ein mittelständisches Fertigungsunternehmen, das maßgeschneiderte Teile für verschiedene Branchen herstellt. Als John sein Unternehmen gründete, verwaltete er sein Inventar und seinen Produktionsprozess mithilfe von Tabellenkalkulationen und manueller Dateneingabe. Als sein Unternehmen jedoch wuchs, wurde es immer schwieriger, mit den Anforderungen seiner Kunden Schritt zu halten.
John wusste, dass er eine bessere Lösung brauchte und stieß auf die Produktionsmanagement-Software von Antrow Software Development. Nachdem er eine Demo der Software gesehen und sich über ihre Funktionen informiert hatte, war John beeindruckt und beschloss, sie in seinem Unternehmen zu implementieren.
Die Software ermöglichte es John, sein Inventar, seinen Produktionsplan und seine Aufträge einfach zu verfolgen, wodurch er einen Echtzeit-Überblick über seine Geschäftsabläufe erhielt. Er schätzte auch die Möglichkeit, individuelle Berichte zu erstellen und seine Daten zu analysieren, um fundierte Geschäftsentscheidungen zu treffen.
Das Antrow-Team arbeitete während des Implementierungsprozesses eng mit John zusammen und half ihm, die Software an seine individuellen Geschäftsanforderungen anzupassen. Sie schulten auch sein Team, um einen reibungslosen Übergang zu gewährleisten.
Seit der Implementierung der Antrow-Software hat sich die Effizienz und Produktivität in Johns Unternehmen deutlich verbessert. Er ist nun in der Lage, Engpässe in der Produktion schnell zu erkennen und seinen Produktionsplan zu optimieren, um die Kundenanforderungen zu erfüllen. Darüber hinaus hat die Software Fehler und Verschwendung reduziert, was ihm hilft, Geld zu sparen und sein Endergebnis zu verbessern.
Insgesamt ist John sehr zufrieden mit seiner Entscheidung für die Produktionsmanagementsoftware von Antrow Software Development. Er ist der Meinung, dass die Software und das dahinter stehende Team ihm dabei geholfen haben, sein Geschäft auszubauen und in seiner Branche wettbewerbsfähig zu bleiben.

Neueste Artikel
Sonntag, 5. März 2023Autor: 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.